Revert "merged master"
[lhc/web/wiklou.git] / tests / phpunit / MediaWikiPHPUnitCommand.php
1 <?php
2
3 class MediaWikiPHPUnitCommand extends PHPUnit_TextUI_Command {
4
5 static $additionalOptions = array(
6 'regex=' => false,
7 'file=' => false,
8 'use-filebackend=' => false,
9 'keep-uploads' => false,
10 'use-normal-tables' => false,
11 'reuse-db' => false,
12 );
13
14 public function __construct() {
15 foreach( self::$additionalOptions as $option => $default ) {
16 $this->longOptions[$option] = $option . 'Handler';
17 }
18
19 }
20
21 public static function main( $exit = true ) {
22 $command = new self;
23
24 if( wfIsWindows() ) {
25 # Windows does not come anymore with ANSI.SYS loaded by default
26 # PHPUnit uses the suite.xml parameters to enable/disable colors
27 # which can be then forced to be enabled with --colors.
28 # The below code inject a parameter just like if the user called
29 # phpunit with a --no-color option (which does not exist). It
30 # overrides the suite.xml setting.
31 # Probably fix bug 29226
32 $command->arguments['colors'] = false;
33 }
34
35 # Makes MediaWiki PHPUnit directory includable so the PHPUnit will
36 # be able to resolve relative files inclusion such as suites/*
37 # PHPUnit uses stream_resolve_include_path() internally
38 # See bug 32022
39 set_include_path(
40 dirname( __FILE__ )
41 .PATH_SEPARATOR
42 . get_include_path()
43 );
44
45 $command->run($_SERVER['argv'], $exit);
46 }
47
48 public function __call( $func, $args ) {
49
50 if( substr( $func, -7 ) == 'Handler' ) {
51 if( is_null( $args[0] ) ) $args[0] = true; //Booleans
52 self::$additionalOptions[substr( $func, 0, -7 ) ] = $args[0];
53 }
54 }
55
56 public function showHelp() {
57 parent::showHelp();
58
59 print <<<EOT
60
61 ParserTest-specific options:
62
63 --regex="<regex>" Only run parser tests that match the given regex
64 --file="<filename>" Prints the version and exits.
65 --keep-uploads Re-use the same upload directory for each test, don't delete it
66
67
68 Database options:
69 --use-normal-tables Use normal DB tables.
70 --reuse-db Init DB only if tables are missing and keep after finish.
71
72
73 EOT;
74 }
75
76 }