Merge "Log profiling data when tests have finished."
[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 __DIR__
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 run( array $argv, $exit = true ) {
57 $ret = parent::run( $argv, false );
58
59 // Return to real wiki db, so profiling data is preserved
60 MediaWikiTestCase::teardownTestDB();
61
62 // Log profiling data, e.g. in the database or UDP
63 wfLogProfilingData();
64
65 if ( $exit ) {
66 exit( $ret );
67 } else {
68 return $ret;
69 }
70 }
71
72 public function showHelp() {
73 parent::showHelp();
74
75 print <<<EOT
76
77 ParserTest-specific options:
78
79 --regex="<regex>" Only run parser tests that match the given regex
80 --file="<filename>" Prints the version and exits.
81 --keep-uploads Re-use the same upload directory for each test, don't delete it
82
83
84 Database options:
85 --use-normal-tables Use normal DB tables.
86 --reuse-db Init DB only if tables are missing and keep after finish.
87
88
89 EOT;
90 }
91
92 }