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