[REF] Remove setting on unused variables
[civicrm-core.git] / tests / phpunit / CiviTest / bootstrap.php
1 <?php
2 // ADAPTED FROM tools/scripts/phpunit
3
4 ini_set('safe_mode', 0);
5 ini_set('include_path', dirname(__DIR__) . PATH_SEPARATOR . ini_get('include_path'));
6
7 # Relying on system timezone setting produces a warning,
8 # doing the following prevents the warning message
9 if (file_exists('/etc/timezone')) {
10 $timezone = trim(file_get_contents('/etc/timezone'));
11 if (ini_set('date.timezone', $timezone) === FALSE) {
12 echo "ini_set( 'date.timezone', '$timezone' ) failed\n";
13 }
14 }
15
16 # Crank up the memory
17 ini_set('memory_limit', '2G');
18 define('CIVICRM_TEST', 1);
19 // phpcs:disable
20 eval(cv('php:boot --level=settings', 'phpcode'));
21 // phpcs:enable
22
23 if (CIVICRM_UF === 'UnitTests') {
24 Civi\Test::headless()->apply();
25 }
26
27 spl_autoload_register(function($class) {
28 _phpunit_mockoloader('api\\v4\\', "tests/phpunit/api/v4/", $class);
29 _phpunit_mockoloader('Civi\\Api4\\', "tests/phpunit/api/v4/Mock/Api4/", $class);
30 });
31
32 // ------------------------------------------------------------------------------
33
34 /**
35 * @param $prefix
36 * @param $base_dir
37 * @param $class
38 */
39 function _phpunit_mockoloader($prefix, $base_dir, $class) {
40 $len = strlen($prefix);
41 if (strncmp($prefix, $class, $len) !== 0) {
42 return;
43 }
44
45 global $civicrm_root;
46 $relative_class = substr($class, $len);
47 $file = $civicrm_root . '/' . $base_dir . str_replace('\\', '/', $relative_class) . '.php';
48 if (file_exists($file)) {
49 require $file;
50 }
51 }
52
53 /**
54 * Call the "cv" command.
55 *
56 * @param string $cmd
57 * The rest of the command to send.
58 * @param string $decode
59 * Ex: 'json' or 'phpcode'.
60 * @return string
61 * Response output (if the command executed normally).
62 * @throws \RuntimeException
63 * If the command terminates abnormally.
64 */
65 function cv($cmd, $decode = 'json') {
66 $cmd = 'cv ' . $cmd;
67 $descriptorSpec = array(0 => array("pipe", "r"), 1 => array("pipe", "w"), 2 => STDERR);
68 $oldOutput = getenv('CV_OUTPUT');
69 putenv("CV_OUTPUT=json");
70 $process = proc_open($cmd, $descriptorSpec, $pipes, __DIR__);
71 putenv("CV_OUTPUT=$oldOutput");
72 fclose($pipes[0]);
73 $result = stream_get_contents($pipes[1]);
74 fclose($pipes[1]);
75 if (proc_close($process) !== 0) {
76 throw new RuntimeException("Command failed ($cmd):\n$result");
77 }
78 switch ($decode) {
79 case 'raw':
80 return $result;
81
82 case 'phpcode':
83 // If the last output is /*PHPCODE*/, then we managed to complete execution.
84 if (substr(trim($result), 0, 12) !== "/*BEGINPHP*/" || substr(trim($result), -10) !== "/*ENDPHP*/") {
85 throw new \RuntimeException("Command failed ($cmd):\n$result");
86 }
87 return $result;
88
89 case 'json':
90 return json_decode($result, 1);
91
92 default:
93 throw new RuntimeException("Bad decoder format ($decode)");
94 }
95 }