Merge pull request #16095 from seamuslee001/dev_core_1450
[civicrm-core.git] / tests / phpunit / CiviTest / CiviUnitTestCase.php
1 <?php
2 /**
3 * File for the CiviUnitTestCase class
4 *
5 * (PHP 5)
6 *
7 * @copyright Copyright CiviCRM LLC (C) 2009
8 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html
9 * GNU Affero General Public License version 3
10 * @package CiviCRM
11 *
12 * This file is part of CiviCRM
13 *
14 * CiviCRM is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Affero General Public License
16 * as published by the Free Software Foundation; either version 3 of
17 * the License, or (at your option) any later version.
18 *
19 * CiviCRM is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Affero General Public License for more details.
23 *
24 * You should have received a copy of the GNU Affero General Public
25 * License along with this program. If not, see
26 * <http://www.gnu.org/licenses/>.
27 */
28
29 use Civi\Payment\System;
30 use League\Csv\Reader;
31
32 /**
33 * Include class definitions
34 */
35 require_once 'api/api.php';
36 define('API_LATEST_VERSION', 3);
37
38 /**
39 * Base class for CiviCRM unit tests
40 *
41 * This class supports two (mutually-exclusive) techniques for cleaning up test data. Subclasses
42 * may opt for one or neither:
43 *
44 * 1. quickCleanup() is a helper which truncates a series of tables. Call quickCleanup()
45 * as part of setUp() and/or tearDown(). quickCleanup() is thorough - but it can
46 * be cumbersome to use (b/c you must identify the tables to cleanup) and slow to execute.
47 * 2. useTransaction() executes the test inside a transaction. It's easier to use
48 * (because you don't need to identify specific tables), but it doesn't work for tests
49 * which manipulate schema or truncate data -- and could behave inconsistently
50 * for tests which specifically examine DB transactions.
51 *
52 * Common functions for unit tests
53 *
54 * @package CiviCRM
55 */
56 class CiviUnitTestCase extends PHPUnit\Framework\TestCase {
57
58 use \Civi\Test\Api3DocTrait;
59 use \Civi\Test\GenericAssertionsTrait;
60 use \Civi\Test\DbTestTrait;
61 use \Civi\Test\ContactTestTrait;
62 use \Civi\Test\MailingTestTrait;
63
64 /**
65 * Database has been initialized.
66 *
67 * @var bool
68 */
69 private static $dbInit = FALSE;
70
71 /**
72 * Database connection.
73 *
74 * @var PHPUnit_Extensions_Database_DB_IDatabaseConnection
75 */
76 protected $_dbconn;
77
78 /**
79 * The database name.
80 *
81 * @var string
82 */
83 static protected $_dbName;
84
85 /**
86 * Track tables we have modified during a test.
87 *
88 * @var array
89 */
90 protected $_tablesToTruncate = [];
91
92 /**
93 * @var array
94 * Array of temporary directory names
95 */
96 protected $tempDirs;
97
98 /**
99 * @var bool
100 * populateOnce allows to skip db resets in setUp
101 *
102 * WARNING! USE WITH CAUTION - IT'LL RENDER DATA DEPENDENCIES
103 * BETWEEN TESTS WHEN RUN IN SUITE. SUITABLE FOR LOCAL, LIMITED
104 * "CHECK RUNS" ONLY!
105 *
106 * IF POSSIBLE, USE $this->DBResetRequired = FALSE IN YOUR TEST CASE!
107 *
108 * @see http://forum.civicrm.org/index.php/topic,18065.0.html
109 */
110 public static $populateOnce = FALSE;
111
112 /**
113 * DBResetRequired allows skipping DB reset
114 * in specific test case. If you still need
115 * to reset single test (method) of such case, call
116 * $this->cleanDB() in the first line of this
117 * test (method).
118 * @var bool
119 */
120 public $DBResetRequired = TRUE;
121
122 /**
123 * @var CRM_Core_Transaction|null
124 */
125 private $tx = NULL;
126
127 /**
128 * Array of IDs created to support the test.
129 *
130 * e.g
131 * $this->ids = ['Contact' => ['descriptive_key' => $contactID], 'Group' => [$groupID]];
132 *
133 * @var array
134 */
135 protected $ids = [];
136
137 /**
138 * Class used for hooks during tests.
139 *
140 * This can be used to test hooks within tests. For example in the ACL_PermissionTrait:
141 *
142 * $this->hookClass->setHook('civicrm_aclWhereClause', array($this, 'aclWhereHookAllResults'));
143 *
144 * @var \CRM_Utils_Hook_UnitTests
145 */
146 public $hookClass = NULL;
147
148 /**
149 * @var array
150 * Common values to be re-used multiple times within a class - usually to create the relevant entity
151 */
152 protected $_params = [];
153
154 /**
155 * @var CRM_Extension_System
156 */
157 protected $origExtensionSystem;
158
159 /**
160 * Array of IDs created during test setup routine.
161 *
162 * The cleanUpSetUpIds method can be used to clear these at the end of the test.
163 *
164 * @var array
165 */
166 public $setupIDs = [];
167
168 /**
169 * PHPUnit Mock Method to use.
170 *
171 * @var string
172 */
173 public $mockMethod = 'getMock';
174
175 /**
176 * Constructor.
177 *
178 * Because we are overriding the parent class constructor, we
179 * need to show the same arguments as exist in the constructor of
180 * PHPUnit_Framework_TestCase, since
181 * PHPUnit_Framework_TestSuite::createTest() creates a
182 * ReflectionClass of the Test class and checks the constructor
183 * of that class to decide how to set up the test.
184 *
185 * @param string $name
186 * @param array $data
187 * @param string $dataName
188 */
189 public function __construct($name = NULL, array $data = [], $dataName = '') {
190 parent::__construct($name, $data, $dataName);
191
192 // we need full error reporting
193 error_reporting(E_ALL & ~E_NOTICE);
194
195 self::$_dbName = self::getDBName();
196
197 // also load the class loader
198 require_once 'CRM/Core/ClassLoader.php';
199 CRM_Core_ClassLoader::singleton()->register();
200 if (function_exists('_civix_phpunit_setUp')) {
201 // FIXME: loosen coupling
202 _civix_phpunit_setUp();
203 }
204 if (class_exists('PHPUnit_Runner_Version') && version_compare(\PHPUnit_Runner_Version::id(), '5', '>=')) {
205 $this->mockMethod = 'createMock';
206 }
207 elseif (class_exists('PHPUnit\Runner\Version') && version_compare(PHPUnit\Runner\Version::id(), '6', '>=')) {
208 $this->mockMethod = 'createMock';
209 }
210 }
211
212 /**
213 * Override to run the test and assert its state.
214 *
215 * @return mixed
216 * @throws \Exception
217 * @throws \PHPUnit_Framework_IncompleteTest
218 * @throws \PHPUnit_Framework_SkippedTest
219 */
220 protected function runTest() {
221 try {
222 return parent::runTest();
223 }
224 catch (PEAR_Exception $e) {
225 // PEAR_Exception has metadata in funny places, and PHPUnit won't log it nicely
226 throw new Exception(\CRM_Core_Error::formatTextException($e), $e->getCode());
227 }
228 }
229
230 /**
231 * @return bool
232 */
233 public function requireDBReset() {
234 return $this->DBResetRequired;
235 }
236
237 /**
238 * @return string
239 */
240 public static function getDBName() {
241 static $dbName = NULL;
242 if ($dbName === NULL) {
243 require_once "DB.php";
244 $dsninfo = DB::parseDSN(CIVICRM_DSN);
245 $dbName = $dsninfo['database'];
246 }
247 return $dbName;
248 }
249
250 /**
251 * Create database connection for this instance.
252 *
253 * Initialize the test database if it hasn't been initialized
254 *
255 */
256 protected function getConnection() {
257 if (!self::$dbInit) {
258 $dbName = self::getDBName();
259
260 // install test database
261 echo PHP_EOL . "Installing {$dbName} database" . PHP_EOL;
262
263 static::_populateDB(FALSE, $this);
264
265 self::$dbInit = TRUE;
266 }
267
268 }
269
270 /**
271 * Required implementation of abstract method.
272 */
273 protected function getDataSet() {
274 }
275
276 /**
277 * @param bool $perClass
278 * @param null $object
279 *
280 * @return bool
281 * TRUE if the populate logic runs; FALSE if it is skipped
282 */
283 protected static function _populateDB($perClass = FALSE, &$object = NULL) {
284 if (CIVICRM_UF !== 'UnitTests') {
285 throw new \RuntimeException("_populateDB requires CIVICRM_UF=UnitTests");
286 }
287
288 if ($perClass || $object == NULL) {
289 $dbreset = TRUE;
290 }
291 else {
292 $dbreset = $object->requireDBReset();
293 }
294
295 if (self::$populateOnce || !$dbreset) {
296 return FALSE;
297 }
298 self::$populateOnce = NULL;
299
300 Civi\Test::data()->populate();
301
302 return TRUE;
303 }
304
305 public static function setUpBeforeClass() {
306 static::_populateDB(TRUE);
307
308 // also set this global hack
309 $GLOBALS['_PEAR_ERRORSTACK_OVERRIDE_CALLBACK'] = [];
310 }
311
312 /**
313 * Common setup functions for all unit tests.
314 */
315 protected function setUp() {
316 $session = CRM_Core_Session::singleton();
317 $session->set('userID', NULL);
318
319 $this->_apiversion = 3;
320
321 // REVERT
322 $this->errorScope = CRM_Core_TemporaryErrorScope::useException();
323 // Use a temporary file for STDIN
324 $GLOBALS['stdin'] = tmpfile();
325 if ($GLOBALS['stdin'] === FALSE) {
326 echo "Couldn't open temporary file\n";
327 exit(1);
328 }
329
330 // Get and save a connection to the database
331 $this->_dbconn = $this->getConnection();
332
333 // reload database before each test
334 // $this->_populateDB();
335
336 // "initialize" CiviCRM to avoid problems when running single tests
337 // FIXME: look at it closer in second stage
338
339 $GLOBALS['civicrm_setting']['domain']['fatalErrorHandler'] = 'CiviUnitTestCase_fatalErrorHandler';
340 $GLOBALS['civicrm_setting']['domain']['backtrace'] = 1;
341
342 // disable any left-over test extensions
343 CRM_Core_DAO::executeQuery('DELETE FROM civicrm_extension WHERE full_name LIKE "test.%"');
344
345 // reset all the caches
346 CRM_Utils_System::flushCache();
347
348 // initialize the object once db is loaded
349 \Civi::$statics = [];
350 // ugh, performance
351 $config = CRM_Core_Config::singleton(TRUE, TRUE);
352
353 // when running unit tests, use mockup user framework
354 $this->hookClass = CRM_Utils_Hook::singleton();
355
356 // Make sure the DB connection is setup properly
357 $config->userSystem->setMySQLTimeZone();
358 $env = new CRM_Utils_Check_Component_Env();
359 CRM_Utils_Check::singleton()->assertValid($env->checkMysqlTime());
360
361 // clear permissions stub to not check permissions
362 $config->userPermissionClass->permissions = NULL;
363
364 //flush component settings
365 CRM_Core_Component::getEnabledComponents(TRUE);
366
367 $_REQUEST = $_GET = $_POST = [];
368 error_reporting(E_ALL);
369
370 $this->renameLabels();
371 $this->_sethtmlGlobals();
372 }
373
374 /**
375 * Read everything from the datasets directory and insert into the db.
376 */
377 public function loadAllFixtures() {
378 $fixturesDir = __DIR__ . '/../../fixtures';
379
380 CRM_Core_DAO::executeQuery("SET FOREIGN_KEY_CHECKS = 0;");
381
382 $jsonFiles = glob($fixturesDir . '/*.json');
383 foreach ($jsonFiles as $jsonFixture) {
384 $json = json_decode(file_get_contents($jsonFixture));
385 foreach ($json as $tableName => $vars) {
386 if ($tableName === 'civicrm_contact') {
387 CRM_Core_DAO::executeQuery('DELETE c FROM civicrm_contact c LEFT JOIN civicrm_domain d ON d.contact_id = c.id WHERE d.id IS NULL');
388 }
389 else {
390 CRM_Core_DAO::executeQuery("TRUNCATE $tableName");
391 }
392 foreach ($vars as $entity) {
393 $keys = $values = [];
394 foreach ($entity as $key => $value) {
395 $keys[] = $key;
396 $values[] = is_numeric($value) ? $value : "'{$value}'";
397 }
398 CRM_Core_DAO::executeQuery("
399 INSERT INTO $tableName (" . implode(',', $keys) . ') VALUES(' . implode(',', $values) . ')'
400 );
401 }
402
403 }
404 }
405
406 CRM_Core_DAO::executeQuery("SET FOREIGN_KEY_CHECKS = 1;");
407 }
408
409 /**
410 * Load the data that used to be handled by the discontinued dbunit class.
411 *
412 * This could do with further tidy up - the initial priority is simply to get rid of
413 * the dbunity package which is no longer supported.
414 *
415 * @param string $fileName
416 */
417 protected function loadXMLDataSet($fileName) {
418 CRM_Core_DAO::executeQuery('SET FOREIGN_KEY_CHECKS = 0');
419 $xml = json_decode(json_encode(simplexml_load_file($fileName)), TRUE);
420 foreach ($xml as $tableName => $element) {
421 if (!empty($element)) {
422 foreach ($element as $row) {
423 $keys = $values = [];
424 if (isset($row['@attributes'])) {
425 foreach ($row['@attributes'] as $key => $value) {
426 $keys[] = $key;
427 $values[] = is_numeric($value) ? $value : "'{$value}'";
428 }
429 }
430 elseif (!empty($row)) {
431 // cos we copied it & it is inconsistent....
432 foreach ($row as $key => $value) {
433 $keys[] = $key;
434 $values[] = is_numeric($value) ? $value : "'{$value}'";
435 }
436 }
437
438 if (!empty($values)) {
439 CRM_Core_DAO::executeQuery("
440 INSERT INTO $tableName (" . implode(',', $keys) . ') VALUES(' . implode(',', $values) . ')'
441 );
442 }
443 }
444 }
445 }
446 CRM_Core_DAO::executeQuery('SET FOREIGN_KEY_CHECKS = 1');
447 }
448
449 /**
450 * Create default domain contacts for the two domains added during test class.
451 * database population.
452 */
453 public function createDomainContacts() {
454 $this->organizationCreate();
455 $this->organizationCreate(['organization_name' => 'Second Domain']);
456 }
457
458 /**
459 * Common teardown functions for all unit tests.
460 */
461 protected function tearDown() {
462 $this->_apiversion = 3;
463 $this->resetLabels();
464
465 error_reporting(E_ALL & ~E_NOTICE);
466 CRM_Utils_Hook::singleton()->reset();
467 if ($this->hookClass) {
468 $this->hookClass->reset();
469 }
470 CRM_Core_Session::singleton()->reset(1);
471
472 if ($this->tx) {
473 $this->tx->rollback()->commit();
474 $this->tx = NULL;
475
476 CRM_Core_Transaction::forceRollbackIfEnabled();
477 \Civi\Core\Transaction\Manager::singleton(TRUE);
478 }
479 else {
480 CRM_Core_Transaction::forceRollbackIfEnabled();
481 \Civi\Core\Transaction\Manager::singleton(TRUE);
482
483 $tablesToTruncate = ['civicrm_contact', 'civicrm_uf_match'];
484 $this->quickCleanup($tablesToTruncate);
485 $this->createDomainContacts();
486 }
487
488 $this->cleanTempDirs();
489 $this->unsetExtensionSystem();
490 $this->assertEquals([], CRM_Core_DAO::$_nullArray);
491 $this->assertEquals(NULL, CRM_Core_DAO::$_nullObject);
492 }
493
494 /**
495 * Create a batch of external API calls which can
496 * be executed concurrently.
497 *
498 * @code
499 * $calls = $this->createExternalAPI()
500 * ->addCall('Contact', 'get', ...)
501 * ->addCall('Contact', 'get', ...)
502 * ...
503 * ->run()
504 * ->getResults();
505 * @endcode
506 *
507 * @return \Civi\API\ExternalBatch
508 * @throws PHPUnit_Framework_SkippedTestError
509 */
510 public function createExternalAPI() {
511 global $civicrm_root;
512 $defaultParams = [
513 'version' => $this->_apiversion,
514 'debug' => 1,
515 ];
516
517 $calls = new \Civi\API\ExternalBatch($defaultParams);
518
519 if (!$calls->isSupported()) {
520 $this->markTestSkipped('The test relies on Civi\API\ExternalBatch. This is unsupported in the local environment.');
521 }
522
523 return $calls;
524 }
525
526 /**
527 * Create required data based on $this->entity & $this->params
528 * This is just a way to set up the test data for delete & get functions
529 * so the distinction between set
530 * up & tested functions is clearer
531 *
532 * @return array
533 * api Result
534 */
535 public function createTestEntity() {
536 return $entity = $this->callAPISuccess($this->entity, 'create', $this->params);
537 }
538
539 /**
540 * @param int $contactTypeId
541 *
542 * @throws Exception
543 */
544 public function contactTypeDelete($contactTypeId) {
545 $result = CRM_Contact_BAO_ContactType::del($contactTypeId);
546 if (!$result) {
547 throw new Exception('Could not delete contact type');
548 }
549 }
550
551 /**
552 * @param array $params
553 *
554 * @return mixed
555 */
556 public function membershipTypeCreate($params = []) {
557 CRM_Member_PseudoConstant::flush('membershipType');
558 CRM_Core_Config::clearDBCache();
559 $this->setupIDs['contact'] = $memberOfOrganization = $this->organizationCreate();
560 $params = array_merge([
561 'name' => 'General',
562 'duration_unit' => 'year',
563 'duration_interval' => 1,
564 'period_type' => 'rolling',
565 'member_of_contact_id' => $memberOfOrganization,
566 'domain_id' => 1,
567 'financial_type_id' => 2,
568 'is_active' => 1,
569 'sequential' => 1,
570 'visibility' => 'Public',
571 ], $params);
572
573 $result = $this->callAPISuccess('MembershipType', 'Create', $params);
574
575 CRM_Member_PseudoConstant::flush('membershipType');
576 CRM_Utils_Cache::singleton()->flush();
577
578 return $result['id'];
579 }
580
581 /**
582 * Create membership.
583 *
584 * @param array $params
585 *
586 * @return int
587 * @throws \CRM_Core_Exception
588 */
589 public function contactMembershipCreate($params) {
590 $params = array_merge([
591 'join_date' => '2007-01-21',
592 'start_date' => '2007-01-21',
593 'end_date' => '2007-12-21',
594 'source' => 'Payment',
595 'membership_type_id' => 'General',
596 ], $params);
597 if (!is_numeric($params['membership_type_id'])) {
598 $membershipTypes = $this->callAPISuccess('Membership', 'getoptions', ['action' => 'create', 'field' => 'membership_type_id']);
599 if (!in_array($params['membership_type_id'], $membershipTypes['values'], TRUE)) {
600 $this->membershipTypeCreate(['name' => $params['membership_type_id']]);
601 }
602 }
603
604 $result = $this->callAPISuccess('Membership', 'create', $params);
605 return $result['id'];
606 }
607
608 /**
609 * Delete Membership Type.
610 *
611 * @param array $params
612 */
613 public function membershipTypeDelete($params) {
614 $this->callAPISuccess('MembershipType', 'Delete', $params);
615 }
616
617 /**
618 * @param int $membershipID
619 */
620 public function membershipDelete($membershipID) {
621 $deleteParams = ['id' => $membershipID];
622 $result = $this->callAPISuccess('Membership', 'Delete', $deleteParams);
623 }
624
625 /**
626 * @param string $name
627 *
628 * @return mixed
629 */
630 public function membershipStatusCreate($name = 'test member status') {
631 $params['name'] = $name;
632 $params['start_event'] = 'start_date';
633 $params['end_event'] = 'end_date';
634 $params['is_current_member'] = 1;
635 $params['is_active'] = 1;
636
637 $result = $this->callAPISuccess('MembershipStatus', 'Create', $params);
638 CRM_Member_PseudoConstant::flush('membershipStatus');
639 return $result['id'];
640 }
641
642 /**
643 * @param int $membershipStatusID
644 */
645 public function membershipStatusDelete($membershipStatusID) {
646 if (!$membershipStatusID) {
647 return;
648 }
649 $result = $this->callAPISuccess('MembershipStatus', 'Delete', ['id' => $membershipStatusID]);
650 }
651
652 public function membershipRenewalDate($durationUnit, $membershipEndDate) {
653 // We only have an end_date if frequency units match, otherwise membership won't be autorenewed and dates won't be calculated.
654 $renewedMembershipEndDate = new DateTime($membershipEndDate);
655 switch ($durationUnit) {
656 case 'year':
657 $renewedMembershipEndDate->add(new DateInterval('P1Y'));
658 break;
659
660 case 'month':
661 // We have to add 1 day first in case it's the end of the month, then subtract afterwards
662 // eg. 2018-02-28 should renew to 2018-03-31, if we just added 1 month we'd get 2018-03-28
663 $renewedMembershipEndDate->add(new DateInterval('P1D'));
664 $renewedMembershipEndDate->add(new DateInterval('P1M'));
665 $renewedMembershipEndDate->sub(new DateInterval('P1D'));
666 break;
667 }
668 return $renewedMembershipEndDate->format('Y-m-d');
669 }
670
671 /**
672 * Create a relationship type.
673 *
674 * @param array $params
675 *
676 * @return int
677 *
678 * @throws \CRM_Core_Exception
679 */
680 public function relationshipTypeCreate($params = []) {
681 $params = array_merge([
682 'name_a_b' => 'Relation 1 for relationship type create',
683 'name_b_a' => 'Relation 2 for relationship type create',
684 'contact_type_a' => 'Individual',
685 'contact_type_b' => 'Organization',
686 'is_reserved' => 1,
687 'is_active' => 1,
688 ], $params);
689
690 $result = $this->callAPISuccess('relationship_type', 'create', $params);
691 CRM_Core_PseudoConstant::flush('relationshipType');
692
693 return $result['id'];
694 }
695
696 /**
697 * Delete Relatinship Type.
698 *
699 * @param int $relationshipTypeID
700 */
701 public function relationshipTypeDelete($relationshipTypeID) {
702 $params['id'] = $relationshipTypeID;
703 $check = $this->callAPISuccess('relationship_type', 'get', $params);
704 if (!empty($check['count'])) {
705 $this->callAPISuccess('relationship_type', 'delete', $params);
706 }
707 }
708
709 /**
710 * @param array $params
711 *
712 * @return mixed
713 * @throws \CRM_Core_Exception
714 */
715 public function paymentProcessorTypeCreate($params = NULL) {
716 if (is_null($params)) {
717 $params = [
718 'name' => 'API_Test_PP',
719 'title' => 'API Test Payment Processor',
720 'class_name' => 'CRM_Core_Payment_APITest',
721 'billing_mode' => 'form',
722 'is_recur' => 0,
723 'is_reserved' => 1,
724 'is_active' => 1,
725 ];
726 }
727 $result = $this->callAPISuccess('payment_processor_type', 'create', $params);
728
729 CRM_Core_PseudoConstant::flush('paymentProcessorType');
730
731 return $result['id'];
732 }
733
734 /**
735 * Create test Authorize.net instance.
736 *
737 * @param array $params
738 *
739 * @return mixed
740 */
741 public function paymentProcessorAuthorizeNetCreate($params = []) {
742 $params = array_merge([
743 'name' => 'Authorize',
744 'domain_id' => CRM_Core_Config::domainID(),
745 'payment_processor_type_id' => 'AuthNet',
746 'title' => 'AuthNet',
747 'is_active' => 1,
748 'is_default' => 0,
749 'is_test' => 1,
750 'is_recur' => 1,
751 'user_name' => '4y5BfuW7jm',
752 'password' => '4cAmW927n8uLf5J8',
753 'url_site' => 'https://test.authorize.net/gateway/transact.dll',
754 'url_recur' => 'https://apitest.authorize.net/xml/v1/request.api',
755 'class_name' => 'Payment_AuthorizeNet',
756 'billing_mode' => 1,
757 ], $params);
758
759 $result = $this->callAPISuccess('PaymentProcessor', 'create', $params);
760 return $result['id'];
761 }
762
763 /**
764 * Create Participant.
765 *
766 * @param array $params
767 * Array of contact id and event id values.
768 *
769 * @return int
770 * $id of participant created
771 */
772 public function participantCreate($params = []) {
773 if (empty($params['contact_id'])) {
774 $params['contact_id'] = $this->individualCreate();
775 }
776 if (empty($params['event_id'])) {
777 $event = $this->eventCreate();
778 $params['event_id'] = $event['id'];
779 }
780 $defaults = [
781 'status_id' => 2,
782 'role_id' => 1,
783 'register_date' => 20070219,
784 'source' => 'Wimbeldon',
785 'event_level' => 'Payment',
786 'debug' => 1,
787 ];
788
789 $params = array_merge($defaults, $params);
790 $result = $this->callAPISuccess('Participant', 'create', $params);
791 return $result['id'];
792 }
793
794 /**
795 * Create Payment Processor.
796 *
797 * @return int
798 * Id Payment Processor
799 */
800 public function processorCreate($params = []) {
801 $processorParams = [
802 'domain_id' => 1,
803 'name' => 'Dummy',
804 'payment_processor_type_id' => 'Dummy',
805 'financial_account_id' => 12,
806 'is_test' => TRUE,
807 'is_active' => 1,
808 'user_name' => '',
809 'url_site' => 'http://dummy.com',
810 'url_recur' => 'http://dummy.com',
811 'billing_mode' => 1,
812 'sequential' => 1,
813 'payment_instrument_id' => 'Debit Card',
814 ];
815 $processorParams = array_merge($processorParams, $params);
816 $processor = $this->callAPISuccess('PaymentProcessor', 'create', $processorParams);
817 return $processor['id'];
818 }
819
820 /**
821 * Create Payment Processor.
822 *
823 * @param array $processorParams
824 *
825 * @return \CRM_Core_Payment_Dummy
826 * Instance of Dummy Payment Processor
827 *
828 * @throws \CiviCRM_API3_Exception
829 */
830 public function dummyProcessorCreate($processorParams = []) {
831 $paymentProcessorID = $this->processorCreate($processorParams);
832 // For the tests we don't need a live processor, but as core ALWAYS creates a processor in live mode and one in test mode we do need to create both
833 // Otherwise we are testing a scenario that only exists in tests (and some tests fail because the live processor has not been defined).
834 $processorParams['is_test'] = FALSE;
835 $this->processorCreate($processorParams);
836 return System::singleton()->getById($paymentProcessorID);
837 }
838
839 /**
840 * Create contribution page.
841 *
842 * @param array $params
843 *
844 * @return array
845 * Array of contribution page
846 */
847 public function contributionPageCreate($params = []) {
848 $this->_pageParams = array_merge([
849 'title' => 'Test Contribution Page',
850 'financial_type_id' => 1,
851 'currency' => 'USD',
852 'financial_account_id' => 1,
853 'is_active' => 1,
854 'is_allow_other_amount' => 1,
855 'min_amount' => 10,
856 'max_amount' => 1000,
857 ], $params);
858 return $this->callAPISuccess('contribution_page', 'create', $this->_pageParams);
859 }
860
861 /**
862 * Create a sample batch.
863 */
864 public function batchCreate() {
865 $params = $this->_params;
866 $params['name'] = $params['title'] = 'Batch_433397';
867 $params['status_id'] = 1;
868 $result = $this->callAPISuccess('batch', 'create', $params);
869 return $result['id'];
870 }
871
872 /**
873 * Create Tag.
874 *
875 * @param array $params
876 *
877 * @return array
878 * result of created tag
879 */
880 public function tagCreate($params = []) {
881 $defaults = [
882 'name' => 'New Tag3',
883 'description' => 'This is description for Our New Tag ',
884 'domain_id' => '1',
885 ];
886 $params = array_merge($defaults, $params);
887 $result = $this->callAPISuccess('Tag', 'create', $params);
888 return $result['values'][$result['id']];
889 }
890
891 /**
892 * Delete Tag.
893 *
894 * @param int $tagId
895 * Id of the tag to be deleted.
896 *
897 * @return int
898 */
899 public function tagDelete($tagId) {
900 require_once 'api/api.php';
901 $params = [
902 'tag_id' => $tagId,
903 ];
904 $result = $this->callAPISuccess('Tag', 'delete', $params);
905 return $result['id'];
906 }
907
908 /**
909 * Add entity(s) to the tag
910 *
911 * @param array $params
912 *
913 * @return bool
914 */
915 public function entityTagAdd($params) {
916 $result = $this->callAPISuccess('entity_tag', 'create', $params);
917 return TRUE;
918 }
919
920 /**
921 * Create pledge.
922 *
923 * @param array $params
924 * Parameters.
925 *
926 * @return int
927 * id of created pledge
928 */
929 public function pledgeCreate($params) {
930 $params = array_merge([
931 'pledge_create_date' => date('Ymd'),
932 'start_date' => date('Ymd'),
933 'scheduled_date' => date('Ymd'),
934 'amount' => 100.00,
935 'pledge_status_id' => '2',
936 'financial_type_id' => '1',
937 'pledge_original_installment_amount' => 20,
938 'frequency_interval' => 5,
939 'frequency_unit' => 'year',
940 'frequency_day' => 15,
941 'installments' => 5,
942 ],
943 $params);
944
945 $result = $this->callAPISuccess('Pledge', 'create', $params);
946 return $result['id'];
947 }
948
949 /**
950 * Delete contribution.
951 *
952 * @param int $pledgeId
953 */
954 public function pledgeDelete($pledgeId) {
955 $params = [
956 'pledge_id' => $pledgeId,
957 ];
958 $this->callAPISuccess('Pledge', 'delete', $params);
959 }
960
961 /**
962 * Create contribution.
963 *
964 * @param array $params
965 * Array of parameters.
966 *
967 * @return int
968 * id of created contribution
969 * @throws \CRM_Core_Exception
970 */
971 public function contributionCreate($params) {
972
973 $params = array_merge([
974 'domain_id' => 1,
975 'receive_date' => date('Ymd'),
976 'total_amount' => 100.00,
977 'fee_amount' => 5.00,
978 'financial_type_id' => 1,
979 'payment_instrument_id' => 1,
980 'non_deductible_amount' => 10.00,
981 'source' => 'SSF',
982 'contribution_status_id' => 1,
983 ], $params);
984
985 $result = $this->callAPISuccess('contribution', 'create', $params);
986 return $result['id'];
987 }
988
989 /**
990 * Delete contribution.
991 *
992 * @param int $contributionId
993 *
994 * @return array|int
995 * @throws \CRM_Core_Exception
996 */
997 public function contributionDelete($contributionId) {
998 $params = [
999 'contribution_id' => $contributionId,
1000 ];
1001 $result = $this->callAPISuccess('contribution', 'delete', $params);
1002 return $result;
1003 }
1004
1005 /**
1006 * Create an Event.
1007 *
1008 * @param array $params
1009 * Name-value pair for an event.
1010 *
1011 * @return array
1012 * @throws \CRM_Core_Exception
1013 */
1014 public function eventCreate($params = []) {
1015 // if no contact was passed, make up a dummy event creator
1016 if (!isset($params['contact_id'])) {
1017 $params['contact_id'] = $this->_contactCreate([
1018 'contact_type' => 'Individual',
1019 'first_name' => 'Event',
1020 'last_name' => 'Creator',
1021 ]);
1022 }
1023
1024 // set defaults for missing params
1025 $params = array_merge([
1026 'title' => 'Annual CiviCRM meet',
1027 'summary' => 'If you have any CiviCRM related issues or want to track where CiviCRM is heading, Sign up now',
1028 'description' => 'This event is intended to give brief idea about progess of CiviCRM and giving solutions to common user issues',
1029 'event_type_id' => 1,
1030 'is_public' => 1,
1031 'start_date' => 20081021,
1032 'end_date' => 20081023,
1033 'is_online_registration' => 1,
1034 'registration_start_date' => 20080601,
1035 'registration_end_date' => 20081015,
1036 'max_participants' => 100,
1037 'event_full_text' => 'Sorry! We are already full',
1038 'is_monetary' => 0,
1039 'is_active' => 1,
1040 'is_show_location' => 0,
1041 'is_email_confirm' => 1,
1042 ], $params);
1043
1044 return $this->callAPISuccess('Event', 'create', $params);
1045 }
1046
1047 /**
1048 * Create a paid event.
1049 *
1050 * @param array $params
1051 *
1052 * @param array $options
1053 *
1054 * @param string $key
1055 * Index for storing event ID in ids array.
1056 *
1057 * @return array
1058 *
1059 * @throws \CRM_Core_Exception
1060 */
1061 protected function eventCreatePaid($params, $options = [['name' => 'hundy', 'amount' => 100]], $key = 'event') {
1062 $event = $this->eventCreate($params);
1063 $this->ids['event'][$key] = (int) $event['id'];
1064 $this->priceSetID = $this->ids['PriceSet'][] = $this->eventPriceSetCreate(55, 0, 'Radio', $options);
1065 CRM_Price_BAO_PriceSet::addTo('civicrm_event', $event['id'], $this->priceSetID);
1066 $priceSet = CRM_Price_BAO_PriceSet::getSetDetail($this->priceSetID, TRUE, FALSE);
1067 $priceSet = CRM_Utils_Array::value($this->priceSetID, $priceSet);
1068 $this->eventFeeBlock = CRM_Utils_Array::value('fields', $priceSet);
1069 return $event;
1070 }
1071
1072 /**
1073 * Delete event.
1074 *
1075 * @param int $id
1076 * ID of the event.
1077 *
1078 * @return array|int
1079 */
1080 public function eventDelete($id) {
1081 $params = [
1082 'event_id' => $id,
1083 ];
1084 return $this->callAPISuccess('event', 'delete', $params);
1085 }
1086
1087 /**
1088 * Delete participant.
1089 *
1090 * @param int $participantID
1091 *
1092 * @return array|int
1093 */
1094 public function participantDelete($participantID) {
1095 $params = [
1096 'id' => $participantID,
1097 ];
1098 $check = $this->callAPISuccess('Participant', 'get', $params);
1099 if ($check['count'] > 0) {
1100 return $this->callAPISuccess('Participant', 'delete', $params);
1101 }
1102 }
1103
1104 /**
1105 * Create participant payment.
1106 *
1107 * @param int $participantID
1108 * @param int $contributionID
1109 *
1110 * @return int
1111 * $id of created payment
1112 */
1113 public function participantPaymentCreate($participantID, $contributionID = NULL) {
1114 //Create Participant Payment record With Values
1115 $params = [
1116 'participant_id' => $participantID,
1117 'contribution_id' => $contributionID,
1118 ];
1119
1120 $result = $this->callAPISuccess('participant_payment', 'create', $params);
1121 return $result['id'];
1122 }
1123
1124 /**
1125 * Delete participant payment.
1126 *
1127 * @param int $paymentID
1128 */
1129 public function participantPaymentDelete($paymentID) {
1130 $params = [
1131 'id' => $paymentID,
1132 ];
1133 $result = $this->callAPISuccess('participant_payment', 'delete', $params);
1134 }
1135
1136 /**
1137 * Add a Location.
1138 *
1139 * @param int $contactID
1140 *
1141 * @return int
1142 * location id of created location
1143 */
1144 public function locationAdd($contactID) {
1145 $address = [
1146 1 => [
1147 'location_type' => 'New Location Type',
1148 'is_primary' => 1,
1149 'name' => 'Saint Helier St',
1150 'county' => 'Marin',
1151 'country' => 'UNITED STATES',
1152 'state_province' => 'Michigan',
1153 'supplemental_address_1' => 'Hallmark Ct',
1154 'supplemental_address_2' => 'Jersey Village',
1155 'supplemental_address_3' => 'My Town',
1156 ],
1157 ];
1158
1159 $params = [
1160 'contact_id' => $contactID,
1161 'address' => $address,
1162 'location_format' => '2.0',
1163 'location_type' => 'New Location Type',
1164 ];
1165
1166 $result = $this->callAPISuccess('Location', 'create', $params);
1167 return $result;
1168 }
1169
1170 /**
1171 * Delete Locations of contact.
1172 *
1173 * @param array $params
1174 * Parameters.
1175 */
1176 public function locationDelete($params) {
1177 $this->callAPISuccess('Location', 'delete', $params);
1178 }
1179
1180 /**
1181 * Add a Location Type.
1182 *
1183 * @param array $params
1184 *
1185 * @return CRM_Core_DAO_LocationType
1186 * location id of created location
1187 */
1188 public function locationTypeCreate($params = NULL) {
1189 if ($params === NULL) {
1190 $params = [
1191 'name' => 'New Location Type',
1192 'vcard_name' => 'New Location Type',
1193 'description' => 'Location Type for Delete',
1194 'is_active' => 1,
1195 ];
1196 }
1197
1198 $locationType = new CRM_Core_DAO_LocationType();
1199 $locationType->copyValues($params);
1200 $locationType->save();
1201 // clear getfields cache
1202 CRM_Core_PseudoConstant::flush();
1203 $this->callAPISuccess('phone', 'getfields', ['version' => 3, 'cache_clear' => 1]);
1204 return $locationType;
1205 }
1206
1207 /**
1208 * Delete a Location Type.
1209 *
1210 * @param int $locationTypeId
1211 */
1212 public function locationTypeDelete($locationTypeId) {
1213 $locationType = new CRM_Core_DAO_LocationType();
1214 $locationType->id = $locationTypeId;
1215 $locationType->delete();
1216 }
1217
1218 /**
1219 * Add a Mapping.
1220 *
1221 * @param array $params
1222 *
1223 * @return CRM_Core_DAO_Mapping
1224 * Mapping id of created mapping
1225 */
1226 public function mappingCreate($params = NULL) {
1227 if ($params === NULL) {
1228 $params = [
1229 'name' => 'Mapping name',
1230 'description' => 'Mapping description',
1231 // 'Export Contact' mapping.
1232 'mapping_type_id' => 7,
1233 ];
1234 }
1235
1236 $mapping = new CRM_Core_DAO_Mapping();
1237 $mapping->copyValues($params);
1238 $mapping->save();
1239 // clear getfields cache
1240 CRM_Core_PseudoConstant::flush();
1241 $this->callAPISuccess('mapping', 'getfields', ['version' => 3, 'cache_clear' => 1]);
1242 return $mapping;
1243 }
1244
1245 /**
1246 * Delete a Mapping
1247 *
1248 * @param int $mappingId
1249 */
1250 public function mappingDelete($mappingId) {
1251 $mapping = new CRM_Core_DAO_Mapping();
1252 $mapping->id = $mappingId;
1253 $mapping->delete();
1254 }
1255
1256 /**
1257 * Prepare class for ACLs.
1258 */
1259 protected function prepareForACLs() {
1260 $config = CRM_Core_Config::singleton();
1261 $config->userPermissionClass->permissions = [];
1262 }
1263
1264 /**
1265 * Reset after ACLs.
1266 */
1267 protected function cleanUpAfterACLs() {
1268 CRM_Utils_Hook::singleton()->reset();
1269 $tablesToTruncate = [
1270 'civicrm_acl',
1271 'civicrm_acl_cache',
1272 'civicrm_acl_entity_role',
1273 'civicrm_acl_contact_cache',
1274 ];
1275 $this->quickCleanup($tablesToTruncate);
1276 $config = CRM_Core_Config::singleton();
1277 unset($config->userPermissionClass->permissions);
1278 }
1279
1280 /**
1281 * Create a smart group.
1282 *
1283 * By default it will be a group of households.
1284 *
1285 * @param array $smartGroupParams
1286 * @param array $groupParams
1287 * @param string $contactType
1288 *
1289 * @return int
1290 */
1291 public function smartGroupCreate($smartGroupParams = [], $groupParams = [], $contactType = 'Household') {
1292 $smartGroupParams = array_merge([
1293 'formValues' => ['contact_type' => ['IN' => [$contactType]]],
1294 ],
1295 $smartGroupParams);
1296 $savedSearch = CRM_Contact_BAO_SavedSearch::create($smartGroupParams);
1297
1298 $groupParams['saved_search_id'] = $savedSearch->id;
1299 return $this->groupCreate($groupParams);
1300 }
1301
1302 /**
1303 * Create a UFField.
1304 *
1305 * @param array $params
1306 */
1307 public function uFFieldCreate($params = []) {
1308 $params = array_merge([
1309 'uf_group_id' => 1,
1310 'field_name' => 'first_name',
1311 'is_active' => 1,
1312 'is_required' => 1,
1313 'visibility' => 'Public Pages and Listings',
1314 'is_searchable' => '1',
1315 'label' => 'first_name',
1316 'field_type' => 'Individual',
1317 'weight' => 1,
1318 ], $params);
1319 $this->callAPISuccess('uf_field', 'create', $params);
1320 }
1321
1322 /**
1323 * Add a UF Join Entry.
1324 *
1325 * @param array $params
1326 *
1327 * @return int
1328 * $id of created UF Join
1329 */
1330 public function ufjoinCreate($params = NULL) {
1331 if ($params === NULL) {
1332 $params = [
1333 'is_active' => 1,
1334 'module' => 'CiviEvent',
1335 'entity_table' => 'civicrm_event',
1336 'entity_id' => 3,
1337 'weight' => 1,
1338 'uf_group_id' => 1,
1339 ];
1340 }
1341 $result = $this->callAPISuccess('uf_join', 'create', $params);
1342 return $result;
1343 }
1344
1345 /**
1346 * @param array $params
1347 * Optional parameters.
1348 * @param bool $reloadConfig
1349 * While enabling CiviCampaign component, we shouldn't always forcibly
1350 * reload config as this hinder hook call in test environment
1351 *
1352 * @return int
1353 * Campaign ID.
1354 */
1355 public function campaignCreate($params = [], $reloadConfig = TRUE) {
1356 $this->enableCiviCampaign($reloadConfig);
1357 $campaign = $this->callAPISuccess('campaign', 'create', array_merge([
1358 'name' => 'big_campaign',
1359 'title' => 'Campaign',
1360 ], $params));
1361 return $campaign['id'];
1362 }
1363
1364 /**
1365 * Create Group for a contact.
1366 *
1367 * @param int $contactId
1368 */
1369 public function contactGroupCreate($contactId) {
1370 $params = [
1371 'contact_id.1' => $contactId,
1372 'group_id' => 1,
1373 ];
1374
1375 $this->callAPISuccess('GroupContact', 'Create', $params);
1376 }
1377
1378 /**
1379 * Delete Group for a contact.
1380 *
1381 * @param int $contactId
1382 */
1383 public function contactGroupDelete($contactId) {
1384 $params = [
1385 'contact_id.1' => $contactId,
1386 'group_id' => 1,
1387 ];
1388 $this->civicrm_api('GroupContact', 'Delete', $params);
1389 }
1390
1391 /**
1392 * Create Activity.
1393 *
1394 * @param array $params
1395 *
1396 * @return array|int
1397 */
1398 public function activityCreate($params = []) {
1399 $params = array_merge([
1400 'subject' => 'Discussion on warm beer',
1401 'activity_date_time' => date('Ymd'),
1402 'duration' => 90,
1403 'location' => 'Baker Street',
1404 'details' => 'Lets schedule a meeting',
1405 'status_id' => 1,
1406 'activity_type_id' => 'Meeting',
1407 ], $params);
1408 if (!isset($params['source_contact_id'])) {
1409 $params['source_contact_id'] = $this->individualCreate();
1410 }
1411 if (!isset($params['target_contact_id'])) {
1412 $params['target_contact_id'] = $this->individualCreate([
1413 'first_name' => 'Julia',
1414 'last_name' => 'Anderson',
1415 'prefix' => 'Ms.',
1416 'email' => 'julia_anderson@civicrm.org',
1417 'contact_type' => 'Individual',
1418 ]);
1419 }
1420 if (!isset($params['assignee_contact_id'])) {
1421 $params['assignee_contact_id'] = $params['target_contact_id'];
1422 }
1423
1424 $result = civicrm_api3('Activity', 'create', $params);
1425
1426 $result['target_contact_id'] = $params['target_contact_id'];
1427 $result['assignee_contact_id'] = $params['assignee_contact_id'];
1428 return $result;
1429 }
1430
1431 /**
1432 * Create an activity type.
1433 *
1434 * @param array $params
1435 * Parameters.
1436 *
1437 * @return array
1438 */
1439 public function activityTypeCreate($params) {
1440 return $this->callAPISuccess('ActivityType', 'create', $params);
1441 }
1442
1443 /**
1444 * Delete activity type.
1445 *
1446 * @param int $activityTypeId
1447 * Id of the activity type.
1448 *
1449 * @return array
1450 */
1451 public function activityTypeDelete($activityTypeId) {
1452 $params['activity_type_id'] = $activityTypeId;
1453 return $this->callAPISuccess('ActivityType', 'delete', $params);
1454 }
1455
1456 /**
1457 * Create custom group.
1458 *
1459 * @param array $params
1460 *
1461 * @return array
1462 */
1463 public function customGroupCreate($params = []) {
1464 $defaults = [
1465 'title' => 'new custom group',
1466 'extends' => 'Contact',
1467 'domain_id' => 1,
1468 'style' => 'Inline',
1469 'is_active' => 1,
1470 ];
1471
1472 $params = array_merge($defaults, $params);
1473
1474 return $this->callAPISuccess('custom_group', 'create', $params);
1475 }
1476
1477 /**
1478 * Existing function doesn't allow params to be over-ridden so need a new one
1479 * this one allows you to only pass in the params you want to change
1480 *
1481 * @param array $params
1482 *
1483 * @return array|int
1484 */
1485 public function CustomGroupCreateByParams($params = []) {
1486 $defaults = [
1487 'title' => "API Custom Group",
1488 'extends' => 'Contact',
1489 'domain_id' => 1,
1490 'style' => 'Inline',
1491 'is_active' => 1,
1492 ];
1493 $params = array_merge($defaults, $params);
1494 return $this->callAPISuccess('custom_group', 'create', $params);
1495 }
1496
1497 /**
1498 * Create custom group with multi fields.
1499 *
1500 * @param array $params
1501 *
1502 * @return array|int
1503 */
1504 public function CustomGroupMultipleCreateByParams($params = []) {
1505 $defaults = [
1506 'style' => 'Tab',
1507 'is_multiple' => 1,
1508 ];
1509 $params = array_merge($defaults, $params);
1510 return $this->CustomGroupCreateByParams($params);
1511 }
1512
1513 /**
1514 * Create custom group with multi fields.
1515 *
1516 * @param array $params
1517 *
1518 * @return array
1519 */
1520 public function CustomGroupMultipleCreateWithFields($params = []) {
1521 // also need to pass on $params['custom_field'] if not set but not in place yet
1522 $ids = [];
1523 $customGroup = $this->CustomGroupMultipleCreateByParams($params);
1524 $ids['custom_group_id'] = $customGroup['id'];
1525
1526 $customField = $this->customFieldCreate([
1527 'custom_group_id' => $ids['custom_group_id'],
1528 'label' => 'field_1' . $ids['custom_group_id'],
1529 'in_selector' => 1,
1530 ]);
1531
1532 $ids['custom_field_id'][] = $customField['id'];
1533
1534 $customField = $this->customFieldCreate([
1535 'custom_group_id' => $ids['custom_group_id'],
1536 'default_value' => '',
1537 'label' => 'field_2' . $ids['custom_group_id'],
1538 'in_selector' => 1,
1539 ]);
1540 $ids['custom_field_id'][] = $customField['id'];
1541
1542 $customField = $this->customFieldCreate([
1543 'custom_group_id' => $ids['custom_group_id'],
1544 'default_value' => '',
1545 'label' => 'field_3' . $ids['custom_group_id'],
1546 'in_selector' => 1,
1547 ]);
1548 $ids['custom_field_id'][] = $customField['id'];
1549
1550 return $ids;
1551 }
1552
1553 /**
1554 * Create a custom group with a single text custom field. See
1555 * participant:testCreateWithCustom for how to use this
1556 *
1557 * @param string $function
1558 * __FUNCTION__.
1559 * @param string $filename
1560 * $file __FILE__.
1561 *
1562 * @return array
1563 * ids of created objects
1564 */
1565 public function entityCustomGroupWithSingleFieldCreate($function, $filename) {
1566 $params = ['title' => $function];
1567 $entity = substr(basename($filename), 0, strlen(basename($filename)) - 8);
1568 $params['extends'] = $entity ? $entity : 'Contact';
1569 $customGroup = $this->customGroupCreate($params);
1570 $customField = $this->customFieldCreate(['custom_group_id' => $customGroup['id'], 'label' => $function]);
1571 CRM_Core_PseudoConstant::flush();
1572
1573 return ['custom_group_id' => $customGroup['id'], 'custom_field_id' => $customField['id']];
1574 }
1575
1576 /**
1577 * Create a custom group with a single text custom field, multi-select widget, with a variety of option values including upper and lower case.
1578 * See api_v3_SyntaxConformanceTest:testCustomDataGet for how to use this
1579 *
1580 * @param string $function
1581 * __FUNCTION__.
1582 * @param string $filename
1583 * $file __FILE__.
1584 *
1585 * @return array
1586 * ids of created objects
1587 */
1588 public function entityCustomGroupWithSingleStringMultiSelectFieldCreate($function, $filename) {
1589 $params = ['title' => $function];
1590 $entity = substr(basename($filename), 0, strlen(basename($filename)) - 8);
1591 $params['extends'] = $entity ? $entity : 'Contact';
1592 $customGroup = $this->customGroupCreate($params);
1593 $customField = $this->customFieldCreate(['custom_group_id' => $customGroup['id'], 'label' => $function, 'html_type' => 'Multi-Select', 'default_value' => 1]);
1594 CRM_Core_PseudoConstant::flush();
1595 $options = [
1596 'defaultValue' => 'Default Value',
1597 'lowercasevalue' => 'Lowercase Value',
1598 1 => 'Integer Value',
1599 'NULL' => 'NULL',
1600 ];
1601 $custom_field_params = ['sequential' => 1, 'id' => $customField['id']];
1602 $custom_field_api_result = $this->callAPISuccess('custom_field', 'get', $custom_field_params);
1603 $this->assertNotEmpty($custom_field_api_result['values'][0]['option_group_id']);
1604 $option_group_params = ['sequential' => 1, 'id' => $custom_field_api_result['values'][0]['option_group_id']];
1605 $option_group_result = $this->callAPISuccess('OptionGroup', 'get', $option_group_params);
1606 $this->assertNotEmpty($option_group_result['values'][0]['name']);
1607 foreach ($options as $option_value => $option_label) {
1608 $option_group_params = ['option_group_id' => $option_group_result['values'][0]['name'], 'value' => $option_value, 'label' => $option_label];
1609 $option_value_result = $this->callAPISuccess('OptionValue', 'create', $option_group_params);
1610 }
1611
1612 return [
1613 'custom_group_id' => $customGroup['id'],
1614 'custom_field_id' => $customField['id'],
1615 'custom_field_option_group_id' => $custom_field_api_result['values'][0]['option_group_id'],
1616 'custom_field_group_options' => $options,
1617 ];
1618 }
1619
1620 /**
1621 * Delete custom group.
1622 *
1623 * @param int $customGroupID
1624 *
1625 * @return array|int
1626 */
1627 public function customGroupDelete($customGroupID) {
1628 $params['id'] = $customGroupID;
1629 return $this->callAPISuccess('custom_group', 'delete', $params);
1630 }
1631
1632 /**
1633 * Create custom field.
1634 *
1635 * @param array $params
1636 * (custom_group_id) is required.
1637 *
1638 * @return array
1639 */
1640 public function customFieldCreate($params) {
1641 $params = array_merge([
1642 'label' => 'Custom Field',
1643 'data_type' => 'String',
1644 'html_type' => 'Text',
1645 'is_searchable' => 1,
1646 'is_active' => 1,
1647 'default_value' => 'defaultValue',
1648 ], $params);
1649
1650 $result = $this->callAPISuccess('custom_field', 'create', $params);
1651 // these 2 functions are called with force to flush static caches
1652 CRM_Core_BAO_CustomField::getTableColumnGroup($result['id'], 1);
1653 CRM_Core_Component::getEnabledComponents(1);
1654 return $result;
1655 }
1656
1657 /**
1658 * Delete custom field.
1659 *
1660 * @param int $customFieldID
1661 *
1662 * @return array|int
1663 */
1664 public function customFieldDelete($customFieldID) {
1665
1666 $params['id'] = $customFieldID;
1667 return $this->callAPISuccess('custom_field', 'delete', $params);
1668 }
1669
1670 /**
1671 * Create note.
1672 *
1673 * @param int $cId
1674 *
1675 * @return array
1676 */
1677 public function noteCreate($cId) {
1678 $params = [
1679 'entity_table' => 'civicrm_contact',
1680 'entity_id' => $cId,
1681 'note' => 'hello I am testing Note',
1682 'contact_id' => $cId,
1683 'modified_date' => date('Ymd'),
1684 'subject' => 'Test Note',
1685 ];
1686
1687 return $this->callAPISuccess('Note', 'create', $params);
1688 }
1689
1690 /**
1691 * Enable CiviCampaign Component.
1692 *
1693 * @param bool $reloadConfig
1694 * Force relaod config or not
1695 */
1696 public function enableCiviCampaign($reloadConfig = TRUE) {
1697 CRM_Core_BAO_ConfigSetting::enableComponent('CiviCampaign');
1698 if ($reloadConfig) {
1699 // force reload of config object
1700 $config = CRM_Core_Config::singleton(TRUE, TRUE);
1701 }
1702 //flush cache by calling with reset
1703 $activityTypes = CRM_Core_PseudoConstant::activityType(TRUE, TRUE, TRUE, 'name', TRUE);
1704 }
1705
1706 /**
1707 * Create custom field with Option Values.
1708 *
1709 * @param array $customGroup
1710 * @param string $name
1711 * Name of custom field.
1712 * @param array $extraParams
1713 * Additional parameters to pass through.
1714 *
1715 * @return array|int
1716 */
1717 public function customFieldOptionValueCreate($customGroup, $name, $extraParams = []) {
1718 $fieldParams = [
1719 'custom_group_id' => $customGroup['id'],
1720 'name' => 'test_custom_group',
1721 'label' => 'Country',
1722 'html_type' => 'Select',
1723 'data_type' => 'String',
1724 'weight' => 4,
1725 'is_required' => 1,
1726 'is_searchable' => 0,
1727 'is_active' => 1,
1728 ];
1729
1730 $optionGroup = [
1731 'domain_id' => 1,
1732 'name' => 'option_group1',
1733 'label' => 'option_group_label1',
1734 ];
1735
1736 $optionValue = [
1737 'option_label' => ['Label1', 'Label2'],
1738 'option_value' => ['value1', 'value2'],
1739 'option_name' => [$name . '_1', $name . '_2'],
1740 'option_weight' => [1, 2],
1741 'option_status' => [1, 1],
1742 ];
1743
1744 $params = array_merge($fieldParams, $optionGroup, $optionValue, $extraParams);
1745
1746 return $this->callAPISuccess('custom_field', 'create', $params);
1747 }
1748
1749 /**
1750 * @param $entities
1751 *
1752 * @return bool
1753 */
1754 public function confirmEntitiesDeleted($entities) {
1755 foreach ($entities as $entity) {
1756
1757 $result = $this->callAPISuccess($entity, 'Get', []);
1758 if ($result['error'] == 1 || $result['count'] > 0) {
1759 // > than $entity[0] to allow a value to be passed in? e.g. domain?
1760 return TRUE;
1761 }
1762 }
1763 return FALSE;
1764 }
1765
1766 /**
1767 * Quick clean by emptying tables created for the test.
1768 *
1769 * @param array $tablesToTruncate
1770 * @param bool $dropCustomValueTables
1771 *
1772 * @throws \CRM_Core_Exception
1773 */
1774 public function quickCleanup($tablesToTruncate, $dropCustomValueTables = FALSE) {
1775 if ($this->tx) {
1776 throw new \CRM_Core_Exception("CiviUnitTestCase: quickCleanup() is not compatible with useTransaction()");
1777 }
1778 if ($dropCustomValueTables) {
1779 $optionGroupResult = CRM_Core_DAO::executeQuery('SELECT option_group_id FROM civicrm_custom_field');
1780 while ($optionGroupResult->fetch()) {
1781 // We have a test that sets the option_group_id for a custom group to that of 'activity_type'.
1782 // Then test tearDown deletes it. This is all mildly terrifying but for the context here we can be pretty
1783 // sure the low-numbered (50 is arbitrary) option groups are not ones to 'just delete' in a
1784 // generic cleanup routine.
1785 if (!empty($optionGroupResult->option_group_id) && $optionGroupResult->option_group_id > 50) {
1786 CRM_Core_DAO::executeQuery('DELETE FROM civicrm_option_group WHERE id = ' . $optionGroupResult->option_group_id);
1787 }
1788 }
1789 $tablesToTruncate[] = 'civicrm_custom_group';
1790 $tablesToTruncate[] = 'civicrm_custom_field';
1791 }
1792
1793 $tablesToTruncate = array_unique(array_merge($this->_tablesToTruncate, $tablesToTruncate));
1794
1795 CRM_Core_DAO::executeQuery("SET FOREIGN_KEY_CHECKS = 0;");
1796 foreach ($tablesToTruncate as $table) {
1797 $sql = "TRUNCATE TABLE $table";
1798 CRM_Core_DAO::executeQuery($sql);
1799 }
1800 CRM_Core_DAO::executeQuery("SET FOREIGN_KEY_CHECKS = 1;");
1801
1802 if ($dropCustomValueTables) {
1803 $dbName = self::getDBName();
1804 $query = "
1805 SELECT TABLE_NAME as tableName
1806 FROM INFORMATION_SCHEMA.TABLES
1807 WHERE TABLE_SCHEMA = '{$dbName}'
1808 AND ( TABLE_NAME LIKE 'civicrm_value_%' )
1809 ";
1810
1811 $tableDAO = CRM_Core_DAO::executeQuery($query);
1812 while ($tableDAO->fetch()) {
1813 $sql = "DROP TABLE {$tableDAO->tableName}";
1814 CRM_Core_DAO::executeQuery($sql);
1815 }
1816 }
1817 }
1818
1819 /**
1820 * Clean up financial entities after financial tests (so we remember to get all the tables :-))
1821 *
1822 * @throws \CRM_Core_Exception
1823 */
1824 public function quickCleanUpFinancialEntities() {
1825 $tablesToTruncate = [
1826 'civicrm_activity',
1827 'civicrm_activity_contact',
1828 'civicrm_contribution',
1829 'civicrm_contribution_soft',
1830 'civicrm_contribution_product',
1831 'civicrm_financial_trxn',
1832 'civicrm_financial_item',
1833 'civicrm_contribution_recur',
1834 'civicrm_line_item',
1835 'civicrm_contribution_page',
1836 'civicrm_payment_processor',
1837 'civicrm_entity_financial_trxn',
1838 'civicrm_membership',
1839 'civicrm_membership_type',
1840 'civicrm_membership_payment',
1841 'civicrm_membership_log',
1842 'civicrm_membership_block',
1843 'civicrm_event',
1844 'civicrm_participant',
1845 'civicrm_participant_payment',
1846 'civicrm_pledge',
1847 'civicrm_pledge_block',
1848 'civicrm_pledge_payment',
1849 'civicrm_price_set_entity',
1850 'civicrm_price_field_value',
1851 'civicrm_price_field',
1852 ];
1853 $this->quickCleanup($tablesToTruncate);
1854 CRM_Core_DAO::executeQuery("DELETE FROM civicrm_membership_status WHERE name NOT IN('New', 'Current', 'Grace', 'Expired', 'Pending', 'Cancelled', 'Deceased')");
1855 $this->restoreDefaultPriceSetConfig();
1856 $this->disableTaxAndInvoicing();
1857 $this->setCurrencySeparators(',');
1858 CRM_Core_PseudoConstant::flush('taxRates');
1859 System::singleton()->flushProcessors();
1860 // @fixme this parameter is leaking - it should not be defined as a class static
1861 // but for now we just handle in tear down.
1862 CRM_Contribute_BAO_Query::$_contribOrSoftCredit = 'only contribs';
1863 }
1864
1865 /**
1866 * Reset the price set config so results exist.
1867 */
1868 public function restoreDefaultPriceSetConfig() {
1869 CRM_Core_DAO::executeQuery("DELETE FROM civicrm_price_set WHERE name NOT IN('default_contribution_amount', 'default_membership_type_amount')");
1870 CRM_Core_DAO::executeQuery("UPDATE civicrm_price_set SET id = 1 WHERE name ='default_contribution_amount'");
1871 CRM_Core_DAO::executeQuery("INSERT INTO `civicrm_price_field` (`id`, `price_set_id`, `name`, `label`, `html_type`, `is_enter_qty`, `help_pre`, `help_post`, `weight`, `is_display_amounts`, `options_per_line`, `is_active`, `is_required`, `active_on`, `expire_on`, `javascript`, `visibility_id`) VALUES (1, 1, 'contribution_amount', 'Contribution Amount', 'Text', 0, NULL, NULL, 1, 1, 1, 1, 1, NULL, NULL, NULL, 1)");
1872 CRM_Core_DAO::executeQuery("INSERT INTO `civicrm_price_field_value` (`id`, `price_field_id`, `name`, `label`, `description`, `amount`, `count`, `max_value`, `weight`, `membership_type_id`, `membership_num_terms`, `is_default`, `is_active`, `financial_type_id`, `non_deductible_amount`) VALUES (1, 1, 'contribution_amount', 'Contribution Amount', NULL, '1', NULL, NULL, 1, NULL, NULL, 0, 1, 1, 0.00)");
1873 }
1874
1875 /**
1876 * Recreate default membership types.
1877 */
1878 public function restoreMembershipTypes() {
1879 CRM_Core_DAO::executeQuery(
1880 "REPLACE INTO civicrm_membership_type
1881 (id, domain_id, name, description, member_of_contact_id, financial_type_id, minimum_fee, duration_unit, duration_interval, period_type, fixed_period_start_day, fixed_period_rollover_day, relationship_type_id, relationship_direction, visibility, weight, is_active)
1882 VALUES
1883 (1, 1, 'General', 'Regular annual membership.', 1, 2, 100.00, 'year', 2, 'rolling', NULL, NULL, 7, 'b_a', 'Public', 1, 1),
1884 (2, 1, 'Student', 'Discount membership for full-time students.', 1, 2, 50.00, 'year', 1, 'rolling', NULL, NULL, NULL, NULL, 'Public', 2, 1),
1885 (3, 1, 'Lifetime', 'Lifetime membership.', 1, 2, 1200.00, 'lifetime', 1, 'rolling', NULL, NULL, 7, 'b_a', 'Admin', 3, 1);
1886 ");
1887 }
1888
1889 /*
1890 * Function does a 'Get' on the entity & compares the fields in the Params with those returned
1891 * Default behaviour is to also delete the entity
1892 * @param array $params
1893 * Params array to check against.
1894 * @param int $id
1895 * Id of the entity concerned.
1896 * @param string $entity
1897 * Name of entity concerned (e.g. membership).
1898 * @param bool $delete
1899 * Should the entity be deleted as part of this check.
1900 * @param string $errorText
1901 * Text to print on error.
1902 */
1903
1904 /**
1905 * @param array $params
1906 * @param int $id
1907 * @param $entity
1908 * @param int $delete
1909 * @param string $errorText
1910 *
1911 * @throws CRM_Core_Exception
1912 */
1913 public function getAndCheck($params, $id, $entity, $delete = 1, $errorText = '') {
1914
1915 $result = $this->callAPISuccessGetSingle($entity, [
1916 'id' => $id,
1917 ]);
1918
1919 if ($delete) {
1920 $this->callAPISuccess($entity, 'Delete', [
1921 'id' => $id,
1922 ]);
1923 }
1924 $dateFields = $keys = $dateTimeFields = [];
1925 $fields = $this->callAPISuccess($entity, 'getfields', ['version' => 3, 'action' => 'get']);
1926 foreach ($fields['values'] as $field => $settings) {
1927 if (array_key_exists($field, $result)) {
1928 $keys[CRM_Utils_Array::value('name', $settings, $field)] = $field;
1929 }
1930 else {
1931 $keys[CRM_Utils_Array::value('name', $settings, $field)] = CRM_Utils_Array::value('name', $settings, $field);
1932 }
1933 $type = CRM_Utils_Array::value('type', $settings);
1934 if ($type == CRM_Utils_Type::T_DATE) {
1935 $dateFields[] = $settings['name'];
1936 // we should identify both real names & unique names as dates
1937 if ($field != $settings['name']) {
1938 $dateFields[] = $field;
1939 }
1940 }
1941 if ($type == CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME) {
1942 $dateTimeFields[] = $settings['name'];
1943 // we should identify both real names & unique names as dates
1944 if ($field != $settings['name']) {
1945 $dateTimeFields[] = $field;
1946 }
1947 }
1948 }
1949
1950 if (strtolower($entity) == 'contribution') {
1951 $params['receive_date'] = date('Y-m-d', strtotime($params['receive_date']));
1952 // this is not returned in id format
1953 unset($params['payment_instrument_id']);
1954 $params['contribution_source'] = $params['source'];
1955 unset($params['source']);
1956 }
1957
1958 foreach ($params as $key => $value) {
1959 if ($key == 'version' || substr($key, 0, 3) == 'api' || !array_key_exists($keys[$key], $result)) {
1960 continue;
1961 }
1962 if (in_array($key, $dateFields)) {
1963 $value = date('Y-m-d', strtotime($value));
1964 $result[$key] = date('Y-m-d', strtotime($result[$key]));
1965 }
1966 if (in_array($key, $dateTimeFields)) {
1967 $value = date('Y-m-d H:i:s', strtotime($value));
1968 $result[$keys[$key]] = date('Y-m-d H:i:s', strtotime(CRM_Utils_Array::value($keys[$key], $result, CRM_Utils_Array::value($key, $result))));
1969 }
1970 $this->assertEquals($value, $result[$keys[$key]], $key . " GetandCheck function determines that for key {$key} value: $value doesn't match " . print_r($result[$keys[$key]], TRUE) . $errorText);
1971 }
1972 }
1973
1974 /**
1975 * Get formatted values in the actual and expected result.
1976 *
1977 * @param array $actual
1978 * Actual calculated values.
1979 * @param array $expected
1980 * Expected values.
1981 */
1982 public function checkArrayEquals(&$actual, &$expected) {
1983 self::unsetId($actual);
1984 self::unsetId($expected);
1985 $this->assertEquals($expected, $actual);
1986 }
1987
1988 /**
1989 * Unset the key 'id' from the array
1990 *
1991 * @param array $unformattedArray
1992 * The array from which the 'id' has to be unset.
1993 */
1994 public static function unsetId(&$unformattedArray) {
1995 $formattedArray = [];
1996 if (array_key_exists('id', $unformattedArray)) {
1997 unset($unformattedArray['id']);
1998 }
1999 if (!empty($unformattedArray['values']) && is_array($unformattedArray['values'])) {
2000 foreach ($unformattedArray['values'] as $key => $value) {
2001 if (is_array($value)) {
2002 foreach ($value as $k => $v) {
2003 if ($k == 'id') {
2004 unset($value[$k]);
2005 }
2006 }
2007 }
2008 elseif ($key == 'id') {
2009 $unformattedArray[$key];
2010 }
2011 $formattedArray = [$value];
2012 }
2013 $unformattedArray['values'] = $formattedArray;
2014 }
2015 }
2016
2017 /**
2018 * Helper to enable/disable custom directory support
2019 *
2020 * @param array $customDirs
2021 * With members:.
2022 * 'php_path' Set to TRUE to use the default, FALSE or "" to disable support, or a string path to use another path
2023 * 'template_path' Set to TRUE to use the default, FALSE or "" to disable support, or a string path to use another path
2024 */
2025 public function customDirectories($customDirs) {
2026 $config = CRM_Core_Config::singleton();
2027
2028 if (empty($customDirs['php_path']) || $customDirs['php_path'] === FALSE) {
2029 unset($config->customPHPPathDir);
2030 }
2031 elseif ($customDirs['php_path'] === TRUE) {
2032 $config->customPHPPathDir = dirname(dirname(__FILE__)) . '/custom_directories/php/';
2033 }
2034 else {
2035 $config->customPHPPathDir = $php_path;
2036 }
2037
2038 if (empty($customDirs['template_path']) || $customDirs['template_path'] === FALSE) {
2039 unset($config->customTemplateDir);
2040 }
2041 elseif ($customDirs['template_path'] === TRUE) {
2042 $config->customTemplateDir = dirname(dirname(__FILE__)) . '/custom_directories/templates/';
2043 }
2044 else {
2045 $config->customTemplateDir = $template_path;
2046 }
2047 }
2048
2049 /**
2050 * Generate a temporary folder.
2051 *
2052 * @param string $prefix
2053 *
2054 * @return string
2055 */
2056 public function createTempDir($prefix = 'test-') {
2057 $tempDir = CRM_Utils_File::tempdir($prefix);
2058 $this->tempDirs[] = $tempDir;
2059 return $tempDir;
2060 }
2061
2062 public function cleanTempDirs() {
2063 if (!is_array($this->tempDirs)) {
2064 // fix test errors where this is not set
2065 return;
2066 }
2067 foreach ($this->tempDirs as $tempDir) {
2068 if (is_dir($tempDir)) {
2069 CRM_Utils_File::cleanDir($tempDir, TRUE, FALSE);
2070 }
2071 }
2072 }
2073
2074 /**
2075 * Temporarily replace the singleton extension with a different one.
2076 *
2077 * @param \CRM_Extension_System $system
2078 */
2079 public function setExtensionSystem(CRM_Extension_System $system) {
2080 if ($this->origExtensionSystem == NULL) {
2081 $this->origExtensionSystem = CRM_Extension_System::singleton();
2082 }
2083 CRM_Extension_System::setSingleton($this->origExtensionSystem);
2084 }
2085
2086 public function unsetExtensionSystem() {
2087 if ($this->origExtensionSystem !== NULL) {
2088 CRM_Extension_System::setSingleton($this->origExtensionSystem);
2089 $this->origExtensionSystem = NULL;
2090 }
2091 }
2092
2093 /**
2094 * Temporarily alter the settings-metadata to add a mock setting.
2095 *
2096 * WARNING: The setting metadata will disappear on the next cache-clear.
2097 *
2098 * @param $extras
2099 *
2100 * @return void
2101 */
2102 public function setMockSettingsMetaData($extras) {
2103 CRM_Utils_Hook::singleton()
2104 ->setHook('civicrm_alterSettingsMetaData', function (&$metadata, $domainId, $profile) use ($extras) {
2105 $metadata = array_merge($metadata, $extras);
2106 });
2107
2108 Civi::service('settings_manager')->flush();
2109
2110 $fields = $this->callAPISuccess('setting', 'getfields', []);
2111 foreach ($extras as $key => $spec) {
2112 $this->assertNotEmpty($spec['title']);
2113 $this->assertEquals($spec['title'], $fields['values'][$key]['title']);
2114 }
2115 }
2116
2117 /**
2118 * @param string $name
2119 */
2120 public function financialAccountDelete($name) {
2121 $financialAccount = new CRM_Financial_DAO_FinancialAccount();
2122 $financialAccount->name = $name;
2123 if ($financialAccount->find(TRUE)) {
2124 $entityFinancialType = new CRM_Financial_DAO_EntityFinancialAccount();
2125 $entityFinancialType->financial_account_id = $financialAccount->id;
2126 $entityFinancialType->delete();
2127 $financialAccount->delete();
2128 }
2129 }
2130
2131 /**
2132 * FIXME: something NULLs $GLOBALS['_HTML_QuickForm_registered_rules'] when the tests are ran all together
2133 * (NB unclear if this is still required)
2134 */
2135 public function _sethtmlGlobals() {
2136 $GLOBALS['_HTML_QuickForm_registered_rules'] = [
2137 'required' => [
2138 'html_quickform_rule_required',
2139 'HTML/QuickForm/Rule/Required.php',
2140 ],
2141 'maxlength' => [
2142 'html_quickform_rule_range',
2143 'HTML/QuickForm/Rule/Range.php',
2144 ],
2145 'minlength' => [
2146 'html_quickform_rule_range',
2147 'HTML/QuickForm/Rule/Range.php',
2148 ],
2149 'rangelength' => [
2150 'html_quickform_rule_range',
2151 'HTML/QuickForm/Rule/Range.php',
2152 ],
2153 'email' => [
2154 'html_quickform_rule_email',
2155 'HTML/QuickForm/Rule/Email.php',
2156 ],
2157 'regex' => [
2158 'html_quickform_rule_regex',
2159 'HTML/QuickForm/Rule/Regex.php',
2160 ],
2161 'lettersonly' => [
2162 'html_quickform_rule_regex',
2163 'HTML/QuickForm/Rule/Regex.php',
2164 ],
2165 'alphanumeric' => [
2166 'html_quickform_rule_regex',
2167 'HTML/QuickForm/Rule/Regex.php',
2168 ],
2169 'numeric' => [
2170 'html_quickform_rule_regex',
2171 'HTML/QuickForm/Rule/Regex.php',
2172 ],
2173 'nopunctuation' => [
2174 'html_quickform_rule_regex',
2175 'HTML/QuickForm/Rule/Regex.php',
2176 ],
2177 'nonzero' => [
2178 'html_quickform_rule_regex',
2179 'HTML/QuickForm/Rule/Regex.php',
2180 ],
2181 'callback' => [
2182 'html_quickform_rule_callback',
2183 'HTML/QuickForm/Rule/Callback.php',
2184 ],
2185 'compare' => [
2186 'html_quickform_rule_compare',
2187 'HTML/QuickForm/Rule/Compare.php',
2188 ],
2189 ];
2190 // FIXME: …ditto for $GLOBALS['HTML_QUICKFORM_ELEMENT_TYPES']
2191 $GLOBALS['HTML_QUICKFORM_ELEMENT_TYPES'] = [
2192 'group' => [
2193 'HTML/QuickForm/group.php',
2194 'HTML_QuickForm_group',
2195 ],
2196 'hidden' => [
2197 'HTML/QuickForm/hidden.php',
2198 'HTML_QuickForm_hidden',
2199 ],
2200 'reset' => [
2201 'HTML/QuickForm/reset.php',
2202 'HTML_QuickForm_reset',
2203 ],
2204 'checkbox' => [
2205 'HTML/QuickForm/checkbox.php',
2206 'HTML_QuickForm_checkbox',
2207 ],
2208 'file' => [
2209 'HTML/QuickForm/file.php',
2210 'HTML_QuickForm_file',
2211 ],
2212 'image' => [
2213 'HTML/QuickForm/image.php',
2214 'HTML_QuickForm_image',
2215 ],
2216 'password' => [
2217 'HTML/QuickForm/password.php',
2218 'HTML_QuickForm_password',
2219 ],
2220 'radio' => [
2221 'HTML/QuickForm/radio.php',
2222 'HTML_QuickForm_radio',
2223 ],
2224 'button' => [
2225 'HTML/QuickForm/button.php',
2226 'HTML_QuickForm_button',
2227 ],
2228 'submit' => [
2229 'HTML/QuickForm/submit.php',
2230 'HTML_QuickForm_submit',
2231 ],
2232 'select' => [
2233 'HTML/QuickForm/select.php',
2234 'HTML_QuickForm_select',
2235 ],
2236 'hiddenselect' => [
2237 'HTML/QuickForm/hiddenselect.php',
2238 'HTML_QuickForm_hiddenselect',
2239 ],
2240 'text' => [
2241 'HTML/QuickForm/text.php',
2242 'HTML_QuickForm_text',
2243 ],
2244 'textarea' => [
2245 'HTML/QuickForm/textarea.php',
2246 'HTML_QuickForm_textarea',
2247 ],
2248 'fckeditor' => [
2249 'HTML/QuickForm/fckeditor.php',
2250 'HTML_QuickForm_FCKEditor',
2251 ],
2252 'tinymce' => [
2253 'HTML/QuickForm/tinymce.php',
2254 'HTML_QuickForm_TinyMCE',
2255 ],
2256 'dojoeditor' => [
2257 'HTML/QuickForm/dojoeditor.php',
2258 'HTML_QuickForm_dojoeditor',
2259 ],
2260 'link' => [
2261 'HTML/QuickForm/link.php',
2262 'HTML_QuickForm_link',
2263 ],
2264 'advcheckbox' => [
2265 'HTML/QuickForm/advcheckbox.php',
2266 'HTML_QuickForm_advcheckbox',
2267 ],
2268 'date' => [
2269 'HTML/QuickForm/date.php',
2270 'HTML_QuickForm_date',
2271 ],
2272 'static' => [
2273 'HTML/QuickForm/static.php',
2274 'HTML_QuickForm_static',
2275 ],
2276 'header' => [
2277 'HTML/QuickForm/header.php',
2278 'HTML_QuickForm_header',
2279 ],
2280 'html' => [
2281 'HTML/QuickForm/html.php',
2282 'HTML_QuickForm_html',
2283 ],
2284 'hierselect' => [
2285 'HTML/QuickForm/hierselect.php',
2286 'HTML_QuickForm_hierselect',
2287 ],
2288 'autocomplete' => [
2289 'HTML/QuickForm/autocomplete.php',
2290 'HTML_QuickForm_autocomplete',
2291 ],
2292 'xbutton' => [
2293 'HTML/QuickForm/xbutton.php',
2294 'HTML_QuickForm_xbutton',
2295 ],
2296 'advmultiselect' => [
2297 'HTML/QuickForm/advmultiselect.php',
2298 'HTML_QuickForm_advmultiselect',
2299 ],
2300 ];
2301 }
2302
2303 /**
2304 * Set up an acl allowing contact to see 2 specified groups
2305 * - $this->_permissionedGroup & $this->_permissionedDisabledGroup
2306 *
2307 * You need to have pre-created these groups & created the user e.g
2308 * $this->createLoggedInUser();
2309 * $this->_permissionedDisabledGroup = $this->groupCreate(array('title' => 'pick-me-disabled', 'is_active' => 0, 'name' => 'pick-me-disabled'));
2310 * $this->_permissionedGroup = $this->groupCreate(array('title' => 'pick-me-active', 'is_active' => 1, 'name' => 'pick-me-active'));
2311 *
2312 * @param bool $isProfile
2313 */
2314 public function setupACL($isProfile = FALSE) {
2315 global $_REQUEST;
2316 $_REQUEST = $this->_params;
2317
2318 CRM_Core_Config::singleton()->userPermissionClass->permissions = ['access CiviCRM'];
2319 $optionGroupID = $this->callAPISuccessGetValue('option_group', ['return' => 'id', 'name' => 'acl_role']);
2320 $ov = new CRM_Core_DAO_OptionValue();
2321 $ov->option_group_id = $optionGroupID;
2322 $ov->value = 55;
2323 if ($ov->find(TRUE)) {
2324 CRM_Core_DAO::executeQuery("DELETE FROM civicrm_option_value WHERE id = {$ov->id}");
2325 }
2326 $optionValue = $this->callAPISuccess('option_value', 'create', [
2327 'option_group_id' => $optionGroupID,
2328 'label' => 'pick me',
2329 'value' => 55,
2330 ]);
2331
2332 CRM_Core_DAO::executeQuery("
2333 TRUNCATE civicrm_acl_cache
2334 ");
2335
2336 CRM_Core_DAO::executeQuery("
2337 TRUNCATE civicrm_acl_contact_cache
2338 ");
2339
2340 CRM_Core_DAO::executeQuery("
2341 INSERT INTO civicrm_acl_entity_role (
2342 `acl_role_id`, `entity_table`, `entity_id`, `is_active`
2343 ) VALUES (55, 'civicrm_group', {$this->_permissionedGroup}, 1);
2344 ");
2345
2346 if ($isProfile) {
2347 CRM_Core_DAO::executeQuery("
2348 INSERT INTO civicrm_acl (
2349 `name`, `entity_table`, `entity_id`, `operation`, `object_table`, `object_id`, `is_active`
2350 )
2351 VALUES (
2352 'view picked', 'civicrm_acl_role', 55, 'Edit', 'civicrm_uf_group', 0, 1
2353 );
2354 ");
2355 }
2356 else {
2357 CRM_Core_DAO::executeQuery("
2358 INSERT INTO civicrm_acl (
2359 `name`, `entity_table`, `entity_id`, `operation`, `object_table`, `object_id`, `is_active`
2360 )
2361 VALUES (
2362 'view picked', 'civicrm_group', $this->_permissionedGroup , 'Edit', 'civicrm_saved_search', {$this->_permissionedGroup}, 1
2363 );
2364 ");
2365
2366 CRM_Core_DAO::executeQuery("
2367 INSERT INTO civicrm_acl (
2368 `name`, `entity_table`, `entity_id`, `operation`, `object_table`, `object_id`, `is_active`
2369 )
2370 VALUES (
2371 'view picked', 'civicrm_group', $this->_permissionedGroup, 'Edit', 'civicrm_saved_search', {$this->_permissionedDisabledGroup}, 1
2372 );
2373 ");
2374 }
2375
2376 $this->_loggedInUser = CRM_Core_Session::singleton()->get('userID');
2377 $this->callAPISuccess('group_contact', 'create', [
2378 'group_id' => $this->_permissionedGroup,
2379 'contact_id' => $this->_loggedInUser,
2380 ]);
2381
2382 if (!$isProfile) {
2383 //flush cache
2384 CRM_ACL_BAO_Cache::resetCache();
2385 CRM_ACL_API::groupPermission('whatever', 9999, NULL, 'civicrm_saved_search', NULL, NULL);
2386 }
2387 }
2388
2389 /**
2390 * Alter default price set so that the field numbers are not all 1 (hiding errors)
2391 */
2392 public function offsetDefaultPriceSet() {
2393 $contributionPriceSet = $this->callAPISuccess('price_set', 'getsingle', ['name' => 'default_contribution_amount']);
2394 $firstID = $contributionPriceSet['id'];
2395 $this->callAPISuccess('price_set', 'create', [
2396 'id' => $contributionPriceSet['id'],
2397 'is_active' => 0,
2398 'name' => 'old',
2399 ]);
2400 unset($contributionPriceSet['id']);
2401 $newPriceSet = $this->callAPISuccess('price_set', 'create', $contributionPriceSet);
2402 $priceField = $this->callAPISuccess('price_field', 'getsingle', [
2403 'price_set_id' => $firstID,
2404 'options' => ['limit' => 1],
2405 ]);
2406 unset($priceField['id']);
2407 $priceField['price_set_id'] = $newPriceSet['id'];
2408 $newPriceField = $this->callAPISuccess('price_field', 'create', $priceField);
2409 $priceFieldValue = $this->callAPISuccess('price_field_value', 'getsingle', [
2410 'price_set_id' => $firstID,
2411 'sequential' => 1,
2412 'options' => ['limit' => 1],
2413 ]);
2414
2415 unset($priceFieldValue['id']);
2416 //create some padding to use up ids
2417 $this->callAPISuccess('price_field_value', 'create', $priceFieldValue);
2418 $this->callAPISuccess('price_field_value', 'create', $priceFieldValue);
2419 $this->callAPISuccess('price_field_value', 'create', array_merge($priceFieldValue, ['price_field_id' => $newPriceField['id']]));
2420 }
2421
2422 /**
2423 * Create an instance of the paypal processor.
2424 *
2425 * @todo this isn't a great place to put it - but really it belongs on a class that extends
2426 * this parent class & we don't have a structure for that yet
2427 * There is another function to this effect on the PaypalPro test but it appears to be silently failing
2428 * & the best protection against that is the functions this class affords
2429 *
2430 * @param array $params
2431 *
2432 * @return int $result['id'] payment processor id
2433 */
2434 public function paymentProcessorCreate($params = []) {
2435 $params = array_merge([
2436 'name' => 'demo',
2437 'domain_id' => CRM_Core_Config::domainID(),
2438 'payment_processor_type_id' => 'PayPal',
2439 'is_active' => 1,
2440 'is_default' => 0,
2441 'is_test' => 1,
2442 'user_name' => 'sunil._1183377782_biz_api1.webaccess.co.in',
2443 'password' => '1183377788',
2444 'signature' => 'APixCoQ-Zsaj-u3IH7mD5Do-7HUqA9loGnLSzsZga9Zr-aNmaJa3WGPH',
2445 'url_site' => 'https://www.sandbox.paypal.com/',
2446 'url_api' => 'https://api-3t.sandbox.paypal.com/',
2447 'url_button' => 'https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif',
2448 'class_name' => 'Payment_PayPalImpl',
2449 'billing_mode' => 3,
2450 'financial_type_id' => 1,
2451 'financial_account_id' => 12,
2452 // Credit card = 1 so can pass 'by accident'.
2453 'payment_instrument_id' => 'Debit Card',
2454 ], $params);
2455 if (!is_numeric($params['payment_processor_type_id'])) {
2456 // really the api should handle this through getoptions but it's not exactly api call so lets just sort it
2457 //here
2458 $params['payment_processor_type_id'] = $this->callAPISuccess('payment_processor_type', 'getvalue', [
2459 'name' => $params['payment_processor_type_id'],
2460 'return' => 'id',
2461 ], 'integer');
2462 }
2463 $result = $this->callAPISuccess('payment_processor', 'create', $params);
2464 return $result['id'];
2465 }
2466
2467 /**
2468 * Set up initial recurring payment allowing subsequent IPN payments.
2469 *
2470 * @param array $recurParams (Optional)
2471 * @param array $contributionParams (Optional)
2472 *
2473 * @throws \CRM_Core_Exception
2474 */
2475 public function setupRecurringPaymentProcessorTransaction($recurParams = [], $contributionParams = []) {
2476 $contributionParams = array_merge([
2477 'total_amount' => '200',
2478 'invoice_id' => $this->_invoiceID,
2479 'financial_type_id' => 'Donation',
2480 'contribution_status_id' => 'Pending',
2481 'contact_id' => $this->_contactID,
2482 'contribution_page_id' => $this->_contributionPageID,
2483 'payment_processor_id' => $this->_paymentProcessorID,
2484 'is_test' => 0,
2485 'receive_date' => '2019-07-25 07:34:23',
2486 'skipCleanMoney' => TRUE,
2487 ], $contributionParams);
2488 $contributionRecur = $this->callAPISuccess('contribution_recur', 'create', array_merge([
2489 'contact_id' => $this->_contactID,
2490 'amount' => 1000,
2491 'sequential' => 1,
2492 'installments' => 5,
2493 'frequency_unit' => 'Month',
2494 'frequency_interval' => 1,
2495 'invoice_id' => $this->_invoiceID,
2496 'contribution_status_id' => 2,
2497 'payment_processor_id' => $this->_paymentProcessorID,
2498 // processor provided ID - use contact ID as proxy.
2499 'processor_id' => $this->_contactID,
2500 'api.Order.create' => $contributionParams,
2501 ], $recurParams))['values'][0];
2502 $this->_contributionRecurID = $contributionRecur['id'];
2503 $this->_contributionID = $contributionRecur['api.Order.create']['id'];
2504 $this->ids['Contribution'][0] = $this->_contributionID;
2505 }
2506
2507 /**
2508 * We don't have a good way to set up a recurring contribution with a membership so let's just do one then alter it
2509 *
2510 * @param array $params Optionally modify params for membership/recur (duration_unit/frequency_unit)
2511 *
2512 * @throws \CRM_Core_Exception
2513 */
2514 public function setupMembershipRecurringPaymentProcessorTransaction($params = []) {
2515 $membershipParams = $recurParams = [];
2516 if (!empty($params['duration_unit'])) {
2517 $membershipParams['duration_unit'] = $params['duration_unit'];
2518 }
2519 if (!empty($params['frequency_unit'])) {
2520 $recurParams['frequency_unit'] = $params['frequency_unit'];
2521 }
2522
2523 $this->ids['membership_type'] = $this->membershipTypeCreate($membershipParams);
2524 //create a contribution so our membership & contribution don't both have id = 1
2525 if ($this->callAPISuccess('Contribution', 'getcount', []) === 0) {
2526 $this->contributionCreate([
2527 'contact_id' => $this->_contactID,
2528 'is_test' => 1,
2529 'financial_type_id' => 1,
2530 'invoice_id' => 'abcd',
2531 'trxn_id' => 345,
2532 'receive_date' => '2019-07-25 07:34:23',
2533 ]);
2534 }
2535
2536 $this->ids['membership'] = $this->callAPISuccess('Membership', 'create', [
2537 'contact_id' => $this->_contactID,
2538 'membership_type_id' => $this->ids['membership_type'],
2539 'format.only_id' => TRUE,
2540 'source' => 'Payment',
2541 'skipLineItem' => TRUE,
2542 ]);
2543 $this->setupRecurringPaymentProcessorTransaction($recurParams, [
2544 'line_items' => [
2545 [
2546 'line_item' => [
2547 [
2548 'entity_table' => 'civicrm_membership',
2549 'entity_id' => $this->ids['membership'],
2550 'label' => 'General',
2551 'qty' => 1,
2552 'unit_price' => 200,
2553 'line_total' => 200,
2554 'financial_type_id' => 1,
2555 'price_field_id' => $this->callAPISuccess('price_field', 'getvalue', [
2556 'return' => 'id',
2557 'label' => 'Membership Amount',
2558 'options' => ['limit' => 1, 'sort' => 'id DESC'],
2559 ]),
2560 'price_field_value_id' => $this->callAPISuccess('price_field_value', 'getvalue', [
2561 'return' => 'id',
2562 'label' => 'General',
2563 'options' => ['limit' => 1, 'sort' => 'id DESC'],
2564 ]),
2565 ],
2566 ],
2567 ],
2568 ],
2569 ]);
2570 $this->callAPISuccess('Membership', 'create', ['id' => $this->ids['membership'], 'contribution_recur_id' => $this->_contributionRecurID]);
2571 }
2572
2573 /**
2574 * @param $message
2575 *
2576 * @throws Exception
2577 */
2578 public function CiviUnitTestCase_fatalErrorHandler($message) {
2579 throw new Exception("{$message['message']}: {$message['code']}");
2580 }
2581
2582 /**
2583 * Wrap the entire test case in a transaction.
2584 *
2585 * Only subsequent DB statements will be wrapped in TX -- this cannot
2586 * retroactively wrap old DB statements. Therefore, it makes sense to
2587 * call this at the beginning of setUp().
2588 *
2589 * Note: Recall that TRUNCATE and ALTER will force-commit transactions, so
2590 * this option does not work with, e.g., custom-data.
2591 *
2592 * WISHLIST: Monitor SQL queries in unit-tests and generate an exception
2593 * if TRUNCATE or ALTER is called while using a transaction.
2594 *
2595 * @param bool $nest
2596 * Whether to use nesting or reference-counting.
2597 */
2598 public function useTransaction($nest = TRUE) {
2599 if (!$this->tx) {
2600 $this->tx = new CRM_Core_Transaction($nest);
2601 $this->tx->rollback();
2602 }
2603 }
2604
2605 /**
2606 * Assert the attachment exists.
2607 *
2608 * @param bool $exists
2609 * @param array $apiResult
2610 */
2611 protected function assertAttachmentExistence($exists, $apiResult) {
2612 $fileId = $apiResult['id'];
2613 $this->assertTrue(is_numeric($fileId));
2614 $this->assertEquals($exists, file_exists($apiResult['values'][$fileId]['path']));
2615 $this->assertDBQuery($exists ? 1 : 0, 'SELECT count(*) FROM civicrm_file WHERE id = %1', [
2616 1 => [$fileId, 'Int'],
2617 ]);
2618 $this->assertDBQuery($exists ? 1 : 0, 'SELECT count(*) FROM civicrm_entity_file WHERE id = %1', [
2619 1 => [$fileId, 'Int'],
2620 ]);
2621 }
2622
2623 /**
2624 * Assert 2 sql strings are the same, ignoring double spaces.
2625 *
2626 * @param string $expectedSQL
2627 * @param string $actualSQL
2628 * @param string $message
2629 */
2630 protected function assertLike($expectedSQL, $actualSQL, $message = 'different sql') {
2631 $expected = trim((preg_replace('/[ \r\n\t]+/', ' ', $expectedSQL)));
2632 $actual = trim((preg_replace('/[ \r\n\t]+/', ' ', $actualSQL)));
2633 $this->assertEquals($expected, $actual, $message);
2634 }
2635
2636 /**
2637 * Create a price set for an event.
2638 *
2639 * @param int $feeTotal
2640 * @param int $minAmt
2641 * @param string $type
2642 *
2643 * @param array $options
2644 *
2645 * @return int
2646 * Price Set ID.
2647 * @throws \CRM_Core_Exception
2648 */
2649 protected function eventPriceSetCreate($feeTotal, $minAmt = 0, $type = 'Text', $options = [['name' => 'hundy', 'amount' => 100]]) {
2650 // creating price set, price field
2651 $paramsSet['title'] = 'Price Set';
2652 $paramsSet['name'] = CRM_Utils_String::titleToVar('Price Set');
2653 $paramsSet['is_active'] = FALSE;
2654 $paramsSet['extends'] = 1;
2655 $paramsSet['min_amount'] = $minAmt;
2656
2657 $priceSet = CRM_Price_BAO_PriceSet::create($paramsSet);
2658 $this->_ids['price_set'] = $priceSet->id;
2659
2660 $paramsField = [
2661 'label' => 'Price Field',
2662 'name' => CRM_Utils_String::titleToVar('Price Field'),
2663 'html_type' => $type,
2664 'price' => $feeTotal,
2665 'option_label' => ['1' => 'Price Field'],
2666 'option_value' => ['1' => $feeTotal],
2667 'option_name' => ['1' => $feeTotal],
2668 'option_weight' => ['1' => 1],
2669 'option_amount' => ['1' => 1],
2670 'is_display_amounts' => 1,
2671 'weight' => 1,
2672 'options_per_line' => 1,
2673 'is_active' => ['1' => 1],
2674 'price_set_id' => $this->_ids['price_set'],
2675 'is_enter_qty' => 1,
2676 'financial_type_id' => $this->getFinancialTypeId('Event Fee'),
2677 ];
2678 if ($type === 'Radio') {
2679 foreach ($options as $index => $option) {
2680 $paramsField['is_enter_qty'] = 0;
2681 $optionID = $index + 2;
2682 $paramsField['option_value'][$optionID] = $paramsField['option_weight'][$optionID] = $paramsField['option_amount'][$optionID] = $option['amount'];
2683 $paramsField['option_label'][$optionID] = $paramsField['option_name'][$optionID] = $option['name'];
2684 }
2685
2686 }
2687 $this->callAPISuccess('PriceField', 'create', $paramsField);
2688 $fields = $this->callAPISuccess('PriceField', 'get', ['price_set_id' => $this->_ids['price_set']]);
2689 $this->_ids['price_field'] = array_keys($fields['values']);
2690 $fieldValues = $this->callAPISuccess('PriceFieldValue', 'get', ['price_field_id' => $this->_ids['price_field'][0]]);
2691 $this->_ids['price_field_value'] = array_keys($fieldValues['values']);
2692
2693 return $this->_ids['price_set'];
2694 }
2695
2696 /**
2697 * Add a profile to a contribution page.
2698 *
2699 * @param string $name
2700 * @param int $contributionPageID
2701 * @param string $module
2702 */
2703 protected function addProfile($name, $contributionPageID, $module = 'CiviContribute') {
2704 $params = [
2705 'uf_group_id' => $name,
2706 'module' => $module,
2707 'entity_table' => 'civicrm_contribution_page',
2708 'entity_id' => $contributionPageID,
2709 'weight' => 1,
2710 ];
2711 if ($module !== 'CiviContribute') {
2712 $params['module_data'] = [$module => []];
2713 }
2714 $this->callAPISuccess('UFJoin', 'create', $params);
2715 }
2716
2717 /**
2718 * Add participant with contribution
2719 *
2720 * @return array
2721 *
2722 * @throws \CRM_Core_Exception
2723 */
2724 protected function createPartiallyPaidParticipantOrder() {
2725 $orderParams = $this->getParticipantOrderParams();
2726 $orderParams['api.Payment.create'] = ['total_amount' => 150];
2727 return $this->callAPISuccess('Order', 'create', $orderParams);
2728 }
2729
2730 /**
2731 * Create price set
2732 *
2733 * @param string $component
2734 * @param int $componentId
2735 * @param array $priceFieldOptions
2736 *
2737 * @return array
2738 */
2739 protected function createPriceSet($component = 'contribution_page', $componentId = NULL, $priceFieldOptions = []) {
2740 $paramsSet['title'] = 'Price Set' . substr(sha1(rand()), 0, 7);
2741 $paramsSet['name'] = CRM_Utils_String::titleToVar($paramsSet['title']);
2742 $paramsSet['is_active'] = TRUE;
2743 $paramsSet['financial_type_id'] = 'Event Fee';
2744 $paramsSet['extends'] = 1;
2745 $priceSet = $this->callAPISuccess('price_set', 'create', $paramsSet);
2746 $priceSetId = $priceSet['id'];
2747 //Checking for priceset added in the table.
2748 $this->assertDBCompareValue('CRM_Price_BAO_PriceSet', $priceSetId, 'title',
2749 'id', $paramsSet['title'], 'Check DB for created priceset'
2750 );
2751 $paramsField = array_merge([
2752 'label' => 'Price Field',
2753 'name' => CRM_Utils_String::titleToVar('Price Field'),
2754 'html_type' => 'CheckBox',
2755 'option_label' => ['1' => 'Price Field 1', '2' => 'Price Field 2'],
2756 'option_value' => ['1' => 100, '2' => 200],
2757 'option_name' => ['1' => 'Price Field 1', '2' => 'Price Field 2'],
2758 'option_weight' => ['1' => 1, '2' => 2],
2759 'option_amount' => ['1' => 100, '2' => 200],
2760 'is_display_amounts' => 1,
2761 'weight' => 1,
2762 'options_per_line' => 1,
2763 'is_active' => ['1' => 1, '2' => 1],
2764 'price_set_id' => $priceSet['id'],
2765 'is_enter_qty' => 1,
2766 'financial_type_id' => $this->getFinancialTypeId('Event Fee'),
2767 ], $priceFieldOptions);
2768
2769 $priceField = CRM_Price_BAO_PriceField::create($paramsField);
2770 if ($componentId) {
2771 CRM_Price_BAO_PriceSet::addTo('civicrm_' . $component, $componentId, $priceSetId);
2772 }
2773 return $this->callAPISuccess('PriceFieldValue', 'get', ['price_field_id' => $priceField->id]);
2774 }
2775
2776 /**
2777 * Replace the template with a test-oriented template designed to show all the variables.
2778 *
2779 * @param string $templateName
2780 * @param string $type
2781 */
2782 protected function swapMessageTemplateForTestTemplate($templateName = 'contribution_online_receipt', $type = 'html') {
2783 $testTemplate = file_get_contents(__DIR__ . '/../../templates/message_templates/' . $templateName . '_' . $type . '.tpl');
2784 CRM_Core_DAO::executeQuery(
2785 "UPDATE civicrm_option_group og
2786 LEFT JOIN civicrm_option_value ov ON ov.option_group_id = og.id
2787 LEFT JOIN civicrm_msg_template m ON m.workflow_id = ov.id
2788 SET m.msg_{$type} = %1
2789 WHERE og.name LIKE 'msg_tpl_workflow_%'
2790 AND ov.name = '{$templateName}'
2791 AND m.is_default = 1", [1 => [$testTemplate, 'String']]
2792 );
2793 }
2794
2795 /**
2796 * Reinstate the default template.
2797 *
2798 * @param string $templateName
2799 * @param string $type
2800 */
2801 protected function revertTemplateToReservedTemplate($templateName = 'contribution_online_receipt', $type = 'html') {
2802 CRM_Core_DAO::executeQuery(
2803 "UPDATE civicrm_option_group og
2804 LEFT JOIN civicrm_option_value ov ON ov.option_group_id = og.id
2805 LEFT JOIN civicrm_msg_template m ON m.workflow_id = ov.id
2806 LEFT JOIN civicrm_msg_template m2 ON m2.workflow_id = ov.id AND m2.is_reserved = 1
2807 SET m.msg_{$type} = m2.msg_{$type}
2808 WHERE og.name = 'msg_tpl_workflow_contribution'
2809 AND ov.name = '{$templateName}'
2810 AND m.is_default = 1"
2811 );
2812 }
2813
2814 /**
2815 * Flush statics relating to financial type.
2816 */
2817 protected function flushFinancialTypeStatics() {
2818 if (isset(\Civi::$statics['CRM_Financial_BAO_FinancialType'])) {
2819 unset(\Civi::$statics['CRM_Financial_BAO_FinancialType']);
2820 }
2821 if (isset(\Civi::$statics['CRM_Contribute_PseudoConstant'])) {
2822 unset(\Civi::$statics['CRM_Contribute_PseudoConstant']);
2823 }
2824 CRM_Contribute_PseudoConstant::flush('financialType');
2825 CRM_Contribute_PseudoConstant::flush('membershipType');
2826 // Pseudoconstants may be saved to the cache table.
2827 CRM_Core_DAO::executeQuery("TRUNCATE civicrm_cache");
2828 CRM_Financial_BAO_FinancialType::$_statusACLFt = [];
2829 CRM_Financial_BAO_FinancialType::$_availableFinancialTypes = NULL;
2830 }
2831
2832 /**
2833 * Set the permissions to the supplied array.
2834 *
2835 * @param array $permissions
2836 */
2837 protected function setPermissions($permissions) {
2838 CRM_Core_Config::singleton()->userPermissionClass->permissions = $permissions;
2839 $this->flushFinancialTypeStatics();
2840 }
2841
2842 /**
2843 * @param array $params
2844 * @param $context
2845 */
2846 public function _checkFinancialRecords($params, $context) {
2847 $entityParams = [
2848 'entity_id' => $params['id'],
2849 'entity_table' => 'civicrm_contribution',
2850 ];
2851 $contribution = $this->callAPISuccess('contribution', 'getsingle', ['id' => $params['id']]);
2852 $this->assertEquals($contribution['total_amount'] - $contribution['fee_amount'], $contribution['net_amount']);
2853 if ($context == 'pending') {
2854 $trxn = CRM_Financial_BAO_FinancialItem::retrieveEntityFinancialTrxn($entityParams);
2855 $this->assertNull($trxn, 'No Trxn to be created until IPN callback');
2856 return;
2857 }
2858 $trxn = current(CRM_Financial_BAO_FinancialItem::retrieveEntityFinancialTrxn($entityParams));
2859 $trxnParams = [
2860 'id' => $trxn['financial_trxn_id'],
2861 ];
2862 if ($context != 'online' && $context != 'payLater') {
2863 $compareParams = [
2864 'to_financial_account_id' => 6,
2865 'total_amount' => CRM_Utils_Array::value('total_amount', $params, 100),
2866 'status_id' => 1,
2867 ];
2868 }
2869 if ($context == 'feeAmount') {
2870 $compareParams['fee_amount'] = 50;
2871 }
2872 elseif ($context == 'online') {
2873 $compareParams = [
2874 'to_financial_account_id' => 12,
2875 'total_amount' => CRM_Utils_Array::value('total_amount', $params, 100),
2876 'status_id' => 1,
2877 'payment_instrument_id' => CRM_Utils_Array::value('payment_instrument_id', $params, 1),
2878 ];
2879 }
2880 elseif ($context == 'payLater') {
2881 $compareParams = [
2882 'to_financial_account_id' => 7,
2883 'total_amount' => CRM_Utils_Array::value('total_amount', $params, 100),
2884 'status_id' => 2,
2885 ];
2886 }
2887 $this->assertDBCompareValues('CRM_Financial_DAO_FinancialTrxn', $trxnParams, $compareParams);
2888 $entityParams = [
2889 'financial_trxn_id' => $trxn['financial_trxn_id'],
2890 'entity_table' => 'civicrm_financial_item',
2891 ];
2892 $entityTrxn = current(CRM_Financial_BAO_FinancialItem::retrieveEntityFinancialTrxn($entityParams));
2893 $fitemParams = [
2894 'id' => $entityTrxn['entity_id'],
2895 ];
2896 $compareParams = [
2897 'amount' => CRM_Utils_Array::value('total_amount', $params, 100),
2898 'status_id' => 1,
2899 'financial_account_id' => CRM_Utils_Array::value('financial_account_id', $params, 1),
2900 ];
2901 if ($context == 'payLater') {
2902 $compareParams = [
2903 'amount' => CRM_Utils_Array::value('total_amount', $params, 100),
2904 'status_id' => 3,
2905 'financial_account_id' => CRM_Utils_Array::value('financial_account_id', $params, 1),
2906 ];
2907 }
2908 $this->assertDBCompareValues('CRM_Financial_DAO_FinancialItem', $fitemParams, $compareParams);
2909 if ($context == 'feeAmount') {
2910 $maxParams = [
2911 'entity_id' => $params['id'],
2912 'entity_table' => 'civicrm_contribution',
2913 ];
2914 $maxTrxn = current(CRM_Financial_BAO_FinancialItem::retrieveEntityFinancialTrxn($maxParams, TRUE));
2915 $trxnParams = [
2916 'id' => $maxTrxn['financial_trxn_id'],
2917 ];
2918 $compareParams = [
2919 'to_financial_account_id' => 5,
2920 'from_financial_account_id' => 6,
2921 'total_amount' => 50,
2922 'status_id' => 1,
2923 ];
2924 $trxnId = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($params['id'], 'DESC');
2925 $this->assertDBCompareValues('CRM_Financial_DAO_FinancialTrxn', $trxnParams, $compareParams);
2926 $fitemParams = [
2927 'entity_id' => $trxnId['financialTrxnId'],
2928 'entity_table' => 'civicrm_financial_trxn',
2929 ];
2930 $compareParams = [
2931 'amount' => 50,
2932 'status_id' => 1,
2933 'financial_account_id' => 5,
2934 ];
2935 $this->assertDBCompareValues('CRM_Financial_DAO_FinancialItem', $fitemParams, $compareParams);
2936 }
2937 // This checks that empty Sales tax rows are not being created. If for any reason it needs to be removed the
2938 // line should be copied into all the functions that call this function & evaluated there
2939 // Be really careful not to remove or bypass this without ensuring stray rows do not re-appear
2940 // when calling completeTransaction or repeatTransaction.
2941 $this->callAPISuccessGetCount('FinancialItem', ['description' => 'Sales Tax', 'amount' => 0], 0);
2942 }
2943
2944 /**
2945 * Return financial type id on basis of name
2946 *
2947 * @param string $name Financial type m/c name
2948 *
2949 * @return int
2950 */
2951 public function getFinancialTypeId($name) {
2952 return CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialType', $name, 'id', 'name');
2953 }
2954
2955 /**
2956 * Cleanup function for contents of $this->ids.
2957 *
2958 * This is a best effort cleanup to use in tear downs etc.
2959 *
2960 * It will not fail if the data has already been removed (some tests may do
2961 * their own cleanup).
2962 */
2963 protected function cleanUpSetUpIDs() {
2964 foreach ($this->setupIDs as $entity => $id) {
2965 try {
2966 civicrm_api3($entity, 'delete', ['id' => $id, 'skip_undelete' => 1]);
2967 }
2968 catch (CiviCRM_API3_Exception $e) {
2969 // This is a best-effort cleanup function, ignore.
2970 }
2971 }
2972 }
2973
2974 /**
2975 * Create Financial Type.
2976 *
2977 * @param array $params
2978 *
2979 * @return array
2980 */
2981 protected function createFinancialType($params = []) {
2982 $params = array_merge($params,
2983 [
2984 'name' => 'Financial-Type -' . substr(sha1(rand()), 0, 7),
2985 'is_active' => 1,
2986 ]
2987 );
2988 return $this->callAPISuccess('FinancialType', 'create', $params);
2989 }
2990
2991 /**
2992 * Create Payment Instrument.
2993 *
2994 * @param array $params
2995 * @param string $financialAccountName
2996 *
2997 * @return int
2998 */
2999 protected function createPaymentInstrument($params = [], $financialAccountName = 'Donation') {
3000 $params = array_merge([
3001 'label' => 'Payment Instrument -' . substr(sha1(rand()), 0, 7),
3002 'option_group_id' => 'payment_instrument',
3003 'is_active' => 1,
3004 ], $params);
3005 $newPaymentInstrument = $this->callAPISuccess('OptionValue', 'create', $params)['id'];
3006
3007 $relationTypeID = key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Asset Account is' "));
3008
3009 $financialAccountParams = [
3010 'entity_table' => 'civicrm_option_value',
3011 'entity_id' => $newPaymentInstrument,
3012 'account_relationship' => $relationTypeID,
3013 'financial_account_id' => $this->callAPISuccess('FinancialAccount', 'getValue', ['name' => $financialAccountName, 'return' => 'id']),
3014 ];
3015 CRM_Financial_BAO_FinancialTypeAccount::add($financialAccountParams);
3016
3017 return CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'payment_instrument_id', $params['label']);
3018 }
3019
3020 /**
3021 * Enable Tax and Invoicing
3022 *
3023 * @param array $params
3024 *
3025 * @return \Civi\Core\SettingsBag
3026 */
3027 protected function enableTaxAndInvoicing($params = []) {
3028 // Enable component contribute setting
3029 $contributeSetting = array_merge($params,
3030 [
3031 'invoicing' => 1,
3032 'invoice_prefix' => 'INV_',
3033 'due_date' => 10,
3034 'due_date_period' => 'days',
3035 'notes' => '',
3036 'is_email_pdf' => 1,
3037 'tax_term' => 'Sales Tax',
3038 'tax_display_settings' => 'Inclusive',
3039 ]
3040 );
3041 return Civi::settings()->set('contribution_invoice_settings', $contributeSetting);
3042 }
3043
3044 /**
3045 * Enable Tax and Invoicing
3046 */
3047 protected function disableTaxAndInvoicing($params = []) {
3048 if (!empty(\Civi::$statics['CRM_Core_PseudoConstant']) && isset(\Civi::$statics['CRM_Core_PseudoConstant']['taxRates'])) {
3049 unset(\Civi::$statics['CRM_Core_PseudoConstant']['taxRates']);
3050 }
3051 // Enable component contribute setting
3052 $contributeSetting = array_merge($params,
3053 [
3054 'invoicing' => 0,
3055 ]
3056 );
3057 return Civi::settings()->set('contribution_invoice_settings', $contributeSetting);
3058 }
3059
3060 /**
3061 * Add Sales Tax relation for financial type with financial account.
3062 *
3063 * @param int $financialTypeId
3064 *
3065 * @return obj
3066 */
3067 protected function relationForFinancialTypeWithFinancialAccount($financialTypeId) {
3068 $params = [
3069 'name' => 'Sales tax account ' . substr(sha1(rand()), 0, 4),
3070 'financial_account_type_id' => key(CRM_Core_PseudoConstant::accountOptionValues('financial_account_type', NULL, " AND v.name LIKE 'Liability' ")),
3071 'is_deductible' => 1,
3072 'is_tax' => 1,
3073 'tax_rate' => 10,
3074 'is_active' => 1,
3075 ];
3076 $account = CRM_Financial_BAO_FinancialAccount::add($params);
3077 $entityParams = [
3078 'entity_table' => 'civicrm_financial_type',
3079 'entity_id' => $financialTypeId,
3080 'account_relationship' => key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Sales Tax Account is' ")),
3081 ];
3082
3083 // set tax rate (as 10) for provided financial type ID to static variable, later used to fetch tax rates of all financial types
3084 \Civi::$statics['CRM_Core_PseudoConstant']['taxRates'][$financialTypeId] = 10;
3085
3086 //CRM-20313: As per unique index added in civicrm_entity_financial_account table,
3087 // first check if there's any record on basis of unique key (entity_table, account_relationship, entity_id)
3088 $dao = new CRM_Financial_DAO_EntityFinancialAccount();
3089 $dao->copyValues($entityParams);
3090 $dao->find();
3091 if ($dao->fetch()) {
3092 $entityParams['id'] = $dao->id;
3093 }
3094 $entityParams['financial_account_id'] = $account->id;
3095
3096 return CRM_Financial_BAO_FinancialTypeAccount::add($entityParams);
3097 }
3098
3099 /**
3100 * Create price set with contribution test for test setup.
3101 *
3102 * This could be merged with 4.5 function setup in api_v3_ContributionPageTest::setUpContributionPage
3103 * on parent class at some point (fn is not in 4.4).
3104 *
3105 * @param $entity
3106 * @param array $params
3107 */
3108 public function createPriceSetWithPage($entity = NULL, $params = []) {
3109 $membershipTypeID = $this->membershipTypeCreate(['name' => 'Special']);
3110 $contributionPageResult = $this->callAPISuccess('contribution_page', 'create', [
3111 'title' => "Test Contribution Page",
3112 'financial_type_id' => 1,
3113 'currency' => 'NZD',
3114 'goal_amount' => 50,
3115 'is_pay_later' => 1,
3116 'is_monetary' => TRUE,
3117 'is_email_receipt' => FALSE,
3118 ]);
3119 $priceSet = $this->callAPISuccess('price_set', 'create', [
3120 'is_quick_config' => 0,
3121 'extends' => 'CiviMember',
3122 'financial_type_id' => 1,
3123 'title' => 'my Page',
3124 ]);
3125 $priceSetID = $priceSet['id'];
3126
3127 CRM_Price_BAO_PriceSet::addTo('civicrm_contribution_page', $contributionPageResult['id'], $priceSetID);
3128 $priceField = $this->callAPISuccess('price_field', 'create', [
3129 'price_set_id' => $priceSetID,
3130 'label' => 'Goat Breed',
3131 'html_type' => 'Radio',
3132 ]);
3133 $priceFieldValue = $this->callAPISuccess('price_field_value', 'create', [
3134 'price_set_id' => $priceSetID,
3135 'price_field_id' => $priceField['id'],
3136 'label' => 'Long Haired Goat',
3137 'amount' => 20,
3138 'financial_type_id' => 'Donation',
3139 'membership_type_id' => $membershipTypeID,
3140 'membership_num_terms' => 1,
3141 ]);
3142 $this->_ids['price_field_value'] = [$priceFieldValue['id']];
3143 $priceFieldValue = $this->callAPISuccess('price_field_value', 'create', [
3144 'price_set_id' => $priceSetID,
3145 'price_field_id' => $priceField['id'],
3146 'label' => 'Shoe-eating Goat',
3147 'amount' => 10,
3148 'financial_type_id' => 'Donation',
3149 'membership_type_id' => $membershipTypeID,
3150 'membership_num_terms' => 2,
3151 ]);
3152 $this->_ids['price_field_value'][] = $priceFieldValue['id'];
3153
3154 $priceFieldValue = $this->callAPISuccess('price_field_value', 'create', [
3155 'price_set_id' => $priceSetID,
3156 'price_field_id' => $priceField['id'],
3157 'label' => 'Shoe-eating Goat',
3158 'amount' => 10,
3159 'financial_type_id' => 'Donation',
3160 ]);
3161 $this->_ids['price_field_value']['cont'] = $priceFieldValue['id'];
3162
3163 $this->_ids['price_set'] = $priceSetID;
3164 $this->_ids['contribution_page'] = $contributionPageResult['id'];
3165 $this->_ids['price_field'] = [$priceField['id']];
3166
3167 $this->_ids['membership_type'] = $membershipTypeID;
3168 }
3169
3170 /**
3171 * Only specified contact returned.
3172 *
3173 * @implements CRM_Utils_Hook::aclWhereClause
3174 *
3175 * @param $type
3176 * @param $tables
3177 * @param $whereTables
3178 * @param $contactID
3179 * @param $where
3180 */
3181 public function aclWhereMultipleContacts($type, &$tables, &$whereTables, &$contactID, &$where) {
3182 $where = " contact_a.id IN (" . implode(', ', $this->allowedContacts) . ")";
3183 }
3184
3185 /**
3186 * @implements CRM_Utils_Hook::selectWhereClause
3187 *
3188 * @param string $entity
3189 * @param array $clauses
3190 */
3191 public function selectWhereClauseHook($entity, &$clauses) {
3192 if ($entity == 'Event') {
3193 $clauses['event_type_id'][] = "IN (2, 3, 4)";
3194 }
3195 }
3196
3197 /**
3198 * An implementation of hook_civicrm_post used with all our test cases.
3199 *
3200 * @param $op
3201 * @param string $objectName
3202 * @param int $objectId
3203 * @param $objectRef
3204 */
3205 public function onPost($op, $objectName, $objectId, &$objectRef) {
3206 if ($op == 'create' && $objectName == 'Individual') {
3207 CRM_Core_DAO::executeQuery(
3208 "UPDATE civicrm_contact SET nick_name = 'munged' WHERE id = %1",
3209 [
3210 1 => [$objectId, 'Integer'],
3211 ]
3212 );
3213 }
3214
3215 if ($op == 'edit' && $objectName == 'Participant') {
3216 $params = [
3217 1 => [$objectId, 'Integer'],
3218 ];
3219 $query = "UPDATE civicrm_participant SET source = 'Post Hook Update' WHERE id = %1";
3220 CRM_Core_DAO::executeQuery($query, $params);
3221 }
3222 }
3223
3224 /**
3225 * Instantiate form object.
3226 *
3227 * We need to instantiate the form to run preprocess, which means we have to trick it about the request method.
3228 *
3229 * @param string $class
3230 * Name of form class.
3231 *
3232 * @param array $formValues
3233 *
3234 * @param string $pageName
3235 *
3236 * @return \CRM_Core_Form
3237 * @throws \CRM_Core_Exception
3238 */
3239 public function getFormObject($class, $formValues = [], $pageName = '') {
3240 $form = new $class();
3241 $_SERVER['REQUEST_METHOD'] = 'GET';
3242 $form->controller = new CRM_Core_Controller();
3243 $form->controller->setStateMachine(new CRM_Core_StateMachine($form->controller));
3244 $_SESSION['_' . $form->controller->_name . '_container']['values'][$pageName] = $formValues;
3245 return $form;
3246 }
3247
3248 /**
3249 * Get possible thousand separators.
3250 *
3251 * @return array
3252 */
3253 public function getThousandSeparators() {
3254 return [['.'], [',']];
3255 }
3256
3257 /**
3258 * Get the boolean options as a provider.
3259 *
3260 * @return array
3261 */
3262 public function getBooleanDataProvider() {
3263 return [[TRUE], [FALSE]];
3264 }
3265
3266 /**
3267 * Set the separators for thousands and decimal points.
3268 *
3269 * Use setMonetaryDecimalPoint and setMonetaryThousandSeparator instead
3270 *
3271 * @param string $thousandSeparator
3272 * @deprecated
3273 */
3274 protected function setCurrencySeparators($thousandSeparator) {
3275 // Jaap Jansma: I do think the code below is a bit useless. It does an assumption
3276 // that when the thousand separator is a comma, the decimal is point. It
3277 // does not cater for a situation where the thousand separator is a [space]
3278 // Latter is the Norwegian localization.
3279 Civi::settings()->set('monetaryThousandSeparator', $thousandSeparator);
3280 Civi::settings()
3281 ->set('monetaryDecimalPoint', ($thousandSeparator === ',' ? '.' : ','));
3282 }
3283
3284 /**
3285 * Sets the thousand separator.
3286 *
3287 * If you use this function also set the decimal separator: setMonetaryDecimalSeparator
3288 *
3289 * @param $thousandSeparator
3290 */
3291 protected function setMonetaryThousandSeparator($thousandSeparator) {
3292 Civi::settings()->set('monetaryThousandSeparator', $thousandSeparator);
3293 }
3294
3295 /**
3296 * Sets the decimal separator.
3297 *
3298 * If you use this function also set the thousand separator setMonetaryDecimalPoint
3299 *
3300 * @param $decimalPoint
3301 */
3302 protected function setMonetaryDecimalPoint($decimalPoint) {
3303 Civi::settings()->set('monetaryDecimalPoint', $decimalPoint);
3304 }
3305
3306 /**
3307 * Sets the default currency.
3308 *
3309 * @param $currency
3310 */
3311 protected function setDefaultCurrency($currency) {
3312 Civi::settings()->set('defaultCurrency', $currency);
3313 }
3314
3315 /**
3316 * Format money as it would be input.
3317 *
3318 * @param string $amount
3319 *
3320 * @return string
3321 */
3322 protected function formatMoneyInput($amount) {
3323 return CRM_Utils_Money::format($amount, NULL, '%a');
3324 }
3325
3326 /**
3327 * Get the contribution object.
3328 *
3329 * @param int $contributionID
3330 *
3331 * @return \CRM_Contribute_BAO_Contribution
3332 */
3333 protected function getContributionObject($contributionID) {
3334 $contributionObj = new CRM_Contribute_BAO_Contribution();
3335 $contributionObj->id = $contributionID;
3336 $contributionObj->find(TRUE);
3337 return $contributionObj;
3338 }
3339
3340 /**
3341 * Enable multilingual.
3342 */
3343 public function enableMultilingual() {
3344 $this->callAPISuccess('Setting', 'create', [
3345 'lcMessages' => 'en_US',
3346 'languageLimit' => [
3347 'en_US' => 1,
3348 ],
3349 ]);
3350
3351 CRM_Core_I18n_Schema::makeMultilingual('en_US');
3352
3353 global $dbLocale;
3354 $dbLocale = '_en_US';
3355 }
3356
3357 /**
3358 * Setup or clean up SMS tests
3359 *
3360 * @param bool $teardown
3361 *
3362 * @throws \CiviCRM_API3_Exception
3363 */
3364 public function setupForSmsTests($teardown = FALSE) {
3365 require_once 'CiviTest/CiviTestSMSProvider.php';
3366
3367 // Option value params for CiviTestSMSProvider
3368 $groupID = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', 'sms_provider_name', 'id', 'name');
3369 $params = [
3370 'option_group_id' => $groupID,
3371 'label' => 'unittestSMS',
3372 'value' => 'unit.test.sms',
3373 'name' => 'CiviTestSMSProvider',
3374 'is_default' => 1,
3375 'is_active' => 1,
3376 'version' => 3,
3377 ];
3378
3379 if ($teardown) {
3380 // Test completed, delete provider
3381 $providerOptionValueResult = civicrm_api3('option_value', 'get', $params);
3382 civicrm_api3('option_value', 'delete', ['id' => $providerOptionValueResult['id']]);
3383 return;
3384 }
3385
3386 // Create an SMS provider "CiviTestSMSProvider". Civi handles "CiviTestSMSProvider" as a special case and allows it to be instantiated
3387 // in CRM/Sms/Provider.php even though it is not an extension.
3388 return civicrm_api3('option_value', 'create', $params);
3389 }
3390
3391 /**
3392 * Start capturing browser output.
3393 *
3394 * The starts the process of browser output being captured, setting any variables needed for e-notice prevention.
3395 */
3396 protected function startCapturingOutput() {
3397 ob_start();
3398 $_SERVER['HTTP_USER_AGENT'] = 'unittest';
3399 }
3400
3401 /**
3402 * Stop capturing browser output and return as a csv.
3403 *
3404 * @param bool $isFirstRowHeaders
3405 *
3406 * @return \League\Csv\Reader
3407 *
3408 * @throws \League\Csv\Exception
3409 */
3410 protected function captureOutputToCSV($isFirstRowHeaders = TRUE) {
3411 $output = ob_get_flush();
3412 $stream = fopen('php://memory', 'r+');
3413 fwrite($stream, $output);
3414 rewind($stream);
3415 $this->assertEquals("\xEF\xBB\xBF", substr($output, 0, 3));
3416 $csv = Reader::createFromString($output);
3417 if ($isFirstRowHeaders) {
3418 $csv->setHeaderOffset(0);
3419 }
3420 ob_clean();
3421 return $csv;
3422 }
3423
3424 /**
3425 * Rename various labels to not match the names.
3426 *
3427 * Doing these mimics the fact the name != the label in international installs & triggers failures in
3428 * code that expects it to.
3429 */
3430 protected function renameLabels() {
3431 $replacements = ['Pending', 'Refunded'];
3432 foreach ($replacements as $name) {
3433 CRM_Core_DAO::executeQuery("UPDATE civicrm_option_value SET label = '{$name} Label**' where label = '{$name}' AND name = '{$name}'");
3434 }
3435 }
3436
3437 /**
3438 * Undo any label renaming.
3439 */
3440 protected function resetLabels() {
3441 CRM_Core_DAO::executeQuery("UPDATE civicrm_option_value SET label = REPLACE(name, ' Label**', '') WHERE label LIKE '% Label**'");
3442 }
3443
3444 /**
3445 * Get parameters to set up a multi-line participant order.
3446 *
3447 * @return array
3448 * @throws \CRM_Core_Exception
3449 */
3450 protected function getParticipantOrderParams(): array {
3451 $this->_contactId = $this->individualCreate();
3452 $event = $this->eventCreate();
3453 $this->_eventId = $event['id'];
3454 $eventParams = [
3455 'id' => $this->_eventId,
3456 'financial_type_id' => 4,
3457 'is_monetary' => 1,
3458 ];
3459 $this->callAPISuccess('event', 'create', $eventParams);
3460 $priceFields = $this->createPriceSet('event', $this->_eventId);
3461 $participantParams = [
3462 'financial_type_id' => 4,
3463 'event_id' => $this->_eventId,
3464 'role_id' => 1,
3465 'status_id' => 14,
3466 'fee_currency' => 'USD',
3467 'contact_id' => $this->_contactId,
3468 ];
3469 $participant = $this->callAPISuccess('Participant', 'create', $participantParams);
3470 $orderParams = [
3471 'total_amount' => 300,
3472 'currency' => 'USD',
3473 'contact_id' => $this->_contactId,
3474 'financial_type_id' => 4,
3475 'contribution_status_id' => 'Pending',
3476 'contribution_mode' => 'participant',
3477 'participant_id' => $participant['id'],
3478 ];
3479 foreach ($priceFields['values'] as $key => $priceField) {
3480 $orderParams['line_items'][] = [
3481 'line_item' => [
3482 [
3483 'price_field_id' => $priceField['price_field_id'],
3484 'price_field_value_id' => $priceField['id'],
3485 'label' => $priceField['label'],
3486 'field_title' => $priceField['label'],
3487 'qty' => 1,
3488 'unit_price' => $priceField['amount'],
3489 'line_total' => $priceField['amount'],
3490 'financial_type_id' => $priceField['financial_type_id'],
3491 'entity_table' => 'civicrm_participant',
3492 ],
3493 ],
3494 'params' => $participant,
3495 ];
3496 }
3497 return $orderParams;
3498 }
3499
3500 /**
3501 * @param $payments
3502 *
3503 * @throws \CRM_Core_Exception
3504 */
3505 protected function validatePayments($payments) {
3506 foreach ($payments as $payment) {
3507 $balance = CRM_Contribute_BAO_Contribution::getContributionBalance($payment['contribution_id']);
3508 if ($balance < 0 && $balance + $payment['total_amount'] === 0.0) {
3509 // This is an overpayment situation. there are no financial items to allocate the overpayment.
3510 // This is a pretty rough way at guessing which payment is the overpayment - but
3511 // for the test suite it should be enough.
3512 continue;
3513 }
3514 $items = $this->callAPISuccess('EntityFinancialTrxn', 'get', [
3515 'financial_trxn_id' => $payment['id'],
3516 'entity_table' => 'civicrm_financial_item',
3517 'return' => ['amount'],
3518 ])['values'];
3519 $itemTotal = 0;
3520 foreach ($items as $item) {
3521 $itemTotal += $item['amount'];
3522 }
3523 $this->assertEquals($payment['total_amount'], $itemTotal);
3524 }
3525 }
3526
3527 /**
3528 * Validate all created payments.
3529 *
3530 * @throws \CRM_Core_Exception
3531 */
3532 protected function validateAllPayments() {
3533 $payments = $this->callAPISuccess('Payment', 'get', ['options' => ['limit' => 0]])['values'];
3534 $this->validatePayments($payments);
3535 }
3536
3537 /**
3538 * Validate all created contributions.
3539 *
3540 * @throws \CRM_Core_Exception
3541 */
3542 protected function validateAllContributions() {
3543 $contributions = $this->callAPISuccess('Contribution', 'get', [])['values'];
3544 foreach ($contributions as $contribution) {
3545 $lineItems = $this->callAPISuccess('LineItem', 'get', ['contribution_id' => $contribution['id']])['values'];
3546 $total = 0;
3547 foreach ($lineItems as $lineItem) {
3548 $total += $lineItem['line_total'];
3549 }
3550 $this->assertEquals($total, $contribution['total_amount']);
3551 }
3552 }
3553
3554 }