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