NFC - Short array syntax - auto-convert Civi dir
[civicrm-core.git] / Civi / Test / CiviTestListener.php
CommitLineData
09e1f1e3
TO
1<?php
2
3namespace Civi\Test;
4
5/**
6 * Class CiviTestListener
7 * @package Civi\Test
8 *
9 * CiviTestListener participates in test-execution, looking for test-classes
10 * which have certain tags. If the tags are found, the listener will perform
11 * additional setup/teardown logic.
12 *
13 * @see EndToEndInterface
14 * @see HeadlessInterface
15 * @see HookInterface
16 */
17class CiviTestListener extends \PHPUnit_Framework_BaseTestListener {
18 /**
19 * @var \CRM_Core_TemporaryErrorScope
20 */
21 private $errorScope;
22
23 /**
24 * @var array
25 * Ex: $cache['Some_Test_Class']['civicrm_foobar'] = 'hook_civicrm_foobar';
26 * Array(string $testClass => Array(string $hookName => string $methodName)).
27 */
c64f69d9 28 private $cache = [];
09e1f1e3
TO
29
30 /**
31 * @var \CRM_Core_Transaction|NULL
32 */
33 private $tx;
34
35 public function startTestSuite(\PHPUnit_Framework_TestSuite $suite) {
36 $byInterface = $this->indexTestsByInterface($suite->tests());
37 $this->validateGroups($byInterface);
38 $this->autoboot($byInterface);
39 }
40
41 public function endTestSuite(\PHPUnit_Framework_TestSuite $suite) {
c64f69d9 42 $this->cache = [];
09e1f1e3
TO
43 }
44
45 public function startTest(\PHPUnit_Framework_Test $test) {
46 if ($this->isCiviTest($test)) {
47 error_reporting(E_ALL);
48 $this->errorScope = \CRM_Core_TemporaryErrorScope::useException();
49 }
50
51 if ($test instanceof HeadlessInterface) {
52 $this->bootHeadless($test);
53 }
54
55 if ($test instanceof HookInterface) {
56 // Note: bootHeadless() indirectly resets any hooks, which means that hook_civicrm_config
57 // is unsubscribable. However, after bootHeadless(), we're free to subscribe to hooks again.
58 $this->registerHooks($test);
59 }
60
61 if ($test instanceof TransactionalInterface) {
62 $this->tx = new \CRM_Core_Transaction(TRUE);
63 $this->tx->rollback();
64 }
65 else {
66 $this->tx = NULL;
67 }
68 }
69
70 public function endTest(\PHPUnit_Framework_Test $test, $time) {
71 if ($test instanceof TransactionalInterface) {
72 $this->tx->rollback()->commit();
73 $this->tx = NULL;
74 }
75 if ($test instanceof HookInterface) {
76 \CRM_Utils_Hook::singleton()->reset();
77 }
78 if ($this->isCiviTest($test)) {
79 error_reporting(E_ALL & ~E_NOTICE);
80 $this->errorScope = NULL;
81 }
82 }
83
84 /**
85 * @param HeadlessInterface|\PHPUnit_Framework_Test $test
86 */
87 protected function bootHeadless($test) {
88 if (CIVICRM_UF !== 'UnitTests') {
415cb25d 89 throw new \RuntimeException('HeadlessInterface requires CIVICRM_UF=UnitTests');
09e1f1e3
TO
90 }
91
92 // Hrm, this seems wrong. Shouldn't we be resetting the entire session?
93 $session = \CRM_Core_Session::singleton();
94 $session->set('userID', NULL);
95
96 $test->setUpHeadless();
97
09e1f1e3
TO
98 \CRM_Utils_System::flushCache();
99 \Civi::reset();
100 \CRM_Core_Session::singleton()->set('userID', NULL);
33fefd54 101 $config = \CRM_Core_Config::singleton(TRUE, TRUE); // ugh, performance
09e1f1e3
TO
102
103 if (property_exists($config->userPermissionClass, 'permissions')) {
104 $config->userPermissionClass->permissions = NULL;
105 }
106 }
107
108 /**
109 * @param \Civi\Test\HookInterface $test
110 * @return array
111 * Array(string $hookName => string $methodName)).
112 */
113 protected function findTestHooks(HookInterface $test) {
114 $class = get_class($test);
115 if (!isset($this->cache[$class])) {
c64f69d9 116 $funcs = [];
09e1f1e3
TO
117 foreach (get_class_methods($class) as $func) {
118 if (preg_match('/^hook_/', $func)) {
119 $funcs[substr($func, 5)] = $func;
120 }
121 }
122 $this->cache[$class] = $funcs;
123 }
124 return $this->cache[$class];
125 }
126
127 /**
128 * @param \PHPUnit_Framework_Test $test
129 * @return bool
130 */
131 protected function isCiviTest(\PHPUnit_Framework_Test $test) {
132 return $test instanceof HookInterface || $test instanceof HeadlessInterface;
133 }
134
135 /**
136 * Find any hook functions in $test and register them.
137 *
138 * @param \Civi\Test\HookInterface $test
139 */
140 protected function registerHooks(HookInterface $test) {
141 if (CIVICRM_UF !== 'UnitTests') {
142 // This is not ideal -- it's just a side-effect of how hooks and E2E tests work.
143 // We can temporarily subscribe to hooks in-process, but for other processes, it gets messy.
144 throw new \RuntimeException('CiviHookTestInterface requires CIVICRM_UF=UnitTests');
145 }
146 \CRM_Utils_Hook::singleton()->reset();
147 /** @var \CRM_Utils_Hook_UnitTests $hooks */
148 $hooks = \CRM_Utils_Hook::singleton();
149 foreach ($this->findTestHooks($test) as $hook => $func) {
c64f69d9 150 $hooks->setHook($hook, [$test, $func]);
09e1f1e3
TO
151 }
152 }
153
154 /**
155 * The first time we come across HeadlessInterface or EndToEndInterface, we'll
156 * try to autoboot.
157 *
158 * Once the system is booted, there's nothing we can do -- we're stuck with that
159 * environment. (Thank you, prolific define()s!) If there's a conflict between a
160 * test-class and the active boot-level, then we'll have to bail.
161 *
162 * @param array $byInterface
163 * List of test classes, keyed by major interface (HeadlessInterface vs EndToEndInterface).
164 */
165 protected function autoboot($byInterface) {
166 if (defined('CIVICRM_UF')) {
167 // OK, nothing we can do. System has booted already.
168 }
169 elseif (!empty($byInterface['HeadlessInterface'])) {
170 putenv('CIVICRM_UF=UnitTests');
415cb25d 171 eval($this->cv('php:boot --level=full', 'phpcode'));
09e1f1e3
TO
172 }
173 elseif (!empty($byInterface['EndToEndInterface'])) {
174 putenv('CIVICRM_UF=');
415cb25d 175 eval($this->cv('php:boot --level=full', 'phpcode'));
09e1f1e3
TO
176 }
177
178 $blurb = "Tip: Run the headless tests and end-to-end tests separately, e.g.\n"
08f3d81d
SL
179 . " $ phpunit5 --group headless\n"
180 . " $ phpunit5 --group e2e \n";
09e1f1e3
TO
181
182 if (!empty($byInterface['HeadlessInterface']) && CIVICRM_UF !== 'UnitTests') {
183 $testNames = implode(', ', array_keys($byInterface['HeadlessInterface']));
184 throw new \RuntimeException("Suite includes headless tests ($testNames) which require CIVICRM_UF=UnitTests.\n\n$blurb");
185 }
186 if (!empty($byInterface['EndToEndInterface']) && CIVICRM_UF === 'UnitTests') {
187 $testNames = implode(', ', array_keys($byInterface['EndToEndInterface']));
188 throw new \RuntimeException("Suite includes end-to-end tests ($testNames) which do not support CIVICRM_UF=UnitTests.\n\n$blurb");
189 }
190 }
191
192 /**
193 * Call the "cv" command.
194 *
195 * This duplicates the standalone `cv()` wrapper that is recommended in bootstrap.php.
196 * This duplication is necessary because `cv()` is optional, and downstream implementers
197 * may alter, rename, or omit the wrapper, and (by virtue of its role in bootstrap) there
198 * it is impossible to define it centrally.
199 *
200 * @param string $cmd
201 * The rest of the command to send.
202 * @param string $decode
203 * Ex: 'json' or 'phpcode'.
204 * @return string
205 * Response output (if the command executed normally).
206 * @throws \RuntimeException
207 * If the command terminates abnormally.
208 */
209 protected function cv($cmd, $decode = 'json') {
210 $cmd = 'cv ' . $cmd;
c64f69d9 211 $descriptorSpec = [0 => ["pipe", "r"], 1 => ["pipe", "w"], 2 => STDERR];
09e1f1e3
TO
212 $oldOutput = getenv('CV_OUTPUT');
213 putenv("CV_OUTPUT=json");
214 $process = proc_open($cmd, $descriptorSpec, $pipes, __DIR__);
215 putenv("CV_OUTPUT=$oldOutput");
216 fclose($pipes[0]);
217 $result = stream_get_contents($pipes[1]);
218 fclose($pipes[1]);
219 if (proc_close($process) !== 0) {
220 throw new \RuntimeException("Command failed ($cmd):\n$result");
221 }
222 switch ($decode) {
223 case 'raw':
224 return $result;
225
226 case 'phpcode':
227 // If the last output is /*PHPCODE*/, then we managed to complete execution.
228 if (substr(trim($result), 0, 12) !== "/*BEGINPHP*/" || substr(trim($result), -10) !== "/*ENDPHP*/") {
229 throw new \RuntimeException("Command failed ($cmd):\n$result");
230 }
231 return $result;
232
233 case 'json':
234 return json_decode($result, 1);
235
236 default:
237 throw new \RuntimeException("Bad decoder format ($decode)");
238 }
239 }
240
241 /**
242 * @param $tests
243 * @return array
244 */
245 protected function indexTestsByInterface($tests) {
c64f69d9 246 $byInterface = ['HeadlessInterface' => [], 'EndToEndInterface' => []];
09e1f1e3
TO
247 foreach ($tests as $test) {
248 /** @var \PHPUnit_Framework_Test $test */
249 if ($test instanceof HeadlessInterface) {
250 $byInterface['HeadlessInterface'][get_class($test)] = 1;
251 }
252 if ($test instanceof EndToEndInterface) {
253 $byInterface['EndToEndInterface'][get_class($test)] = 1;
254 }
255 }
256 return $byInterface;
257 }
258
259 /**
260 * Ensure that any tests have sensible groups, e.g.
261 *
262 * `HeadlessInterface` ==> `group headless`
263 * `EndToEndInterface` ==> `group e2e`
264 *
265 * @param array $byInterface
266 */
267 protected function validateGroups($byInterface) {
268 foreach ($byInterface['HeadlessInterface'] as $className => $nonce) {
269 $clazz = new \ReflectionClass($className);
270 $docComment = str_replace("\r\n", "\n", $clazz->getDocComment());
271 if (strpos($docComment, "@group headless\n") === FALSE) {
272 echo "WARNING: Class $className implements HeadlessInterface. It should declare \"@group headless\".\n";
273 }
274 if (strpos($docComment, "@group e2e\n") !== FALSE) {
275 echo "WARNING: Class $className implements HeadlessInterface. It should not declare \"@group e2e\".\n";
276 }
277 }
278 foreach ($byInterface['EndToEndInterface'] as $className => $nonce) {
279 $clazz = new \ReflectionClass($className);
280 $docComment = str_replace("\r\n", "\n", $clazz->getDocComment());
281 if (strpos($docComment, "@group e2e\n") === FALSE) {
282 echo "WARNING: Class $className implements EndToEndInterface. It should declare \"@group e2e\".\n";
283 }
284 if (strpos($docComment, "@group headless\n") !== FALSE) {
285 echo "WARNING: Class $className implements EndToEndInterface. It should not declare \"@group headless\".\n";
286 }
287 }
288 }
289
290}