Merge pull request #14571 from eileenmcnaughton/mem
[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 // ------------------------------------------------------------------------------
28
29 /**
30 * Call the "cv" command.
31 *
32 * @param string $cmd
33 * The rest of the command to send.
34 * @param string $decode
35 * Ex: 'json' or 'phpcode'.
36 * @return string
37 * Response output (if the command executed normally).
38 * @throws \RuntimeException
39 * If the command terminates abnormally.
40 */
41 function cv($cmd, $decode = 'json') {
42 $cmd = 'cv ' . $cmd;
43 $descriptorSpec = array(0 => array("pipe", "r"), 1 => array("pipe", "w"), 2 => STDERR);
44 $oldOutput = getenv('CV_OUTPUT');
45 putenv("CV_OUTPUT=json");
46 $process = proc_open($cmd, $descriptorSpec, $pipes, __DIR__);
47 putenv("CV_OUTPUT=$oldOutput");
48 fclose($pipes[0]);
49 $result = stream_get_contents($pipes[1]);
50 fclose($pipes[1]);
51 if (proc_close($process) !== 0) {
52 throw new RuntimeException("Command failed ($cmd):\n$result");
53 }
54 switch ($decode) {
55 case 'raw':
56 return $result;
57
58 case 'phpcode':
59 // If the last output is /*PHPCODE*/, then we managed to complete execution.
60 if (substr(trim($result), 0, 12) !== "/*BEGINPHP*/" || substr(trim($result), -10) !== "/*ENDPHP*/") {
61 throw new \RuntimeException("Command failed ($cmd):\n$result");
62 }
63 return $result;
64
65 case 'json':
66 return json_decode($result, 1);
67
68 default:
69 throw new RuntimeException("Bad decoder format ($decode)");
70 }
71 }