Merge "Using ULS in Special:PageLanguage"
[lhc/web/wiklou.git] / tests / phpunit / phpunit.php
1 #!/usr/bin/env php
2 <?php
3 /**
4 * Bootstrapping for MediaWiki PHPUnit tests
5 *
6 * @file
7 */
8
9 // Set a flag which can be used to detect when other scripts have been entered
10 // through this entry point or not.
11 define( 'MW_PHPUNIT_TEST', true );
12
13 // Start up MediaWiki in command-line mode
14 require_once dirname( dirname( __DIR__ ) ) . "/maintenance/Maintenance.php";
15
16 class PHPUnitMaintClass extends Maintenance {
17
18 public static $additionalOptions = array(
19 'regex' => false,
20 'file' => false,
21 'use-filebackend' => false,
22 'use-bagostuff' => false,
23 'use-jobqueue' => false,
24 'keep-uploads' => false,
25 'use-normal-tables' => false,
26 'reuse-db' => false,
27 'wiki' => false,
28 );
29
30 public function __construct() {
31 parent::__construct();
32 $this->addOption(
33 'with-phpunitdir',
34 'Directory to include PHPUnit from, for example when using a git '
35 . 'fetchout from upstream. Path will be prepended to PHP `include_path`.',
36 false, # not required
37 true # need arg
38 );
39 $this->addOption(
40 'debug-tests',
41 'Log testing activity to the PHPUnitCommand log channel.',
42 false, # not required
43 false # no arg needed
44 );
45 $this->addOption( 'regex', 'Only run parser tests that match the given regex.', false, true );
46 $this->addOption( 'file', 'File describing parser tests.', false, true );
47 $this->addOption( 'use-filebackend', 'Use filebackend', false, true );
48 $this->addOption( 'use-bagostuff', 'Use bagostuff', false, true );
49 $this->addOption( 'use-jobqueue', 'Use jobqueue', false, true );
50 $this->addOption( 'keep-uploads', 'Re-use the same upload directory for each test, don\'t delete it.', false, false );
51 $this->addOption( 'use-normal-tables', 'Use normal DB tables.', false, false );
52 $this->addOption( 'reuse-db', 'Init DB only if tables are missing and keep after finish.', false, false );
53 }
54
55 public function finalSetup() {
56 parent::finalSetup();
57
58 global $wgMainCacheType, $wgMessageCacheType, $wgParserCacheType;
59 global $wgLanguageConverterCacheType, $wgUseDatabaseMessages;
60 global $wgLocaltimezone, $wgLocalisationCacheConf;
61 global $wgDevelopmentWarnings;
62
63 // Inject test autoloader
64 require_once __DIR__ . '/../TestsAutoLoader.php';
65
66 // wfWarn should cause tests to fail
67 $wgDevelopmentWarnings = true;
68
69 $wgMainCacheType = CACHE_NONE;
70 $wgMessageCacheType = CACHE_NONE;
71 $wgParserCacheType = CACHE_NONE;
72 $wgLanguageConverterCacheType = CACHE_NONE;
73
74 $wgUseDatabaseMessages = false; # Set for future resets
75
76 // Assume UTC for testing purposes
77 $wgLocaltimezone = 'UTC';
78
79 $wgLocalisationCacheConf['storeClass'] = 'LCStoreNull';
80
81 // Bug 44192 Do not attempt to send a real e-mail
82 Hooks::clear( 'AlternateUserMailer' );
83 Hooks::register(
84 'AlternateUserMailer',
85 function () {
86 return false;
87 }
88 );
89 // xdebug's default of 100 is too low for MediaWiki
90 ini_set( 'xdebug.max_nesting_level', 1000 );
91 }
92
93 public function execute() {
94 global $IP;
95
96 $this->forceFormatServerArgv();
97
98 # Make sure we have --configuration or PHPUnit might complain
99 if ( !in_array( '--configuration', $_SERVER['argv'] ) ) {
100 //Hack to eliminate the need to use the Makefile (which sucks ATM)
101 array_splice( $_SERVER['argv'], 1, 0,
102 array( '--configuration', $IP . '/tests/phpunit/suite.xml' ) );
103 }
104
105 # --with-phpunitdir let us override the default PHPUnit version
106 # Can use with either or phpunit.phar in the directory or the
107 # full PHPUnit code base.
108 if ( $this->hasOption( 'with-phpunitdir' ) ) {
109 $phpunitDir = $this->getOption( 'with-phpunitdir' );
110
111 # prepends provided PHPUnit directory or phar
112 $this->output( "Will attempt loading PHPUnit from `$phpunitDir`\n" );
113 set_include_path( $phpunitDir . PATH_SEPARATOR . get_include_path() );
114
115 # Cleanup $args array so the option and its value do not
116 # pollute PHPUnit
117 $key = array_search( '--with-phpunitdir', $_SERVER['argv'] );
118 unset( $_SERVER['argv'][$key] ); // the option
119 unset( $_SERVER['argv'][$key + 1] ); // its value
120 $_SERVER['argv'] = array_values( $_SERVER['argv'] );
121 }
122
123 if ( !wfIsWindows() ) {
124 # If we are not running on windows then we can enable phpunit colors
125 # Windows does not come anymore with ANSI.SYS loaded by default
126 # PHPUnit uses the suite.xml parameters to enable/disable colors
127 # which can be then forced to be enabled with --colors.
128 # The below code injects a parameter just like if the user called
129 # Probably fix bug 29226
130 $key = array_search( '--colors', $_SERVER['argv'] );
131 if ( $key === false ) {
132 array_splice( $_SERVER['argv'], 1, 0, '--colors' );
133 }
134 }
135
136 # Makes MediaWiki PHPUnit directory includable so the PHPUnit will
137 # be able to resolve relative files inclusion such as suites/*
138 # PHPUnit uses stream_resolve_include_path() internally
139 # See bug 32022
140 $key = array_search( '--include-path', $_SERVER['argv'] );
141 if ( $key === false ) {
142 array_splice( $_SERVER['argv'], 1, 0,
143 __DIR__
144 . PATH_SEPARATOR
145 . get_include_path()
146 );
147 array_splice( $_SERVER['argv'], 1, 0, '--include-path' );
148 }
149
150 $key = array_search( '--debug-tests', $_SERVER['argv'] );
151 if ( $key !== false && array_search( '--printer', $_SERVER['argv'] ) === false ) {
152 unset( $_SERVER['argv'][$key] );
153 array_splice( $_SERVER['argv'], 1, 0, 'MediaWikiPHPUnitTestListener' );
154 array_splice( $_SERVER['argv'], 1, 0, '--printer' );
155 }
156
157 foreach ( self::$additionalOptions as $option => $default ) {
158 $key = array_search( '--' . $option, $_SERVER['argv'] );
159 if ( $key !== false ) {
160 unset( $_SERVER['argv'][$key] );
161 if ( $this->mParams[$option]['withArg'] ) {
162 self::$additionalOptions[$option] = $_SERVER['argv'][$key + 1];
163 unset( $_SERVER['argv'][$key + 1] );
164 } else {
165 self::$additionalOptions[$option] = true;
166 }
167 }
168 }
169
170 }
171
172 public function getDbType() {
173 return Maintenance::DB_ADMIN;
174 }
175
176 /**
177 * Force the format of elements in $_SERVER['argv']
178 * - Split args such as "wiki=enwiki" into two separate arg elements "wiki" and "enwiki"
179 */
180 private function forceFormatServerArgv() {
181 $argv = array();
182 foreach ( $_SERVER['argv'] as $key => $arg ) {
183 if ( $key === 0 ) {
184 $argv[0] = $arg;
185 } elseif ( strstr( $arg, '=' ) ) {
186 foreach ( explode( '=', $arg, 2 ) as $argPart ) {
187 $argv[] = $argPart;
188 }
189 } else {
190 $argv[] = $arg;
191 }
192 }
193 $_SERVER['argv'] = $argv;
194 }
195
196 }
197
198 $maintClass = 'PHPUnitMaintClass';
199 require RUN_MAINTENANCE_IF_MAIN;
200
201 // Prevent segfault when we have lots of unit tests (bug 62623)
202 if ( version_compare( PHP_VERSION, '5.4.0', '<' ) ) {
203 register_shutdown_function( function () {
204 gc_collect_cycles();
205 gc_disable();
206 } );
207 }
208
209
210 $ok = false;
211
212 foreach ( array(
213 stream_resolve_include_path( 'phpunit.phar' ),
214 'PHPUnit/Runner/Version.php',
215 'PHPUnit/Autoload.php'
216 ) as $includePath ) {
217 @include_once $includePath;
218 if ( class_exists( 'PHPUnit_TextUI_Command' ) ) {
219 $ok = true;
220 break;
221 }
222 }
223
224 if ( !$ok ) {
225 die( "Couldn't find a usable PHPUnit.\n" );
226 }
227
228 $puVersion = PHPUnit_Runner_Version::id();
229 if ( $puVersion !== '@package_version@' && version_compare( $puVersion, '3.7.0', '<' ) ) {
230 die( "PHPUnit 3.7.0 or later required; you have {$puVersion}.\n" );
231 }
232
233 PHPUnit_TextUI_Command::main();