Merge pull request #10152 from agh1/crm-20419
[civicrm-core.git] / tests / phpunit / api / v3 / SyntaxConformanceTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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 * Test that the core actions for APIv3 entities comply with standard syntax+behavior.
30 *
31 * By default, this tests all API entities. To only test specific entities, call phpunit with
32 * environment variable SYNTAX_CONFORMANCE_ENTITIES, e.g.
33 *
34 * env SYNTAX_CONFORMANCE_ENTITIES="Contact Event" ./scripts/phpunit api_v3_SyntaxConformanceTest
35 *
36 * @package CiviCRM_APIv3
37 * @subpackage API_Core
38 * @group headless
39 */
40 class api_v3_SyntaxConformanceTest extends CiviUnitTestCase {
41 protected $_apiversion = 3;
42
43 /**
44 * @var array e.g. $this->deletes['CRM_Contact_DAO_Contact'][] = $contactID;
45 */
46 protected $deletableTestObjects;
47
48 /**
49 * This test case doesn't require DB reset.
50 */
51 public $DBResetRequired = FALSE;
52
53 protected $_entity;
54
55 /**
56 * Map custom group entities to civicrm components.
57 */
58 static $componentMap = array(
59 'Contribution' => 'CiviContribute',
60 'Membership' => 'CiviMember',
61 'Participant' => 'CiviEvent',
62 'Event' => 'CiviEvent',
63 'Case' => 'CiviCase',
64 'Pledge' => 'CiviPledge',
65 'Grant' => 'CiviGrant',
66 'Campaign' => 'CiviCampaign',
67 'Survey' => 'CiviCampaign',
68 );
69
70 /**
71 * Set up function.
72 *
73 * There are two types of missing APIs:
74 * Those that are to be implemented
75 * (in some future version when someone steps in -hint hint-). List the entities in toBeImplemented[ {$action} ]
76 * Those that don't exist
77 * and that will never exist (eg an obsoleted Entity
78 * they need to be returned by the function toBeSkipped_{$action} (because it has to be a static method and therefore couldn't access a this->toBeSkipped)
79 */
80 public function setUp() {
81 parent::setUp();
82 $this->enableCiviCampaign();
83 $this->toBeImplemented['get'] = array(
84 'CxnApp', // CxnApp.get exists but relies on remote data outside our control; QA w/UtilsTest::testBasicArrayGet
85 'Profile',
86 'CustomValue',
87 'Constant',
88 'CustomSearch',
89 'Extension',
90 'ReportTemplate',
91 'System',
92 'Setting',
93 'Payment',
94 'Logging',
95 );
96 $this->toBeImplemented['create'] = array(
97 'Cxn',
98 'CxnApp',
99 'JobLog',
100 'SurveyRespondant',
101 'OptionGroup',
102 'MailingRecipients',
103 'UFMatch',
104 'CustomSearch',
105 'Extension',
106 'ReportTemplate',
107 'System',
108 'User',
109 'Payment',
110 'Order',
111 'SavedSearch', //work fine in local
112 'Logging',
113 );
114 $this->toBeImplemented['delete'] = array(
115 'Cxn',
116 'CxnApp',
117 'JobLog',
118 'MembershipPayment',
119 'OptionGroup',
120 'SurveyRespondant',
121 'UFJoin',
122 'UFMatch',
123 'Extension',
124 'System',
125 'Payment',
126 'Order',
127 );
128 $this->onlyIDNonZeroCount['get'] = array(
129 'ActivityType',
130 'Entity',
131 'Domain',
132 'Setting',
133 'User',
134 );
135 $this->deprecatedAPI = array('Location', 'ActivityType', 'SurveyRespondant');
136 $this->deletableTestObjects = array();
137 }
138
139 public function tearDown() {
140 foreach ($this->deletableTestObjects as $entityName => $entities) {
141 foreach ($entities as $entityID) {
142 CRM_Core_DAO::deleteTestObjects($entityName, array('id' => $entityID));
143 }
144 }
145 }
146
147 /**
148 * Generate list of all entities.
149 *
150 * @param array $skip
151 * Entities to skip.
152 *
153 * @return array
154 */
155 public static function entities($skip = array()) {
156 // The order of operations in here is screwy. In the case where SYNTAX_CONFORMANCE_ENTITIES is
157 // defined, we should be able to parse+return it immediately. However, some weird dependency
158 // crept into the system where civicrm_api('Entity','get') must be called as part of entities()
159 // (even if its return value is ignored).
160
161 $tmp = civicrm_api('Entity', 'Get', array('version' => 3));
162 if (getenv('SYNTAX_CONFORMANCE_ENTITIES')) {
163 $tmp = array(
164 'values' => explode(' ', getenv('SYNTAX_CONFORMANCE_ENTITIES')),
165 );
166 }
167
168 if (!is_array($skip)) {
169 $skip = array();
170 }
171 $tmp = array_diff($tmp['values'], $skip);
172 $entities = array();
173 foreach ($tmp as $e) {
174 $entities[] = array($e);
175 }
176 return $entities;
177 }
178
179 /**
180 * Get list of entities for get test.
181 *
182 * @return array
183 */
184 public static function entities_get() {
185 // all the entities, beside the ones flagged
186 return static::entities(static::toBeSkipped_get(TRUE));
187 }
188
189 /**
190 * Get entities for create tests.
191 *
192 * @return array
193 */
194 public static function entities_create() {
195 return static::entities(static::toBeSkipped_create(TRUE));
196 }
197
198 /**
199 * @return array
200 */
201 public static function entities_updatesingle() {
202 return static::entities(static::toBeSkipped_updatesingle(TRUE));
203 }
204
205 /**
206 * @return array
207 */
208 public static function entities_getlimit() {
209 return static::entities(static::toBeSkipped_getlimit());
210 }
211
212 /**
213 * Generate list of entities that can be retrieved using SQL operator syntax.
214 *
215 * @return array
216 */
217 public static function entities_getSqlOperators() {
218 return static::entities(static::toBeSkipped_getSqlOperators());
219 }
220
221 /**
222 * @return array
223 */
224 public static function entities_delete() {
225 return static::entities(static::toBeSkipped_delete(TRUE));
226 }
227
228 /**
229 * @return array
230 */
231 public static function entities_getfields() {
232 return static::entities(static::toBeSkipped_getfields(TRUE));
233 }
234
235 /**
236 * @return array
237 */
238 public static function custom_data_entities_get() {
239 return static::custom_data_entities();
240 }
241
242 /**
243 * @return array
244 */
245 public static function custom_data_entities() {
246 $entities = CRM_Core_BAO_CustomQuery::$extendsMap;
247 $enabledComponents = Civi::settings()->get('enable_components');
248 $customDataEntities = array();
249 $invalidEntities = array('Individual', 'Organization', 'Household');
250 $entitiesToFix = array('Case', 'Relationship');
251 foreach ($entities as $entityName => $entity) {
252 if (!in_array($entityName, $invalidEntities)
253 && !in_array($entityName, $entitiesToFix)
254 ) {
255 if (!empty(self::$componentMap[$entityName]) && empty($enabledComponents[self::$componentMap[$entityName]])) {
256 CRM_Core_BAO_ConfigSetting::enableComponent(self::$componentMap[$entityName]);
257 }
258 $customDataEntities[] = array($entityName);
259 }
260 }
261 return $customDataEntities;
262 }
263
264 /**
265 * Get entities to be skipped on get tests.
266 *
267 * @param bool $sequential
268 *
269 * @return array
270 */
271 public static function toBeSkipped_get($sequential = FALSE) {
272 $entitiesWithoutGet = array(
273 'MailingEventSubscribe',
274 'MailingEventConfirm',
275 'MailingEventResubscribe',
276 'MailingEventUnsubscribe',
277 'Location',
278 );
279 if ($sequential === TRUE) {
280 return $entitiesWithoutGet;
281 }
282 $entities = array();
283 foreach ($entitiesWithoutGet as $e) {
284 $entities[] = array($e);
285 }
286 return $entities;
287 }
288
289 /**
290 * Get entities to be skipped for get call.
291 *
292 * Mailing Contact Just doesn't support id. We have always insisted on finding a way to
293 * support id in API but in this case the underlying tables are crying out for a restructure
294 * & it just doesn't make sense.
295 *
296 * User doesn't support get By ID because the user id is actually the CMS user ID & is not part of
297 * CiviCRM - so can only be tested through UserTest - not SyntaxConformanceTest.
298 *
299 * Entity doesn't support get By ID because it simply gives the result of string Entites in CiviCRM
300 *
301 * @param bool $sequential
302 *
303 * @return array
304 * Entities that cannot be retrieved by ID
305 */
306 public static function toBeSkipped_getByID($sequential = FALSE) {
307 return array('MailingContact', 'User', 'Attachment', 'Entity');
308 }
309
310 /**
311 * @param bool $sequential
312 *
313 * @return array
314 */
315 public static function toBeSkipped_create($sequential = FALSE) {
316 $entitiesWithoutCreate = array('Constant', 'Entity', 'Location', 'Profile', 'MailingRecipients');
317 if ($sequential === TRUE) {
318 return $entitiesWithoutCreate;
319 }
320 $entities = array();
321 foreach ($entitiesWithoutCreate as $e) {
322 $entities[] = array($e);
323 }
324 return $entities;
325 }
326
327 /**
328 * @param bool $sequential
329 *
330 * @return array
331 */
332 public static function toBeSkipped_delete($sequential = FALSE) {
333 $entitiesWithout = array(
334 'MailingContact',
335 'MailingEventConfirm',
336 'MailingEventResubscribe',
337 'MailingEventSubscribe',
338 'MailingEventUnsubscribe',
339 'MailingRecipients',
340 'Constant',
341 'Entity',
342 'Location',
343 'Domain',
344 'Profile',
345 'CustomValue',
346 'Setting',
347 'User',
348 'Logging',
349 );
350 if ($sequential === TRUE) {
351 return $entitiesWithout;
352 }
353 $entities = array();
354 foreach ($entitiesWithout as $e) {
355 $entities[] = array($e);
356 }
357 return $entities;
358 }
359
360 /**
361 * @param bool $sequential
362 *
363 * @return array
364 * @todo add metadata for ALL these entities
365 */
366 public static function toBeSkipped_getfields($sequential = FALSE) {
367 $entitiesWithMetadataNotYetFixed = array('ReportTemplate', 'CustomSearch');
368 if ($sequential === TRUE) {
369 return $entitiesWithMetadataNotYetFixed;
370 }
371 $entities = array();
372 foreach ($entitiesWithMetadataNotYetFixed as $e) {
373 $entities[] = array($e);
374 }
375 return $entities;
376 }
377
378 /**
379 * Generate list of entities to test for get by id functions.
380 * @param bool $sequential
381 * @return array
382 * Entities to be skipped
383 */
384 public static function toBeSkipped_automock($sequential = FALSE) {
385 $entitiesWithoutGet = array(
386 'MailingContact',
387 'EntityTag',
388 'Participant',
389 'ParticipantPayment',
390 'Setting',
391 'SurveyRespondant',
392 'MailingRecipients',
393 'CustomSearch',
394 'Extension',
395 'ReportTemplate',
396 'System',
397 'Logging',
398 );
399 if ($sequential === TRUE) {
400 return $entitiesWithoutGet;
401 }
402 $entities = array();
403 foreach ($entitiesWithoutGet as $e) {
404 $entities[] = array($e);
405 }
406 return $entities;
407 }
408
409 /**
410 * At this stage exclude the ones that don't pass & add them as we can troubleshoot them
411 * @param bool $sequential
412 * @return array
413 */
414 public static function toBeSkipped_updatesingle($sequential = FALSE) {
415 $entitiesWithout = array(
416 'Attachment',
417 // pseudo-entity; testUpdateSingleValueAlter doesn't introspect properly on it. Multiple magic fields
418 'Mailing',
419 'MailingGroup',
420 'MailingJob',
421 'Address',
422 'MailingEventUnsubscribe',
423 'MailingEventSubscribe',
424 'Constant',
425 'Entity',
426 'Location',
427 'Domain',
428 'Profile',
429 'CustomValue',
430 'SurveyRespondant',
431 'UFMatch',
432 'UFJoin',
433 'UFField',
434 'OptionValue',
435 'Relationship',
436 'RelationshipType',
437 'Note',
438 'OptionGroup',
439 'Membership',
440 'Group',
441 'GroupOrganization',
442 'GroupNesting',
443 'File',
444 'EntityTag',
445 'CustomField',
446 'CustomGroup',
447 'Contribution',
448 'ActivityType',
449 'MailingEventConfirm',
450 'Case',
451 'CaseContact',
452 'Contact',
453 'ContactType',
454 'MailingEventResubscribe',
455 'UFGroup',
456 'Activity',
457 'Event',
458 'GroupContact',
459 'MembershipPayment',
460 'Participant',
461 'ParticipantPayment',
462 'LineItem',
463 'PledgePayment',
464 'ContributionPage',
465 'Phone',
466 'PaymentProcessor',
467 'Setting',
468 'MailingContact',
469 'SystemLog',
470 //skip this because it doesn't make sense to update logs,
471 'Logging',
472 );
473 if ($sequential === TRUE) {
474 return $entitiesWithout;
475 }
476 $entities = array();
477 foreach ($entitiesWithout as $e) {
478 $entities[] = array(
479 $e,
480 );
481 }
482 return array('pledge');
483 return $entities;
484 }
485
486 /**
487 * At this stage exclude the ones that don't pass & add them as we can troubleshoot them
488 */
489 public static function toBeSkipped_getlimit() {
490 $entitiesWithout = array(
491 'Case',
492 //case api has non-std mandatory fields one of (case_id, contact_id, activity_id, contact_id)
493 'EntityTag',
494 // non-standard api - has inappropriate mandatory fields & doesn't implement limit
495 'Event',
496 // failed 'check that a 5 limit returns 5' - probably is_template field is wrong or something, or could be limit doesn't work right
497 'Extension',
498 // can't handle creating 25
499 'Note',
500 // fails on 5 limit - probably a set up problem
501 'Setting',
502 //a bit of a pseudoapi - keys by domain
503 );
504 return $entitiesWithout;
505 }
506
507 /**
508 * At this stage exclude the ones that don't pass & add them as we can troubleshoot them
509 */
510 public static function toBeSkipped_getSqlOperators() {
511 $entitiesWithout = array(
512 'Case', //case api has non-std mandatory fields one of (case_id, contact_id, activity_id, contact_id)
513 'Contact', // on the todo list!
514 'EntityTag', // non-standard api - has inappropriate mandatory fields & doesn't implement limit
515 'Extension', // can't handle creating 25
516 'Note', // note has a default get that isn't implemented in createTestObject -meaning you don't 'get' them
517 'Setting', //a bit of a pseudoapi - keys by domain
518 );
519 return $entitiesWithout;
520 }
521
522 /**
523 * @param $entity
524 * @param $key
525 *
526 * @return array
527 */
528 public function getKnownUnworkablesUpdateSingle($entity, $key) {
529 // can't update values are values for which updates don't result in the value being changed
530 $knownFailures = array(
531 'ActionSchedule' => array(
532 'cant_update' => array(
533 'group_id',
534 ),
535 ),
536 'ActivityContact' => array(
537 'cant_update' => array(
538 'activity_id',
539 //we have an FK on activity_id + contact_id + record id so if we don't leave this one distinct we get an FK constraint error
540 ),
541 ),
542 'Address' => array(
543 'cant_update' => array(
544 'state_province_id', //issues with country id - need to ensure same country
545 'master_id', //creates relationship
546 ),
547 'cant_return' => array(),
548 ),
549 'Batch' => array(
550 'cant_update' => array(
551 'entity_table', // believe this field is defined in error
552 ),
553 'cant_return' => array(
554 'entity_table',
555 ),
556 ),
557 'CaseType' => array(
558 'cant_update' => array(
559 'definition',
560 ),
561 ),
562 'MembershipBlock' => array(
563 'cant_update' => array(
564 // The fake/auto-generated values leave us unable to properly cleanup fake data
565 'entity_type',
566 'entity_id',
567 ),
568 ),
569 'ContributionSoft' => array(
570 'cant_update' => array(
571 // can't be changed through api
572 'pcp_id',
573 ),
574 ),
575 'Email' => array(
576 'cant_update' => array(
577 // This is being legitimately manipulated to always have a valid primary - skip.
578 'is_primary',
579 ),
580 ),
581 'Navigation' => array(
582 'cant_update' => array(
583 // Weight is deliberately altered when this is changed - skip.
584 'parent_id',
585 ),
586 ),
587 'LocationType' => array(
588 'cant_update' => array(
589 // I'm on the fence about whether the test should skip or the behaviour is wrong.
590 // display_name is set to match name if display_name is not provided. It would be more 'normal'
591 // to only calculate a default IF id is not set - but perhaps the current behaviour is kind
592 // of what someone updating the name expects..
593 'name',
594 ),
595 ),
596 'Pledge' => array(
597 'cant_update' => array(
598 'pledge_original_installment_amount',
599 'installments',
600 'original_installment_amount',
601 'next_pay_date',
602 'amount', // can't be changed through API,
603 ),
604 'break_return' => array(// if these are passed in they are retrieved from the wrong table
605 'honor_contact_id',
606 'cancel_date',
607 'contribution_page_id',
608 'financial_account_id',
609 'financial_type_id',
610 'currency',
611 ),
612 'cant_return' => array(// can't be retrieved from api
613 'honor_type_id', //due to uniquename missing
614 'end_date',
615 'modified_date',
616 'acknowledge_date',
617 'start_date',
618 'frequency_day',
619 'currency',
620 'max_reminders',
621 'initial_reminder_day',
622 'additional_reminder_day',
623 'frequency_unit',
624 'pledge_contribution_page_id',
625 'pledge_status_id',
626 'pledge_campaign_id',
627 'pledge_financial_type_id',
628 ),
629 ),
630 'PaymentProcessorType' => array(
631 'cant_update' => array(
632 'billing_mode',
633 ),
634 'break_return' => array(),
635 'cant_return' => array(),
636 ),
637 'PriceFieldValue' => array(
638 'cant_update' => array(
639 'weight', //won't update as there is no 1 in the same price set
640 ),
641 ),
642 'ReportInstance' => array(
643 // View mode is part of the navigation which is not retrieved by the api.
644 'cant_return' => array('view_mode'),
645 ),
646 'SavedSearch' => array(
647 // I think the fields below are generated based on form_values.
648 'cant_update' => array(
649 'search_custom_id',
650 'where_clause',
651 'select_tables',
652 'where_tables',
653 ),
654 ),
655 'StatusPreference' => array(
656 'break_return' => array(
657 'ignore_severity',
658 ),
659 ),
660 );
661 if (empty($knownFailures[$entity]) || empty($knownFailures[$entity][$key])) {
662 return array();
663 }
664 return $knownFailures[$entity][$key];
665 }
666
667 /* ----- testing the _get ----- */
668
669 /**
670 * @dataProvider toBeSkipped_get
671 * Entities that don't need a get action
672 * @param $Entity
673 */
674 public function testNotImplemented_get($Entity) {
675 $result = civicrm_api($Entity, 'Get', array('version' => 3));
676 $this->assertEquals(1, $result['is_error']);
677 // $this->assertContains("API ($Entity, Get) does not exist", $result['error_message']);
678 $this->assertRegExp('/API (.*) does not exist/', $result['error_message']);
679 }
680
681 /**
682 * @dataProvider entities
683 * @expectedException PHPUnit_Framework_Error
684 * @param $Entity
685 */
686 public function testWithoutParam_get($Entity) {
687 // should get php complaining that a param is missing
688 $result = civicrm_api($Entity, 'Get');
689 }
690
691 /**
692 * @dataProvider entities
693 * @param $Entity
694 */
695 public function testGetFields($Entity) {
696 if (in_array($Entity, $this->deprecatedAPI) || $Entity == 'Entity' || $Entity == 'CustomValue') {
697 return;
698 }
699
700 $result = civicrm_api($Entity, 'getfields', array('version' => 3));
701 $this->assertTrue(is_array($result['values']), "$Entity ::get fields doesn't return values array in line " . __LINE__);
702 foreach ($result['values'] as $key => $value) {
703 $this->assertTrue(is_array($value), $Entity . "::" . $key . " is not an array in line " . __LINE__);
704 }
705 }
706
707 /**
708 * @dataProvider entities_get
709 * @param $Entity
710 */
711 public function testEmptyParam_get($Entity) {
712
713 if (in_array($Entity, $this->toBeImplemented['get'])) {
714 // $this->markTestIncomplete("civicrm_api3_{$Entity}_get to be implemented");
715 return;
716 }
717 $result = civicrm_api($Entity, 'Get', array());
718 $this->assertEquals(1, $result['is_error']);
719 $this->assertContains("Unknown api version", $result['error_message']);
720 }
721
722 /**
723 * @dataProvider entities_get
724 * @param $Entity
725 */
726 public function testEmptyParam_getString($Entity) {
727
728 if (in_array($Entity, $this->toBeImplemented['get'])) {
729 // $this->markTestIncomplete("civicrm_api3_{$Entity}_get to be implemented");
730 return;
731 }
732 $result = $this->callAPIFailure($Entity, 'Get', 'string');
733 $this->assertEquals(2000, $result['error_code']);
734 $this->assertEquals('Input variable `params` is not an array', $result['error_message']);
735 }
736
737 /**
738 * @dataProvider entities_get
739 * @Xdepends testEmptyParam_get // no need to test the simple if the empty doesn't work/is skipped. doesn't seem to work
740 * @param $Entity
741 */
742 public function testSimple_get($Entity) {
743 // $this->markTestSkipped("test gives core error on test server (but not on our locals). Skip until we can get server to pass");
744 if (in_array($Entity, $this->toBeImplemented['get'])) {
745 return;
746 }
747 $result = civicrm_api($Entity, 'Get', array('version' => 3));
748 // @TODO: list the get that have mandatory params
749 if ($result['is_error']) {
750 $this->assertContains("Mandatory key(s) missing from params array", $result['error_message']);
751 // either id or contact_id or entity_id is one of the field missing
752 $this->assertContains("id", $result['error_message']);
753 }
754 else {
755 $this->assertEquals(3, $result['version']);
756 $this->assertArrayHasKey('count', $result);
757 $this->assertArrayHasKey('values', $result);
758 }
759 }
760
761 /**
762 * @dataProvider custom_data_entities_get
763 * @param $entityName
764 */
765 public function testCustomDataGet($entityName) {
766 $this->createLoggedInUser();// so subsidiary activities are created
767 // We are not passing 'check_permissions' so the the more limited permissions *should* be
768 // ignored but per CRM-17700 there is a history of custom data applying permissions when it shouldn't.
769 CRM_Core_Config::singleton()->userPermissionClass->permissions = array('access CiviCRM', 'view my contact');
770 $ids = $this->entityCustomGroupWithSingleFieldCreate(__FUNCTION__, $entityName . 'Test.php');
771 $customFieldName = 'custom_' . $ids['custom_field_id'];
772 $objects = $this->getMockableBAOObjects($entityName, 1);
773 $params = array('id' => $objects[0]->id, 'custom_' . $ids['custom_field_id'] => "custom string");
774 $result = $this->callAPISuccess($entityName, 'create', $params);
775
776 $getParams = array('id' => $result['id'], 'return' => array($customFieldName));
777 $check = $this->callAPISuccess($entityName, 'get', $getParams);
778 $this->assertEquals("custom string", $check['values'][$check['id']][$customFieldName]);
779
780 $this->customFieldDelete($ids['custom_field_id']);
781 $this->customGroupDelete($ids['custom_group_id']);
782 $this->callAPISuccess($entityName, 'delete', array('id' => $result['id']));
783 $this->quickCleanup(array('civicrm_uf_match'));
784 }
785
786 /**
787 * @dataProvider entities_get
788 * @param $Entity
789 */
790 public function testAcceptsOnlyID_get($Entity) {
791 // big random number. fun fact: if you multiply it by pi^e, the result is another random number, but bigger ;)
792 $nonExistantID = 30867307034;
793 if (in_array($Entity, $this->toBeImplemented['get'])
794 || in_array($Entity, $this->toBeSkipped_getByID())
795 ) {
796 return;
797 }
798
799 // FIXME
800 // the below function returns different values and hence an early return
801 // we'll fix this once beta1 is released
802 // return;
803
804 $result = civicrm_api($Entity, 'Get', array('version' => 3, 'id' => $nonExistantID));
805
806 if ($result['is_error']) {
807 // just to get a clearer message in the log
808 $this->assertEquals("only id should be enough", $result['error_message']);
809 }
810 if (!in_array($Entity, $this->onlyIDNonZeroCount['get'])) {
811 $this->assertEquals(0, $result['count']);
812 }
813 }
814
815 /**
816 * Create two entities and make sure we can fetch them individually by ID.
817 *
818 * @dataProvider entities_get
819 *
820 * limitations include the problem with avoiding loops when creating test objects -
821 * hence FKs only set by createTestObject when required. e.g parent_id on campaign is not being followed through
822 * Currency - only seems to support US
823 * @param $entityName
824 */
825 public function testByID_get($entityName) {
826 if (in_array($entityName, self::toBeSkipped_automock(TRUE))) {
827 // $this->markTestIncomplete("civicrm_api3_{$Entity}_create to be implemented");
828 return;
829 }
830
831 $baos = $this->getMockableBAOObjects($entityName);
832 list($baoObj1, $baoObj2) = $baos;
833
834 // fetch first by ID
835 $result = $this->callAPISuccess($entityName, 'get', array(
836 'id' => $baoObj1->id,
837 ));
838
839 $this->assertTrue(!empty($result['values'][$baoObj1->id]), 'Should find first object by id');
840 $this->assertEquals($baoObj1->id, $result['values'][$baoObj1->id]['id'], 'Should find id on first object');
841 $this->assertEquals(1, count($result['values']));
842
843 // fetch second by ID
844 $result = $this->callAPISuccess($entityName, 'get', array(
845 'id' => $baoObj2->id,
846 ));
847 $this->assertTrue(!empty($result['values'][$baoObj2->id]), 'Should find second object by id');
848 $this->assertEquals($baoObj2->id, $result['values'][$baoObj2->id]['id'], 'Should find id on second object');
849 $this->assertEquals(1, count($result['values']));
850 }
851
852 /**
853 * Ensure that the "get" operation accepts limiting the #result records.
854 *
855 * TODO Consider making a separate entity list ("entities_getlimit")
856 * For the moment, the "entities_updatesingle" list should give a good
857 * sense for which entities support createTestObject
858 *
859 * @dataProvider entities_getlimit
860 *
861 * @param string $entityName
862 */
863 public function testLimit($entityName) {
864 $cases = array(); // each case is array(0 => $inputtedApiOptions, 1 => $expectedResultCount)
865 $cases[] = array(
866 array('options' => array('limit' => NULL)),
867 30,
868 'check that a NULL limit returns unlimited',
869 );
870 $cases[] = array(
871 array('options' => array('limit' => FALSE)),
872 30,
873 'check that a FALSE limit returns unlimited',
874 );
875 $cases[] = array(
876 array('options' => array('limit' => 0)),
877 30,
878 'check that a 0 limit returns unlimited',
879 );
880 $cases[] = array(
881 array('options' => array('limit' => 5)),
882 5,
883 'check that a 5 limit returns 5',
884 );
885 $cases[] = array(
886 array(),
887 25,
888 'check that no limit returns 25',
889 );
890
891 $baoString = _civicrm_api3_get_BAO($entityName);
892 if (empty($baoString)) {
893 $this->markTestIncomplete("Entity [$entityName] cannot be mocked - no known DAO");
894 return;
895 }
896
897 // make 30 test items -- 30 > 25 (the default limit)
898 $ids = array();
899 for ($i = 0; $i < 30; $i++) {
900 $baoObj = CRM_Core_DAO::createTestObject($baoString, array('currency' => 'USD'));
901 $ids[] = $baoObj->id;
902 $baoObj->free();
903 }
904
905 // each case is array(0 => $inputtedApiOptions, 1 => $expectedResultCount)
906 foreach ($cases as $case) {
907 $this->checkLimitAgainstExpected($entityName, $case[0], $case[1], $case[2]);
908
909 //non preferred / legacy syntax
910 if (isset($case[0]['options']['limit'])) {
911 $this->checkLimitAgainstExpected($entityName, array('rowCount' => $case[0]['options']['limit']), $case[1], $case[2]);
912 $this->checkLimitAgainstExpected($entityName, array('option_limit' => $case[0]['options']['limit']), $case[1], $case[2]);
913 $this->checkLimitAgainstExpected($entityName, array('option.limit' => $case[0]['options']['limit']), $case[1], $case[2]);
914 }
915 }
916 foreach ($ids as $id) {
917 CRM_Core_DAO::deleteTestObjects($baoString, array('id' => $id));
918 }
919 $baoObj->free();
920 }
921
922 /**
923 * Ensure that the "get" operation accepts limiting the #result records.
924 *
925 * @dataProvider entities_getSqlOperators
926 *
927 * @param string $entityName
928 */
929 public function testSqlOperators($entityName) {
930 $toBeIgnored = array_merge($this->toBeImplemented['get'],
931 $this->deprecatedAPI,
932 $this->toBeSkipped_get(TRUE),
933 $this->toBeSkipped_getByID()
934 );
935 if (in_array($entityName, $toBeIgnored)) {
936 return;
937 }
938
939 $baoString = _civicrm_api3_get_BAO($entityName);
940
941 $entities = $this->callAPISuccess($entityName, 'get', array('options' => array('limit' => 0), 'return' => 'id'));
942 $entities = array_keys($entities['values']);
943 $totalEntities = count($entities);
944 if ($totalEntities < 3) {
945 $ids = array();
946 for ($i = 0; $i < 3 - $totalEntities; $i++) {
947 $baoObj = CRM_Core_DAO::createTestObject($baoString, array('currency' => 'USD'));
948 $ids[] = $baoObj->id;
949 $baoObj->free();
950 }
951 $totalEntities = 3;
952 }
953 $entities = $this->callAPISuccess($entityName, 'get', array('options' => array('limit' => 0)));
954 $entities = array_keys($entities['values']);
955 $this->assertGreaterThan(2, $totalEntities);
956 $this->callAPISuccess($entityName, 'getsingle', array('id' => array('IN' => array($entities[0]))));
957 $this->callAPISuccessGetCount($entityName, array('id' => array('NOT IN' => array($entities[0]))), $totalEntities - 1);
958 $this->callAPISuccessGetCount($entityName, array('id' => array('>' => $entities[0])), $totalEntities - 1);
959 }
960
961 /**
962 * Check that get fetches an appropriate number of results.
963 *
964 * @param string $entityName
965 * Name of entity to test.
966 * @param array $params
967 * @param int $limit
968 * @param string $message
969 */
970 public function checkLimitAgainstExpected($entityName, $params, $limit, $message) {
971 $result = $this->callAPISuccess($entityName, 'get', $params);
972 if ($limit == 30) {
973 $this->assertGreaterThanOrEqual($limit, $result['count'], $message);
974 $this->assertGreaterThanOrEqual($limit, $result['count'], $message);
975 }
976 else {
977 $this->assertEquals($limit, $result['count'], $message);
978 $this->assertEquals($limit, count($result['values']), $message);
979 }
980 }
981
982 /**
983 * Create two entities and make sure we can fetch them individually by ID (e.g. using "contact_id=>2"
984 * or "group_id=>4")
985 *
986 * @dataProvider entities_get
987 *
988 * limitations include the problem with avoiding loops when creating test objects -
989 * hence FKs only set by createTestObject when required. e.g parent_id on campaign is not being followed through
990 * Currency - only seems to support US
991 * @param $entityName
992 * @throws \PHPUnit_Framework_IncompleteTestError
993 */
994 public function testByIDAlias_get($entityName) {
995 if (in_array($entityName, self::toBeSkipped_automock(TRUE))) {
996 // $this->markTestIncomplete("civicrm_api3_{$Entity}_create to be implemented");
997 return;
998 }
999
1000 $baoString = _civicrm_api3_get_BAO($entityName);
1001 if (empty($baoString)) {
1002 $this->markTestIncomplete("Entity [$entityName] cannot be mocked - no known DAO");
1003 return;
1004 }
1005
1006 $idFieldName = _civicrm_api_get_entity_name_from_camel($entityName) . '_id';
1007
1008 // create entities
1009 $baoObj1 = CRM_Core_DAO::createTestObject($baoString, array('currency' => 'USD'));
1010 $this->assertTrue(is_int($baoObj1->id), 'check first id');
1011 $this->deletableTestObjects[$baoString][] = $baoObj1->id;
1012 $baoObj2 = CRM_Core_DAO::createTestObject($baoString, array('currency' => 'USD'));
1013 $this->assertTrue(is_int($baoObj2->id), 'check second id');
1014 $this->deletableTestObjects[$baoString][] = $baoObj2->id;
1015
1016 // fetch first by ID
1017 $result = civicrm_api($entityName, 'get', array(
1018 'version' => 3,
1019 $idFieldName => $baoObj1->id,
1020 ));
1021 $this->assertAPISuccess($result);
1022 $this->assertTrue(!empty($result['values'][$baoObj1->id]), 'Should find first object by id');
1023 $this->assertEquals($baoObj1->id, $result['values'][$baoObj1->id]['id'], 'Should find id on first object');
1024 $this->assertEquals(1, count($result['values']));
1025
1026 // fetch second by ID
1027 $result = civicrm_api($entityName, 'get', array(
1028 'version' => 3,
1029 $idFieldName => $baoObj2->id,
1030 ));
1031 $this->assertAPISuccess($result);
1032 $this->assertTrue(!empty($result['values'][$baoObj2->id]), 'Should find second object by id');
1033 $this->assertEquals($baoObj2->id, $result['values'][$baoObj2->id]['id'], 'Should find id on second object');
1034 $this->assertEquals(1, count($result['values']));
1035 }
1036
1037 /**
1038 * @dataProvider entities_get
1039 * @param $Entity
1040 */
1041 public function testNonExistantID_get($Entity) {
1042 // cf testAcceptsOnlyID_get
1043 $nonExistantID = 30867307034;
1044 if (in_array($Entity, $this->toBeImplemented['get'])) {
1045 return;
1046 }
1047
1048 $result = civicrm_api($Entity, 'Get', array('version' => 3, 'id' => $nonExistantID));
1049
1050 // redundant with testAcceptsOnlyID_get
1051 if ($result['is_error']) {
1052 return;
1053 }
1054
1055 $this->assertArrayHasKey('version', $result);
1056 $this->assertEquals(3, $result['version']);
1057 if (!in_array($Entity, $this->onlyIDNonZeroCount['get'])) {
1058 $this->assertEquals(0, $result['count']);
1059 }
1060 }
1061
1062 /* ---- testing the _create ---- */
1063
1064 /**
1065 * @dataProvider toBeSkipped_create
1066 entities that don't need a create action
1067 * @param $Entity
1068 */
1069 public function testNotImplemented_create($Entity) {
1070 $result = civicrm_api($Entity, 'Create', array('version' => 3));
1071 $this->assertEquals(1, $result['is_error']);
1072 $this->assertContains(strtolower("API ($Entity, Create) does not exist"), strtolower($result['error_message']));
1073 }
1074
1075 /**
1076 * @dataProvider entities
1077 * @expectedException CiviCRM_API3_Exception
1078 * @param $Entity
1079 */
1080 public function testWithoutParam_create($Entity) {
1081 if ($Entity === 'Setting') {
1082 $this->markTestSkipped('It seems OK for setting to skip here as it silently sips invalid params');
1083 }
1084 elseif ($Entity === 'Mailing') {
1085 $this->markTestSkipped('It seems OK for "Mailing" to skip here because you can create empty drafts');
1086 }
1087 // should create php complaining that a param is missing
1088 civicrm_api3($Entity, 'Create');
1089 }
1090
1091 /**
1092 * @dataProvider entities_create
1093 *
1094 * Check that create doesn't work with an invalid
1095 * @param $Entity
1096 * @throws \PHPUnit_Framework_IncompleteTestError
1097 */
1098 public function testInvalidSort_get($Entity) {
1099 $invalidEntitys = array('ActivityType', 'Setting', 'System');
1100 if (in_array($Entity, $invalidEntitys)) {
1101 $this->markTestSkipped('It seems OK for ' . $Entity . ' to skip here as it silently sips invalid params');
1102 }
1103 $result = $this->callAPIFailure($Entity, 'get', array('options' => array('sort' => 'sleep(1)')));
1104 }
1105
1106 /**
1107 * @dataProvider entities_create
1108 *
1109 * Check that create doesn't work with an invalid
1110 * @param $Entity
1111 * @throws \PHPUnit_Framework_IncompleteTestError
1112 */
1113 public function testValidSortSingleArrayById_get($Entity) {
1114 $invalidEntitys = array('ActivityType', 'Setting', 'System');
1115 $tests = array(
1116 'id' => '_id',
1117 'id desc' => '_id desc',
1118 'id DESC' => '_id DESC',
1119 'id ASC' => '_id ASC',
1120 'id asc' => '_id asc');
1121 foreach ($tests as $test => $expected) {
1122 if (in_array($Entity, $invalidEntitys)) {
1123 $this->markTestSkipped('It seems OK for ' . $Entity . ' to skip here as it silently ignores passed in params');
1124 }
1125 $params = array('sort' => array($test));
1126 $result = _civicrm_api3_get_options_from_params($params, FALSE, $Entity, 'get');
1127 $lowercase_entity = _civicrm_api_get_entity_name_from_camel($Entity);
1128 $this->assertEquals($lowercase_entity . $expected, $result['sort']);
1129 }
1130 }
1131
1132 /**
1133 * @dataProvider entities_create
1134 *
1135 * Check that create doesn't work with an invalid
1136 * @param $Entity
1137 * @throws \PHPUnit_Framework_IncompleteTestError
1138 */
1139 public function testInvalidID_create($Entity) {
1140 // turn test off for noew
1141 $this->markTestIncomplete("Entity [ $Entity ] cannot be mocked - no known DAO");
1142 return;
1143 if (in_array($Entity, $this->toBeImplemented['create'])) {
1144 // $this->markTestIncomplete("civicrm_api3_{$Entity}_create to be implemented");
1145 return;
1146 }
1147 $result = $this->callAPIFailure($Entity, 'Create', array('id' => 999));
1148 }
1149
1150 /**
1151 * @dataProvider entities
1152 */
1153 public function testCreateWrongTypeParamTag_create() {
1154 $result = civicrm_api("Tag", 'Create', 'this is not a string');
1155 $this->assertEquals(1, $result['is_error']);
1156 $this->assertEquals("Input variable `params` is not an array", $result['error_message']);
1157 }
1158
1159 /**
1160 * @dataProvider entities_updatesingle
1161 *
1162 * limitations include the problem with avoiding loops when creating test objects -
1163 * hence FKs only set by createTestObject when required. e.g parent_id on campaign is not being followed through
1164 * Currency - only seems to support US
1165 * @param $entityName
1166 */
1167 public function testCreateSingleValueAlter($entityName) {
1168 if (in_array($entityName, $this->toBeImplemented['create'])) {
1169 // $this->markTestIncomplete("civicrm_api3_{$Entity}_create to be implemented");
1170 return;
1171 }
1172
1173 $baoString = _civicrm_api3_get_BAO($entityName);
1174 $this->assertNotEmpty($baoString, $entityName);
1175 $this->assertNotEmpty($entityName, $entityName);
1176 $fieldsGet = $fields = $this->callAPISuccess($entityName, 'getfields', array('action' => 'get', 'options' => array('get_options' => 'all')));
1177 if ($entityName != 'Pledge') {
1178 $fields = $this->callAPISuccess($entityName, 'getfields', array('action' => 'create', 'options' => array('get_options' => 'all')));
1179 }
1180 $fields = $fields['values'];
1181 $return = array_keys($fieldsGet['values']);
1182 $valuesNotToReturn = $this->getKnownUnworkablesUpdateSingle($entityName, 'break_return');
1183 // these can't be requested as return values
1184 $entityValuesThatDoNotWork = array_merge(
1185 $this->getKnownUnworkablesUpdateSingle($entityName, 'cant_update'),
1186 $this->getKnownUnworkablesUpdateSingle($entityName, 'cant_return'),
1187 $valuesNotToReturn
1188 );
1189
1190 $return = array_diff($return, $valuesNotToReturn);
1191 $baoObj = new CRM_Core_DAO();
1192 $baoObj->createTestObject($baoString, array('currency' => 'USD'), 2, 0);
1193
1194 $getEntities = $this->callAPISuccess($entityName, 'get', array(
1195 'sequential' => 1,
1196 'return' => $return,
1197 'options' => array(
1198 'sort' => 'id DESC',
1199 'limit' => 2,
1200 ),
1201 ));
1202
1203 // lets use first rather than assume only one exists
1204 $entity = $getEntities['values'][0];
1205 $entity2 = $getEntities['values'][1];
1206 $this->deletableTestObjects[$baoString][] = $entity['id'];
1207 $this->deletableTestObjects[$baoString][] = $entity2['id'];
1208 foreach ($fields as $field => $specs) {
1209 $resetFKTo = NULL;
1210 $fieldName = $field;
1211 if ($field == 'currency' || $field == 'id' || $field == strtolower($entityName) . '_id'
1212 || in_array($field, $entityValuesThatDoNotWork)
1213 ) {
1214 //@todo id & entity_id are correct but we should fix currency & frequency_day
1215 continue;
1216 }
1217 $this->assertArrayHasKey('type', $specs, "the _spec function for $entityName field $field does not specify the type");
1218 switch ($specs['type']) {
1219 case CRM_Utils_Type::T_DATE:
1220 $entity[$fieldName] = '2012-05-20';
1221 break;
1222
1223 case CRM_Utils_Type::T_TIMESTAMP:
1224 case 12:
1225 $entity[$fieldName] = '2012-05-20 03:05:20';
1226 break;
1227
1228 case CRM_Utils_Type::T_STRING:
1229 case CRM_Utils_Type::T_BLOB:
1230 case CRM_Utils_Type::T_MEDIUMBLOB:
1231 case CRM_Utils_Type::T_TEXT:
1232 case CRM_Utils_Type::T_LONGTEXT:
1233 case CRM_Utils_Type::T_EMAIL:
1234 if ($fieldName == 'form_values' && $entityName == 'SavedSearch') {
1235 // This is a hack for the SavedSearch API.
1236 // It expects form_values to be an array.
1237 // If you want to fix this, you should definitely read this forum
1238 // post.
1239 // http://forum.civicrm.org/index.php/topic,33990.0.html
1240 // See also my question on the CiviCRM Stack Exchange:
1241 // https://civicrm.stackexchange.com/questions/3437
1242 $entity[$fieldName] = array('sort_name' => "SortName2");
1243 }
1244 else {
1245 $entity[$fieldName] = substr('New String', 0, CRM_Utils_Array::Value('maxlength', $specs, 100));
1246 if ($fieldName == 'email') {
1247 $entity[$fieldName] = strtolower($entity[$fieldName]);
1248 }
1249 // typecast with array to satisfy changes made in CRM-13160
1250 if ($entityName == 'MembershipType' && in_array($fieldName, array(
1251 'relationship_type_id',
1252 'relationship_direction',
1253 ))
1254 ) {
1255 $entity[$fieldName] = (array) $entity[$fieldName];
1256 }
1257 }
1258 break;
1259
1260 case CRM_Utils_Type::T_INT:
1261 // probably created with a 1
1262 if ($fieldName == 'weight') {
1263 $entity[$fieldName] = 2;
1264 }
1265 elseif (!empty($specs['FKClassName'])) {
1266 if ($specs['FKClassName'] == $baoString) {
1267 $entity[$fieldName] = (string) $entity2['id'];
1268 }
1269 else {
1270 if (!empty($entity[$fieldName])) {
1271 $resetFKTo = array($fieldName => $entity[$fieldName]);
1272 }
1273 $entity[$fieldName] = (string) empty($entity2[$field]) ? '' : $entity2[$field];
1274 //todo - there isn't always something set here - & our checking on unset values is limited
1275 if (empty($entity[$field])) {
1276 unset($entity[$field]);
1277 }
1278 }
1279 }
1280 else {
1281 $entity[$fieldName] = '6';
1282 }
1283 break;
1284
1285 case CRM_Utils_Type::T_BOOLEAN:
1286 // probably created with a 1
1287 $entity[$fieldName] = '0';
1288 break;
1289
1290 case CRM_Utils_Type::T_FLOAT:
1291 case CRM_Utils_Type::T_MONEY:
1292 $entity[$field] = '22.75';
1293 break;
1294
1295 case CRM_Utils_Type::T_URL:
1296 $entity[$field] = 'warm.beer.com';
1297 }
1298 if (empty($specs['FKClassName']) && (!empty($specs['pseudoconstant']) || !empty($specs['options']))) {
1299 $options = CRM_Utils_Array::value('options', $specs, array());
1300 if (!$options) {
1301 //eg. pdf_format id doesn't ship with any
1302 if (isset($specs['pseudoconstant']['optionGroupName'])) {
1303 $optionValue = $this->callAPISuccess('option_value', 'create', array(
1304 'option_group_id' => $specs['pseudoconstant']['optionGroupName'],
1305 'label' => 'new option value',
1306 'sequential' => 1,
1307 ));
1308 $optionValue = $optionValue['values'];
1309 $keyColumn = CRM_Utils_Array::value('keyColumn', $specs['pseudoconstant'], 'value');
1310 $options[$optionValue[0][$keyColumn]] = 'new option value';
1311 }
1312 }
1313 $entity[$field] = array_rand($options);
1314 }
1315 if (!empty($specs['FKClassName']) && !empty($specs['pseudoconstant'])) {
1316 // in the weird situation where a field has both an fk and pseudoconstant defined,
1317 // e.g. campaign_id field, need to flush caches.
1318 // FIXME: Why doesn't creating a campaign clear caches?
1319 civicrm_api3($entityName, 'getfields', array('cache_clear' => 1));
1320 }
1321 $updateParams = array(
1322 'id' => $entity['id'],
1323 $field => isset($entity[$field]) ? $entity[$field] : NULL,
1324 );
1325 if (isset($updateParams['financial_type_id']) && in_array($entityName, array('Grant'))) {
1326 //api has special handling on these 2 fields for backward compatibility reasons
1327 $entity['contribution_type_id'] = $updateParams['financial_type_id'];
1328 }
1329 if (isset($updateParams['next_sched_contribution_date']) && in_array($entityName, array('ContributionRecur'))) {
1330 //api has special handling on these 2 fields for backward compatibility reasons
1331 $entity['next_sched_contribution'] = $updateParams['next_sched_contribution_date'];
1332 }
1333
1334 $update = $this->callAPISuccess($entityName, 'create', $updateParams);
1335 $checkParams = array(
1336 'id' => $entity['id'],
1337 'sequential' => 1,
1338 'return' => $return,
1339 'options' => array(
1340 'sort' => 'id DESC',
1341 'limit' => 2,
1342 ),
1343 );
1344
1345 $checkEntity = $this->callAPISuccess($entityName, 'getsingle', $checkParams);
1346
1347 $this->assertAPIArrayComparison($entity, $checkEntity, array(), "checking if $fieldName was correctly updated\n" . print_r(array(
1348 'update-params' => $updateParams,
1349 'update-result' => $update,
1350 'getsingle-params' => $checkParams,
1351 'getsingle-result' => $checkEntity,
1352 'expected entity' => $entity,
1353 ), TRUE));
1354 if ($resetFKTo) {
1355 //reset the foreign key fields because otherwise our cleanup routine fails & some other unexpected stuff can kick in
1356 $entity = array_merge($entity, $resetFKTo);
1357 $updateParams = array_merge($updateParams, $resetFKTo);
1358 $this->callAPISuccess($entityName, 'create', $updateParams);
1359 if (isset($updateParams['financial_type_id']) && in_array($entityName, array('Grant'))) {
1360 //api has special handling on these 2 fields for backward compatibility reasons
1361 $entity['contribution_type_id'] = $updateParams['financial_type_id'];
1362 }
1363 if (isset($updateParams['next_sched_contribution_date']) && in_array($entityName, array('ContributionRecur'))) {
1364 //api has special handling on these 2 fields for backward compatibility reasons
1365 $entity['next_sched_contribution'] = $updateParams['next_sched_contribution_date'];
1366 }
1367 }
1368 }
1369 $baoObj->free();
1370 }
1371
1372 /* ---- testing the _getFields ---- */
1373
1374 /* ---- testing the _delete ---- */
1375
1376 /**
1377 * @dataProvider toBeSkipped_delete
1378 entities that don't need a delete action
1379 * @param $Entity
1380 */
1381 public function testNotImplemented_delete($Entity) {
1382 $nonExistantID = 151416349;
1383 $result = civicrm_api($Entity, 'Delete', array('version' => 3, 'id' => $nonExistantID));
1384 $this->assertEquals(1, $result['is_error']);
1385 $this->assertContains(strtolower("API ($Entity, Delete) does not exist"), strtolower($result['error_message']));
1386 }
1387
1388 /**
1389 * @dataProvider entities
1390 * @expectedException PHPUnit_Framework_Error
1391 * @param $Entity
1392 */
1393 public function testWithoutParam_delete($Entity) {
1394 // should delete php complaining that a param is missing
1395 $result = civicrm_api($Entity, 'Delete');
1396 }
1397
1398 /**
1399 * @dataProvider entities_delete
1400 * @param $Entity
1401 */
1402 public function testEmptyParam_delete($Entity) {
1403 if (in_array($Entity, $this->toBeImplemented['delete'])) {
1404 // $this->markTestIncomplete("civicrm_api3_{$Entity}_delete to be implemented");
1405 return;
1406 }
1407 $result = civicrm_api($Entity, 'Delete', array());
1408 $this->assertEquals(1, $result['is_error']);
1409 $this->assertContains("Unknown api version", $result['error_message']);
1410 }
1411
1412 /**
1413 * @dataProvider entities_delete
1414 * @param $Entity
1415 * @throws \PHPUnit_Framework_IncompleteTestError
1416 */
1417 public function testInvalidID_delete($Entity) {
1418 $result = $this->callAPIFailure($Entity, 'Delete', array('id' => 999));
1419 }
1420
1421 /**
1422 * @dataProvider entities
1423 */
1424 public function testDeleteWrongTypeParamTag_delete() {
1425 $result = civicrm_api("Tag", 'Delete', 'this is not a string');
1426 $this->assertEquals(1, $result['is_error']);
1427 $this->assertEquals("Input variable `params` is not an array", $result['error_message']);
1428 }
1429
1430 /**
1431 * Create two entities and make sure delete action only deletes one!
1432 *
1433 * @dataProvider entities_delete
1434 *
1435 * limitations include the problem with avoiding loops when creating test objects -
1436 * hence FKs only set by createTestObject when required. e.g parent_id on campaign is not being followed through
1437 * Currency - only seems to support US
1438 * @param $entityName
1439 * @throws \PHPUnit_Framework_IncompleteTestError
1440 */
1441 public function testByID_delete($entityName) {
1442 // turn test off for noew
1443 $this->markTestIncomplete("Entity [$entityName] cannot be mocked - no known DAO");
1444 return;
1445
1446 if (in_array($entityName, self::toBeSkipped_automock(TRUE))) {
1447 // $this->markTestIncomplete("civicrm_api3_{$Entity}_create to be implemented");
1448 return;
1449 }
1450 $startCount = $this->callAPISuccess($entityName, 'getcount', array());
1451 $createcount = 2;
1452 $baos = $this->getMockableBAOObjects($entityName, $createcount);
1453 list($baoObj1, $baoObj2) = $baos;
1454
1455 // make sure exactly 2 exist
1456 $result = $this->callAPISuccess($entityName, 'getcount', array(),
1457 $createcount + $startCount
1458 );
1459
1460 $this->callAPISuccess($entityName, 'delete', array('id' => $baoObj2->id));
1461 //make sure 1 less exists now
1462 $result = $this->callAPISuccess($entityName, 'getcount', array(),
1463 ($createcount + $startCount) - 1
1464 );
1465
1466 //make sure id #1 exists
1467 $result = $this->callAPISuccess($entityName, 'getcount', array('id' => $baoObj1->id),
1468 1
1469 );
1470 //make sure id #2 desn't exist
1471 $result = $this->callAPISuccess($entityName, 'getcount', array('id' => $baoObj2->id),
1472 0
1473 );
1474 }
1475
1476 /**
1477 * Create two entities and make sure delete action only deletes one!
1478 *
1479 * @dataProvider entities_getfields
1480 * @param $entity
1481 */
1482 public function testGetfieldsHasTitle($entity) {
1483 $entities = $this->getEntitiesSupportingCustomFields();
1484 if (in_array($entity, $entities)) {
1485 $ids = $this->entityCustomGroupWithSingleFieldCreate(__FUNCTION__, $entity . 'Test.php');
1486 }
1487 $actions = $this->callAPISuccess($entity, 'getactions', array());
1488 foreach ($actions['values'] as $action) {
1489 if (substr($action, -7) == '_create' || substr($action, -4) == '_get' || substr($action, -7) == '_delete') {
1490 //getactions can't distinguish between contribution_page.create & contribution_page.create
1491 continue;
1492 }
1493 $fields = $this->callAPISuccess($entity, 'getfields', array('action' => $action));
1494 if (!empty($ids) && in_array($action, array('create', 'get'))) {
1495 $this->assertArrayHasKey('custom_' . $ids['custom_field_id'], $fields['values']);
1496 }
1497
1498 foreach ($fields['values'] as $fieldName => $fieldSpec) {
1499 $this->assertArrayHasKey('title', $fieldSpec, "no title for $entity - $fieldName on action $action");
1500 $this->assertNotEmpty($fieldSpec['title'], "empty title for $entity - $fieldName");
1501 }
1502 }
1503 if (!empty($ids)) {
1504 $this->customFieldDelete($ids['custom_field_id']);
1505 $this->customGroupDelete($ids['custom_group_id']);
1506 }
1507 }
1508
1509 /**
1510 * @return array
1511 */
1512 public function getEntitiesSupportingCustomFields() {
1513 $entities = self::custom_data_entities_get();
1514 $returnEntities = array();
1515 foreach ($entities as $entityArray) {
1516 $returnEntities[] = $entityArray[0];
1517 }
1518 return $returnEntities;
1519 }
1520
1521 /**
1522 * @param string $entityName
1523 * @param int $count
1524 *
1525 * @return array
1526 */
1527 private function getMockableBAOObjects($entityName, $count = 2) {
1528 $baoString = _civicrm_api3_get_BAO($entityName);
1529 if (empty($baoString)) {
1530 $this->markTestIncomplete("Entity [$entityName] cannot be mocked - no known DAO");
1531 return array();
1532 }
1533 $baos = array();
1534 $i = 0;
1535 while ($i < $count) {
1536 // create entities
1537 $baoObj = CRM_Core_DAO::createTestObject($baoString, array('currency' => 'USD'));
1538 $this->assertTrue(is_int($baoObj->id), 'check first id');
1539 $this->deletableTestObjects[$baoString][] = $baoObj->id;
1540 $baos[] = $baoObj;
1541 $i++;
1542 }
1543 return $baos;
1544 }
1545
1546 /**
1547 * Verify that HTML metacharacters provided as inputs appear consistently.
1548 * as outputs.
1549 *
1550 * At time of writing, the encoding scheme requires (for example) that an
1551 * event title be partially-HTML-escaped before writing to DB. To provide
1552 * consistency, the API must perform extra encoding and decoding on some
1553 * fields.
1554 *
1555 * In this example, the event 'title' is subject to encoding, but the
1556 * event 'description' is not.
1557 */
1558 public function testEncodeDecodeConsistency() {
1559 // Create example
1560 $createResult = civicrm_api('Event', 'Create', array(
1561 'version' => 3,
1562 'title' => 'CiviCRM <> TheRest',
1563 'description' => 'TheRest <> CiviCRM',
1564 'event_type_id' => 1,
1565 'is_public' => 1,
1566 'start_date' => 20081021,
1567 ));
1568 $this->assertAPISuccess($createResult);
1569 $eventId = $createResult['id'];
1570 $this->assertEquals('CiviCRM <> TheRest', $createResult['values'][$eventId]['title']);
1571 $this->assertEquals('TheRest <> CiviCRM', $createResult['values'][$eventId]['description']);
1572
1573 // Verify "get" handles decoding in result value
1574 $getByIdResult = civicrm_api('Event', 'Get', array(
1575 'version' => 3,
1576 'id' => $eventId,
1577 ));
1578 $this->assertAPISuccess($getByIdResult);
1579 $this->assertEquals('CiviCRM <> TheRest', $getByIdResult['values'][$eventId]['title']);
1580 $this->assertEquals('TheRest <> CiviCRM', $getByIdResult['values'][$eventId]['description']);
1581
1582 // Verify "get" handles encoding in search value
1583 $getByTitleResult = civicrm_api('Event', 'Get', array(
1584 'version' => 3,
1585 'title' => 'CiviCRM <> TheRest',
1586 ));
1587 $this->assertAPISuccess($getByTitleResult);
1588 $this->assertEquals('CiviCRM <> TheRest', $getByTitleResult['values'][$eventId]['title']);
1589 $this->assertEquals('TheRest <> CiviCRM', $getByTitleResult['values'][$eventId]['description']);
1590
1591 // Verify that "getSingle" handles decoding
1592 $getSingleResult = $this->callAPISuccess('Event', 'GetSingle', array(
1593 'id' => $eventId,
1594 ));
1595
1596 $this->assertEquals('CiviCRM <> TheRest', $getSingleResult['title']);
1597 $this->assertEquals('TheRest <> CiviCRM', $getSingleResult['description']);
1598
1599 // Verify that chaining handles decoding
1600 $chainResult = $this->callAPISuccess('Event', 'Get', array(
1601 'id' => $eventId,
1602 'api.event.get' => array(),
1603 ));
1604 $this->assertEquals('CiviCRM <> TheRest', $chainResult['values'][$eventId]['title']);
1605 $this->assertEquals('TheRest <> CiviCRM', $chainResult['values'][$eventId]['description']);
1606 $this->assertEquals('CiviCRM <> TheRest', $chainResult['values'][$eventId]['api.event.get']['values'][0]['title']);
1607 $this->assertEquals('TheRest <> CiviCRM', $chainResult['values'][$eventId]['api.event.get']['values'][0]['description']);
1608
1609 // Verify that "setvalue" handles encoding for updates
1610 $setValueTitleResult = civicrm_api('Event', 'setvalue', array(
1611 'version' => 3,
1612 'id' => $eventId,
1613 'field' => 'title',
1614 'value' => 'setValueTitle: CiviCRM <> TheRest',
1615 ));
1616 $this->assertAPISuccess($setValueTitleResult);
1617 $this->assertEquals('setValueTitle: CiviCRM <> TheRest', $setValueTitleResult['values']['title']);
1618 $setValueDescriptionResult = civicrm_api('Event', 'setvalue', array(
1619 'version' => 3,
1620 'id' => $eventId,
1621 'field' => 'description',
1622 'value' => 'setValueDescription: TheRest <> CiviCRM',
1623 ));
1624 //$this->assertTrue((bool)$setValueDescriptionResult['is_error']); // not supported by setValue
1625 $this->assertEquals('setValueDescription: TheRest <> CiviCRM', $setValueDescriptionResult['values']['description']);
1626 }
1627
1628 /**
1629 * Verify that write operations (create/update) use partial HTML-encoding
1630 *
1631 * In this example, the event 'title' is subject to encoding, but the
1632 * event 'description' is not.
1633 */
1634 public function testEncodeWrite() {
1635 // Create example
1636 $createResult = civicrm_api('Event', 'Create', array(
1637 'version' => 3,
1638 'title' => 'createNew: CiviCRM <> TheRest',
1639 'description' => 'createNew: TheRest <> CiviCRM',
1640 'event_type_id' => 1,
1641 'is_public' => 1,
1642 'start_date' => 20081021,
1643 ));
1644 $this->assertAPISuccess($createResult);
1645 $eventId = $createResult['id'];
1646 $this->assertDBQuery('createNew: CiviCRM &lt;&gt; TheRest', 'SELECT title FROM civicrm_event WHERE id = %1', array(
1647 1 => array($eventId, 'Integer'),
1648 ));
1649 $this->assertDBQuery('createNew: TheRest <> CiviCRM', 'SELECT description FROM civicrm_event WHERE id = %1', array(
1650 1 => array($eventId, 'Integer'),
1651 ));
1652
1653 // Verify that "create" handles encoding for updates
1654 $createWithIdResult = civicrm_api('Event', 'Create', array(
1655 'version' => 3,
1656 'id' => $eventId,
1657 'title' => 'createWithId: CiviCRM <> TheRest',
1658 'description' => 'createWithId: TheRest <> CiviCRM',
1659 ));
1660 $this->assertAPISuccess($createWithIdResult);
1661 $this->assertDBQuery('createWithId: CiviCRM &lt;&gt; TheRest', 'SELECT title FROM civicrm_event WHERE id = %1', array(
1662 1 => array($eventId, 'Integer'),
1663 ));
1664 $this->assertDBQuery('createWithId: TheRest <> CiviCRM', 'SELECT description FROM civicrm_event WHERE id = %1', array(
1665 1 => array($eventId, 'Integer'),
1666 ));
1667
1668 // Verify that "setvalue" handles encoding for updates
1669 $setValueTitleResult = civicrm_api('Event', 'setvalue', array(
1670 'version' => 3,
1671 'id' => $eventId,
1672 'field' => 'title',
1673 'value' => 'setValueTitle: CiviCRM <> TheRest',
1674 ));
1675 $this->assertAPISuccess($setValueTitleResult);
1676 $this->assertDBQuery('setValueTitle: CiviCRM &lt;&gt; TheRest', 'SELECT title FROM civicrm_event WHERE id = %1', array(
1677 1 => array($eventId, 'Integer'),
1678 ));
1679 $setValueDescriptionResult = civicrm_api('Event', 'setvalue', array(
1680 'version' => 3,
1681 'id' => $eventId,
1682 'field' => 'description',
1683 'value' => 'setValueDescription: TheRest <> CiviCRM',
1684 ));
1685 //$this->assertTrue((bool)$setValueDescriptionResult['is_error']); // not supported by setValue
1686 $this->assertAPISuccess($setValueDescriptionResult);
1687 $this->assertDBQuery('setValueDescription: TheRest <> CiviCRM', 'SELECT description FROM civicrm_event WHERE id = %1', array(
1688 1 => array($eventId, 'Integer'),
1689 ));
1690 }
1691
1692 }