Merge pull request #17719 from civicrm/5.27
[civicrm-core.git] / tools / scripts / phpunit
CommitLineData
6a488035
TO
1#!/usr/bin/env php
2<?php
620c8b6e
TO
3
4/**
5 * In the past, Civi bundled a hacked copy of PHPUnit used like:
6a488035 6 *
620c8b6e
TO
7 * cd tools
8 * ./scripts/phpunit Some_Class_NameTest
6a488035 9 *
620c8b6e 10 * This script is an adapter for backwards compatibility.
6a488035
TO
11 */
12
71722e30
TO
13$argFilters = [];
14
620c8b6e
TO
15if (PHP_SAPI !== 'cli') {
16 die("phpunit can only be run from command line.");
89771184 17}
8851bdf5
SL
18if (version_compare(PHP_VERSION, '7.1', '>=')) {
19 $phpunit = findCommand('phpunit7');
20 $argFilters[] = function ($argv) {
21 $pos = array_search('--tap', $argv);
22 if ($pos !== FALSE) {
23 array_splice($argv, $pos, 1, ['--printer', '\Civi\Test\TAP']);
24 }
25 return $argv;
26 };
27}
28elseif (version_compare(PHP_VERSION, '7.0', '>=')) {
d717cfb6 29 $phpunit = findCommand('phpunit6');
71722e30
TO
30 $argFilters[] = function ($argv) {
31 $pos = array_search('--tap', $argv);
32 if ($pos !== FALSE) {
33 array_splice($argv, $pos, 1, ['--printer', '\Civi\Test\TAP']);
34 }
35 return $argv;
36 };
d717cfb6
SL
37}
38elseif (version_compare(PHP_VERSION, '5.6', '>=')) {
fac6351c
SL
39 $phpunit = findCommand('phpunit5');
40}
41else {
42 $phpunit = findCommand('phpunit4');
43}
20a7a2be
TO
44if (!$phpunit) {
45 $phpunit = findCommand('phpunit');
46}
620c8b6e
TO
47if (!$phpunit) {
48 echo "Plesae ensure that:\n";
49 echo " * PHPUnit is installed.\n";
50 echo " * The extensions for dbunit and selenium are installed.\n" ;
51 echo " * The command \"phpunit\" is in the PATH.\n";
52 echo "See also: https://github.com/civicrm/civicrm-buildkit/\n";
53 exit(127);
6a488035
TO
54}
55
620c8b6e 56chdir(dirname(dirname(__DIR__))); // civicrm-core root dir
6a488035 57
620c8b6e 58array_shift($argv);
6a488035 59
620c8b6e 60// Convert class names to file names
c5d26c27 61$CIVICRM_UF = 'UnitTests';
620c8b6e 62foreach ($argv as $k => $v) {
2c074028 63 if (preg_match('/^(CRM_|api_v3_|api_v4_|EnvTest|WebTest_|E2E_)/', $v)) {
620c8b6e 64 $argv[$k] = 'tests/phpunit/' . strtr($v, '_', '/') . '.php';
7e0295ce
TO
65 }
66 elseif (preg_match('/^Civi\\\\/', $v)) {
67 $argv[$k] = 'tests/phpunit/' . strtr($v, '\\', '/') . '.php';
620c8b6e 68 }
f5dfa52e 69
c5d26c27
TO
70 if (preg_match('/^(WebTest|E2E)/', $v)) {
71 $CIVICRM_UF='';
f5dfa52e 72 }
620c8b6e 73}
c5d26c27 74putenv("CIVICRM_UF=$CIVICRM_UF");
6a488035 75
620c8b6e
TO
76// Transition: Make sure we use phpunit code from PATH, not
77// civicrm-packages. This will be unnecessary once civicrm-packages is
78// updated.
79if (is_dir('packages/PHPUnit/')) {
80 if (!rename('packages/PHPUnit', 'packages/PHPUnit.bak')) {
81 echo "Failed to move aside stale copy of PHPUnit.\n";
82 exit(1);
83 }
84}
6a488035 85
71722e30
TO
86foreach ($argFilters as $filter) {
87 $argv = $filter($argv);
88}
89
620c8b6e
TO
90$cmd =
91 findPhp() // In case this system has multiple copies of PHP, use the active/preferred one.
f5dfa52e 92 // . ' -ddisplay_errors=1'
620c8b6e
TO
93 . ' '
94 . escapeshellarg($phpunit)
95 . ' '
96 . implode(' ', array_map('escapeshellarg', $argv));
97passthru($cmd);
6a488035 98
620c8b6e 99function findPhp() {
62e6c49c
TO
100 // The autodetect behavior here is a potential point of contention. These two cases are hard to reconcile:
101 // 1. `php` is actually a wrapper script which delegates to another PHP binary and
102 // passes options (such as INI's and PECL extensions). Subprocesses should use the wrapper script.
103 // Examples: bitnami, bknix
104 // 2. There are multiple PHP binaries (eg `php55`, `php70`). Subprocesses should use
105 // the final executable (regardless of its name).
106 // Example: using MAMP and adding 'ln -s /Application/MAMP/.../php7.1.2/bin/php ~/bin/php71`
107 // Since the test infra uses a wrapper script like (1), we use autodetect logic that works there.
108 // If you're in situation (2), then set an env-var or just skip on using `tools/scripts/phpunit`.
109 if (getenv('PHP')) {
110 return getenv('PHP');
111 }
112 else {
113 return 'php';
620c8b6e
TO
114 }
115}
116
117function findCommand($name) {
118 $paths = explode(PATH_SEPARATOR, getenv('PATH'));
119 foreach ($paths as $path) {
120 if (file_exists("$path/$name")) {
121 return "$path/$name";
122 }
123 }
124 return NULL;
125}