d7e9d7d40b0f07709fdd44e4ebeb66170958d9a3
[civicrm-core.git] / tests / phpunit / api / v3 / EventTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28
29 require_once 'CiviTest/CiviUnitTestCase.php';
30
31 /**
32 * Class api_v3_EventTest
33 */
34 class api_v3_EventTest extends CiviUnitTestCase {
35 protected $_params;
36 protected $_apiversion;
37 protected $_entity;
38
39 public function setUp() {
40 parent::setUp();
41 $this->_apiversion = 3;
42 $this->_entity = 'event';
43 $this->_params = array(
44 array(
45 'title' => 'Annual CiviCRM meet',
46 'summary' => 'If you have any CiviCRM realted issues or want to track where CiviCRM is heading, Sign up now',
47 'description' => 'This event is intended to give brief idea about progess of CiviCRM and giving solutions to common user issues',
48 'event_type_id' => 1,
49 'is_public' => 1,
50 'start_date' => 20081021,
51 'end_date' => 20081023,
52 'is_online_registration' => 1,
53 'registration_start_date' => 20080601,
54 'registration_end_date' => '2008-10-15',
55 'max_participants' => 100,
56 'event_full_text' => 'Sorry! We are already full',
57 'is_monetary' => 0,
58 'is_active' => 1,
59 'is_show_location' => 0,
60 ),
61 array(
62 'title' => 'Annual CiviCRM meet 2',
63 'summary' => 'If you have any CiviCRM realted issues or want to track where CiviCRM is heading, Sign up now',
64 'description' => 'This event is intended to give brief idea about progess of CiviCRM and giving solutions to common user issues',
65 'event_type_id' => 1,
66 'is_public' => 1,
67 'start_date' => 20101021,
68 'end_date' => 20101023,
69 'is_online_registration' => 1,
70 'registration_start_date' => 20100601,
71 'registration_end_date' => '2010-10-15',
72 'max_participants' => 100,
73 'event_full_text' => 'Sorry! We are already full',
74 'is_monetory' => 0,
75 'is_active' => 1,
76 'is_show_location' => 0,
77 ),
78 );
79
80 $params = array(
81 array(
82 'title' => 'Annual CiviCRM meet',
83 'event_type_id' => 1,
84 'start_date' => 20081021,
85 ),
86 array(
87 'title' => 'Annual CiviCRM meet 2',
88 'event_type_id' => 1,
89 'start_date' => 20101021,
90 ),
91 );
92
93 $this->events = array();
94 $this->eventIds = array();
95 foreach ($params as $event) {
96 $result = $this->callAPISuccess('Event', 'Create', $event);
97 $this->_events[] = $result;
98 $this->_eventIds[] = $result['id'];
99 }
100 }
101
102 public function tearDown() {
103 foreach ($this->eventIds as $eventId) {
104 $this->eventDelete($eventId);
105 }
106 $tablesToTruncate = array(
107 'civicrm_participant',
108 'civicrm_event',
109 );
110 $this->quickCleanup($tablesToTruncate, TRUE);
111 }
112
113 /**
114 * civicrm_event_get methods.
115 */
116 public function testGetEventById() {
117 $params = array(
118 'id' => $this->_events[1]['id'],
119 );
120 $result = $this->callAPISuccess('event', 'get', $params);
121 $this->assertEquals($result['values'][$this->_eventIds[1]]['event_title'], 'Annual CiviCRM meet 2');
122 }
123
124 public function testGetEventByEventTitle() {
125
126 $params = array(
127 'event_title' => 'Annual CiviCRM meet',
128 'sequential' => TRUE,
129 );
130
131 $result = $this->callAPIAndDocument('event', 'get', $params, __FUNCTION__, __FILE__);
132 $this->assertEquals(1, $result['count']);
133 $this->assertEquals($result['values'][0]['id'], $this->_eventIds[0]);
134 }
135
136 public function testGetEventByWrongTitle() {
137 $params = array(
138 'title' => 'No event with that title',
139 );
140 $result = $this->callAPISuccess('Event', 'Get', $params);
141 $this->assertEquals(0, $result['count']);
142 }
143
144 public function testGetEventByIdSort() {
145 $params = array(
146 'return.sort' => 'id ASC',
147 'return.max_results' => 1,
148 );
149 $result = $this->callAPISuccess('Event', 'Get', $params);
150 $this->assertEquals(1, $result['id'], ' in line ' . __LINE__);
151 $params = array(
152 'options' => array(
153 'sort' => 'id DESC',
154 'limit' => 1,
155 ),
156 );
157
158 $result = $this->callAPISuccess('Event', 'Get', $params);
159 $this->assertAPISuccess($result, ' in line ' . __LINE__);
160 $this->assertEquals(2, $result['id'], ' in line ' . __LINE__);
161 $params = array(
162 'options' => array(
163 'sort' => 'id ASC',
164 'limit' => 1,
165 ),
166 );
167 $result = $this->callAPISuccess('Event', 'Get', $params);
168 $this->assertEquals(1, $result['id'], ' in line ' . __LINE__);
169
170 }
171 /*
172 * Getting the id back of an event.
173 * Does not work yet, bug in API
174 */
175
176 /*
177 public function testGetIdOfEventByEventTitle() {
178 $params = array( 'title' => 'Annual CiviCRM meet',
179 'return' => 'id'
180 );
181
182 $result = $this->callAPISuccess('Event', 'Get', $params);
183 }
184 */
185
186
187 /**
188 * Test 'is.Current' option. Existing event is 'old' so only current should be returned
189 */
190 public function testGetIsCurrent() {
191 $params = array(
192 'isCurrent' => 1,
193 );
194 $currentEventParams = array(
195 'start_date' => date('Y-m-d', strtotime('+ 1 day')),
196 'end_date' => date('Y-m-d', strtotime('+ 1 week')),
197 );
198 $currentEventParams = array_merge($this->_params[1], $currentEventParams);
199 $currentEvent = $this->callAPISuccess('Event', 'Create', $currentEventParams);
200 $description = "Demonstrates use of is.Current option.";
201 $subfile = "IsCurrentOption";
202 $result = $this->callAPIAndDocument('Event', 'Get', $params, __FUNCTION__, __FILE__, $description, $subfile);
203 $allEvents = $this->callAPISuccess('Event', 'Get', array());
204 $this->callAPISuccess('Event', 'Delete', array('id' => $currentEvent['id']));
205 $this->assertEquals(1, $result['count'], 'confirm only one event found in line ' . __LINE__);
206 $this->assertEquals(3, $allEvents['count'], 'confirm three events exist (ie. two not found) ' . __LINE__);
207 $this->assertEquals($currentEvent['id'], $result['id'], '');
208 }
209
210 /**
211 * There has been a schema change & the api needs to buffer developers from it
212 */
213 public function testGetPaymentProcessorId() {
214 $params = $this->_params[0];
215 $params['payment_processor_id'] = 1;
216 $params['sequential'] = 1;
217 $result = $this->callAPISuccess('event', 'create', $params);
218 $this->assertEquals(1, $result['values'][0]['payment_processor'][0], "handing of payment processor compatibility");
219 $result = $this->callAPISuccess('event', 'get', $params);
220 $this->assertEquals($result['values'][0]['payment_processor_id'], 1, "handing get payment processor compatibility");
221 }
222
223 public function testInvalidData() {
224 $params = $this->_params[0];
225 $params['sequential'] = 1;
226 $params['loc_block_id'] = 100;
227 $result = $this->callAPIFailure('event', 'create', $params);
228
229 }
230
231 /**
232 * Test 'is.Current' option. Existing event is 'old' so only current should be returned
233 */
234 public function testGetSingleReturnIsFull() {
235 $contactID = $this->individualCreate();
236 $params = array(
237 'id' => $this->_eventIds[0],
238 'max_participants' => 1,
239 );
240 $result = $this->callAPISuccess('Event', 'Create', $params);
241
242 $getEventParams = array(
243 'id' => $this->_eventIds[0],
244 'return.is_full' => 1,
245 );
246
247 $currentEvent = $this->callAPISuccess('Event', 'getsingle', $getEventParams);
248 $description = "Demonstrates use of return is_full .";
249 $subfile = "IsFullOption";
250 $this->assertEquals(0, $currentEvent['is_full'], ' is full is set in line ' . __LINE__);
251 $this->assertEquals(1, $currentEvent['available_places'], 'available places is set in line ' . __LINE__);
252 $participant = $this->callAPISuccess('Participant', 'create', array(
253 'participant_status' => 1,
254 'role_id' => 1,
255 'contact_id' => $contactID,
256 'event_id' => $this->_eventIds[0],
257 ));
258 $currentEvent = $this->callAPIAndDocument('Event', 'getsingle', $getEventParams, __FUNCTION__, __FILE__, $description, $subfile);
259 $this->assertEquals(1, $currentEvent['is_full'], ' is full is set in line ' . __LINE__);
260 $this->assertEquals(0, $currentEvent['available_places'], 'available places is set in line ' . __LINE__);
261
262 $this->contactDelete($contactID);
263 }
264
265 /**
266 * Legacy support for Contribution Type ID.
267 *
268 * We need to ensure this is supported as an alias for financial_type_id.
269 */
270 public function testCreateGetEventLegacyContributionTypeID() {
271 $contributionTypeArray = array('contribution_type_id' => 3);
272 if (isset($this->_params[0]['financial_type_id'])) {
273 //in case someone edits $this->_params & invalidates this test :-)
274 unset($this->_params[0]['financial_type_id']);
275 }
276 $result = $this->callAPISuccess('event', 'create', $this->_params[0] + $contributionTypeArray);
277 $getresult = $this->callAPISuccess('event', 'get', array() + $contributionTypeArray);
278 $this->assertEquals($getresult['values'][$getresult['id']]['contribution_type_id'], 3);
279 $this->assertEquals($result['id'], $getresult['id']);
280 $this->callAPISuccess('event', 'delete', array('id' => $result['id']));
281 }
282
283 /**
284 * Chaining get event and loc block.
285 */
286 public function testChainingGetLocBlock() {
287 // create a loc block and an event for that loc block.
288 $eventParams = $this->_params[0];
289 $eventParams['loc_bloc_id'] = '$value.id';
290 $locBlockParams = array(
291 'address' => array(
292 'street_address' => 'Kipdorp 24',
293 'postal_code' => '2000',
294 'city' => 'Antwerpen',
295 'country_id' => '1020',
296 'location_type_id' => '1',
297 ),
298 'api.Event.create' => $eventParams,
299 'sequential' => 1,
300 );
301 $createResult = $this->callAPIAndDocument('LocBlock', 'create', $locBlockParams, __FUNCTION__, __FILE__);
302 $locBlockId = $createResult['id'];
303 $addressId = $createResult['values'][0]['address_id'];
304 $eventId = $createResult['values'][0]['api.Event.create']['id'];
305
306 // request the event with its loc block:
307 $check = $this->callAPISuccess($this->_entity, 'getsingle', array(
308 'id' => $eventId,
309 'api.LocBlock.get' => array('id' => '$value.loc_block_id'),
310 'sequential' => 1,
311 ));
312
313 // assert
314 $this->assertEquals($eventId, $check['id'], ' in line ' . __LINE__);
315 $this->assertEquals(1, $check['api.LocBlock.get']['count'], ' in line ' . __LINE__);
316 $this->assertEquals($locBlockId, $check['api.LocBlock.get']['id'], ' in line ' . __LINE__);
317
318 // cleanup
319 $this->callAPISuccess($this->_entity, 'delete', array('id' => $eventId));
320 }
321
322 /**
323 * Chaining get event and non existing loc block.
324 *
325 * Even if there is no loc block, at least the event should be returned.
326 * http://forum.civicrm.org/index.php/topic,36113.0.html
327 */
328 public function testChainingGetNonExistingLocBlock() {
329 $params = $this->_params[0];
330 $result = $this->callAPISuccess($this->_entity, 'create', $params);
331
332 $check = $this->callAPISuccess($this->_entity, 'get', array(
333 'id' => $result['id'],
334 // this chaining request should not break things:
335 'api.LocBlock.get' => array('id' => '$value.loc_block_id'),
336 ));
337 $this->assertEquals($result['id'], $check['id']);
338
339 $this->callAPISuccess($this->_entity, 'Delete', array('id' => $result['id']));
340 }
341
342 /**
343 * Check with complete array + custom field.
344 *
345 * Note that the test is written on purpose without any
346 * variables specific to participant so it can be replicated into other entities
347 * and / or moved to the automated test suite.
348 */
349 public function testCreateWithCustom() {
350 $ids = $this->entityCustomGroupWithSingleFieldCreate(__FUNCTION__, __FILE__);
351
352 $params = $this->_params[0];
353 $params['custom_' . $ids['custom_field_id']] = "custom string";
354
355 $result = $this->callAPIAndDocument($this->_entity, 'create', $params, __FUNCTION__, __FILE__);
356
357 $check = $this->callAPISuccess($this->_entity, 'get', array(
358 'return.custom_' . $ids['custom_field_id'] => 1,
359 'id' => $result['id'],
360 ));
361 $this->assertEquals("custom string", $check['values'][$check['id']]['custom_' . $ids['custom_field_id']], ' in line ' . __LINE__);
362
363 $this->customFieldDelete($ids['custom_field_id']);
364 $this->customGroupDelete($ids['custom_group_id']);
365 $this->callAPISuccess($this->_entity, 'Delete', array('id' => $result['id']));
366 }
367
368 /**
369 * Test that an event with a price set can be created.
370 */
371 public function testCreatePaidEvent() {
372 //@todo alter API so that an integer is converted to an array
373 $priceSetParams = array('price_set_id' => (array) 1, 'is_monetary' => 1);
374 $result = $this->callAPISuccess('Event', 'Create', array_merge($this->_params[0], $priceSetParams));
375 $event = $this->callAPISuccess('Event', 'getsingle', array('id' => $result['id'], 'return' => 'price_set_id'));
376 $this->assertArrayKeyExists('price_set_id', $event);
377 }
378
379 public function testCreateEventParamsNotArray() {
380 $params = NULL;
381 $result = $this->callAPIFailure('event', 'create', $params);
382 }
383
384 public function testCreateEventEmptyParams() {
385 $params = array();
386 $result = $this->callAPIFailure('event', 'create', $params);
387 }
388
389 public function testCreateEventParamsWithoutTitle() {
390 unset($this->_params['title']);
391 $result = $this->callAPIFailure('event', 'create', $this->_params);
392 $this->assertAPIFailure($result);
393 }
394
395 public function testCreateEventParamsWithoutEventTypeId() {
396 unset($this->_params['event_type_id']);
397 $result = $this->callAPIFailure('event', 'create', $this->_params);
398 }
399
400 public function testCreateEventParamsWithoutStartDate() {
401 unset($this->_params['start_date']);
402 $result = $this->callAPIFailure('event', 'create', $this->_params);
403 }
404
405 public function testCreateEventSuccess() {
406 $result = $this->callAPIAndDocument('Event', 'Create', $this->_params[0], __FUNCTION__, __FILE__);
407 $this->assertArrayHasKey('id', $result['values'][$result['id']], 'In line ' . __LINE__);
408 $result = $this->callAPISuccess($this->_entity, 'Get', array('id' => $result['id']));
409 $this->callAPISuccess($this->_entity, 'Delete', array('id' => $result['id']));
410 $this->assertEquals('2008-10-21 00:00:00', $result['values'][$result['id']]['start_date'], 'start date is not set in line ' . __LINE__);
411 $this->assertEquals('2008-10-23 00:00:00', $result['values'][$result['id']]['end_date'], 'end date is not set in line ' . __LINE__);
412 $this->assertEquals('2008-06-01 00:00:00', $result['values'][$result['id']]['registration_start_date'], 'start date is not set in line ' . __LINE__);
413 $this->assertEquals('2008-10-15 00:00:00', $result['values'][$result['id']]['registration_end_date'], 'end date is not set in line ' . __LINE__);
414 }
415
416 /**
417 * Test that passing in Unique field names works.
418 */
419 public function testCreateEventSuccessUniqueFieldNames() {
420 $this->_params[0]['event_start_date'] = $this->_params[0]['start_date'];
421 unset($this->_params[1]['start_date']);
422 $this->_params[0]['event_title'] = $this->_params[0]['title'];
423 unset($this->_params[0]['title']);
424 $result = $this->callAPISuccess('Event', 'Create', $this->_params[0]);
425 $this->assertAPISuccess($result, 'In line ' . __LINE__);
426 $this->assertArrayHasKey('id', $result['values'][$result['id']], 'In line ' . __LINE__);
427 $result = $this->callAPISuccess($this->_entity, 'Get', array('id' => $result['id']));
428 $this->callAPISuccess($this->_entity, 'Delete', array('id' => $result['id']));
429
430 $this->assertEquals('2008-10-21 00:00:00', $result['values'][$result['id']]['start_date'], 'start date is not set in line ' . __LINE__);
431 $this->assertEquals('2008-10-23 00:00:00', $result['values'][$result['id']]['end_date'], 'end date is not set in line ' . __LINE__);
432 $this->assertEquals('2008-06-01 00:00:00', $result['values'][$result['id']]['registration_start_date'], 'start date is not set in line ' . __LINE__);
433 $this->assertEquals('2008-10-15 00:00:00', $result['values'][$result['id']]['registration_end_date'], 'end date is not set in line ' . __LINE__);
434 $this->assertEquals($this->_params[0]['event_title'], $result['values'][$result['id']]['title'], 'end date is not set in line ' . __LINE__);
435 }
436
437 public function testUpdateEvent() {
438 $result = $this->callAPISuccess('event', 'create', $this->_params[1]);
439
440 $params = array(
441 'id' => $result['id'],
442 'max_participants' => 150,
443 );
444 $this->callAPISuccess('Event', 'Create', $params);
445 $updated = $this->callAPISuccess('Event', 'Get', $params, __FUNCTION__, __FILE__);
446 $this->assertEquals(150, $updated['values'][$result['id']]['max_participants']);
447 $this->assertEquals('Annual CiviCRM meet 2', $updated['values'][$result['id']]['title']);
448 $this->callAPISuccess($this->_entity, 'Delete', array('id' => $result['id']));
449 }
450
451
452 public function testDeleteEmptyParams() {
453 $result = $this->callAPIFailure('Event', 'Delete', array());
454 }
455
456 public function testDelete() {
457 $params = array(
458 'id' => $this->_eventIds[0],
459 );
460 $result = $this->callAPIAndDocument('Event', 'Delete', $params, __FUNCTION__, __FILE__);
461 }
462
463 /**
464 * Check event_id still supported for delete.
465 */
466 public function testDeleteWithEventId() {
467 $params = array(
468 'event_id' => $this->_eventIds[0],
469 );
470 $result = $this->callAPISuccess('Event', 'Delete', $params);
471 $this->assertAPISuccess($result, 'in line ' . __LINE__);
472 }
473
474 /**
475 * Trying to delete an event with participants should return error.
476 */
477 public function testDeleteWithExistingParticipant() {
478 $contactID = $this->individualCreate();
479 $participantID = $this->participantCreate(
480 array(
481 'contactID' => $contactID,
482 'eventID' => $this->_eventIds[0],
483 )
484 );
485 $result = $this->callAPISuccess('Event', 'Delete', array('id' => $this->_eventIds[0]));
486 }
487
488 public function testDeleteWithWrongEventId() {
489 $params = array('event_id' => $this->_eventIds[0]);
490 $result = $this->callAPISuccess('Event', 'Delete', $params);
491 // try to delete again - there's no such event anymore
492 $params = array('event_id' => $this->_eventIds[0]);
493 $result = $this->callAPIFailure('Event', 'Delete', $params);
494 }
495
496 ///////////////// civicrm_event_search methods
497
498 /**
499 * Test civicrm_event_search with wrong params type.
500 */
501 public function testSearchWrongParamsType() {
502 $params = 'a string';
503 $result = $this->callAPIFailure('event', 'get', $params);
504 }
505
506 /**
507 * Test civicrm_event_search with empty params.
508 */
509 public function testSearchEmptyParams() {
510 $this->callAPISuccess('event', 'create', $this->_params[1]);
511
512 $getParams = array(
513 'sequential' => 1,
514 );
515 $result = $this->callAPISuccess('event', 'get', $getParams);
516 $this->assertEquals($result['count'], 3);
517 $res = $result['values'][0];
518 $this->assertArrayKeyExists('title', $res);
519 $this->assertEquals($res['event_type_id'], $this->_params[1]['event_type_id']);
520 }
521
522 /**
523 * Test civicrm_event_search. Success expected.
524 */
525 public function testSearch() {
526 $params = array(
527 'event_type_id' => 1,
528 'return.title' => 1,
529 'return.id' => 1,
530 'return.start_date' => 1,
531 );
532 $result = $this->callAPISuccess('event', 'get', $params);
533
534 $this->assertEquals($result['values'][$this->_eventIds[0]]['id'], $this->_eventIds[0], 'In line ' . __LINE__);
535 $this->assertEquals($result['values'][$this->_eventIds[0]]['title'], 'Annual CiviCRM meet', 'In line ' . __LINE__);
536 }
537
538 /**
539 * Test civicrm_event_search.
540 *
541 * Success expected.
542 *
543 * return.offset and return.max_results test (CRM-5266)
544 */
545 public function testSearchWithOffsetAndMaxResults() {
546 $maxEvents = 5;
547 $events = array();
548 while ($maxEvents > 0) {
549 $params = array(
550 'title' => 'Test Event' . $maxEvents,
551 'event_type_id' => 2,
552 'start_date' => 20081021,
553 );
554
555 $events[$maxEvents] = $this->callAPISuccess('event', 'create', $params);
556 $maxEvents--;
557 }
558 $params = array(
559 'event_type_id' => 2,
560 'return.id' => 1,
561 'return.title' => 1,
562 'return.offset' => 2,
563 'return.max_results' => 2,
564 );
565 $result = $this->callAPISuccess('event', 'get', $params);
566 $this->assertAPISuccess($result);
567 $this->assertEquals(2, $result['count'], ' 2 results returned In line ' . __LINE__);
568 }
569
570 public function testEventCreationPermissions() {
571 $params = array(
572 'event_type_id' => 1,
573 'start_date' => '2010-10-03',
574 'title' => 'le cake is a tie',
575 'check_permissions' => TRUE,
576 );
577 $config = &CRM_Core_Config::singleton();
578 $config->userPermissionClass->permissions = array('access CiviCRM');
579 $result = $this->callAPIFailure('event', 'create', $params);
580 $this->assertEquals('API permission check failed for Event/create call; insufficient permission: require access CiviCRM and access CiviEvent and edit all events', $result['error_message'], 'lacking permissions should not be enough to create an event');
581
582 $config->userPermissionClass->permissions = array(
583 'access CiviEvent',
584 'edit all events',
585 'access CiviCRM',
586 );
587 $result = $this->callAPISuccess('event', 'create', $params);
588 }
589
590 public function testgetfields() {
591 $description = "Demonstrate use of getfields to interrogate api.";
592 $params = array('action' => 'create');
593 $result = $this->callAPISuccess('event', 'getfields', $params);
594 $this->assertEquals(1, $result['values']['title']['api.required'], 'in line ' . __LINE__);
595 }
596
597 /**
598 * Test api_action param also works.
599 */
600 public function testgetfieldsRest() {
601 $description = "Demonstrate use of getfields to interrogate api.";
602 $params = array('api_action' => 'create');
603 $result = $this->callAPISuccess('event', 'getfields', $params);
604 $this->assertEquals(1, $result['values']['title']['api.required'], 'in line ' . __LINE__);
605 }
606
607 public function testgetfieldsGet() {
608 $description = "Demonstrate use of getfields to interrogate api.";
609 $params = array('action' => 'get');
610 $result = $this->callAPISuccess('event', 'getfields', $params);
611 $this->assertEquals('title', $result['values']['event_title']['name'], 'in line ' . __LINE__);
612 }
613
614 public function testgetfieldsDelete() {
615 $description = "Demonstrate use of getfields to interrogate api.";
616 $params = array('action' => 'delete');
617 $result = $this->callAPISuccess('event', 'getfields', $params);
618 $this->assertEquals(1, $result['values']['id']['api.required']);
619 }
620
621 }