This introduces --wiki as a dummy paramter to the PHPUnit job, so it no longer complains and errors our. The parameter is already picked up correctly be Maintenance.php. I have a wiki family setup with a Wikibase repo and client using the same install base, and the same LanguageSettings.php. Different databases etc are triggered based on the request URI or, for maintenance scripts, by the --wiki paramters. I can run maintenance scripts etc against the client setup using --wiki client. But how do I run unit tests against the client setup? If I try: $ phpunit.php --wiki client unrecognized option --wiki $ That's because after Maintenances.inc (correctly) processes the command line parameters, phpunit also tries to process them - and complains, because it doesn't know --wiki. This change introduces --wiki as a dummy parameter to phpunit to work around this. With this patch applied, I can run unit tests against my client setup using phpunit.php --wiki client as expected. Change-Id: I6cf319cdbdf55a541c986838d370aa324994ae78
97 lines
2.4 KiB
PHP
97 lines
2.4 KiB
PHP
<?php
|
|
|
|
class MediaWikiPHPUnitCommand extends PHPUnit_TextUI_Command {
|
|
|
|
static $additionalOptions = array(
|
|
'regex=' => false,
|
|
'file=' => false,
|
|
'use-filebackend=' => false,
|
|
'keep-uploads' => false,
|
|
'use-normal-tables' => false,
|
|
'reuse-db' => false,
|
|
'wiki=' => false,
|
|
);
|
|
|
|
public function __construct() {
|
|
foreach( self::$additionalOptions as $option => $default ) {
|
|
$this->longOptions[$option] = $option . 'Handler';
|
|
}
|
|
|
|
}
|
|
|
|
public static function main( $exit = true ) {
|
|
$command = new self;
|
|
|
|
if( wfIsWindows() ) {
|
|
# Windows does not come anymore with ANSI.SYS loaded by default
|
|
# PHPUnit uses the suite.xml parameters to enable/disable colors
|
|
# which can be then forced to be enabled with --colors.
|
|
# The below code inject a parameter just like if the user called
|
|
# phpunit with a --no-color option (which does not exist). It
|
|
# overrides the suite.xml setting.
|
|
# Probably fix bug 29226
|
|
$command->arguments['colors'] = false;
|
|
}
|
|
|
|
# Makes MediaWiki PHPUnit directory includable so the PHPUnit will
|
|
# be able to resolve relative files inclusion such as suites/*
|
|
# PHPUnit uses stream_resolve_include_path() internally
|
|
# See bug 32022
|
|
set_include_path(
|
|
__DIR__
|
|
.PATH_SEPARATOR
|
|
. get_include_path()
|
|
);
|
|
|
|
$command->run($_SERVER['argv'], $exit);
|
|
}
|
|
|
|
public function __call( $func, $args ) {
|
|
|
|
if( substr( $func, -7 ) == 'Handler' ) {
|
|
if( is_null( $args[0] ) ) $args[0] = true; //Booleans
|
|
self::$additionalOptions[substr( $func, 0, -7 ) ] = $args[0];
|
|
}
|
|
}
|
|
|
|
public function run( array $argv, $exit = true ) {
|
|
wfProfileIn( __METHOD__ );
|
|
|
|
$ret = parent::run( $argv, false );
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
// Return to real wiki db, so profiling data is preserved
|
|
MediaWikiTestCase::teardownTestDB();
|
|
|
|
// Log profiling data, e.g. in the database or UDP
|
|
wfLogProfilingData();
|
|
|
|
if ( $exit ) {
|
|
exit( $ret );
|
|
} else {
|
|
return $ret;
|
|
}
|
|
}
|
|
|
|
public function showHelp() {
|
|
parent::showHelp();
|
|
|
|
print <<<EOT
|
|
|
|
ParserTest-specific options:
|
|
|
|
--regex="<regex>" Only run parser tests that match the given regex
|
|
--file="<filename>" Prints the version and exits.
|
|
--keep-uploads Re-use the same upload directory for each test, don't delete it
|
|
|
|
|
|
Database options:
|
|
--use-normal-tables Use normal DB tables.
|
|
--reuse-db Init DB only if tables are missing and keep after finish.
|
|
|
|
|
|
EOT;
|
|
}
|
|
|
|
}
|