MediaWiki REL1_30
phpunit.php
Go to the documentation of this file.
1#!/usr/bin/env php
2<?php
9// Set a flag which can be used to detect when other scripts have been entered
10// through this entry point or not.
11define( 'MW_PHPUNIT_TEST', true );
12
13// Start up MediaWiki in command-line mode
14require_once dirname( dirname( __DIR__ ) ) . "/maintenance/Maintenance.php";
15
17
18 public static $additionalOptions = [
19 'file' => false,
20 'use-filebackend' => false,
21 'use-bagostuff' => false,
22 'use-jobqueue' => false,
23 'use-normal-tables' => false,
24 'reuse-db' => false,
25 'wiki' => false,
26 'profiler' => false,
27 ];
28
29 public function __construct() {
30 parent::__construct();
31 $this->addOption(
32 'with-phpunitclass',
33 'Class name of the PHPUnit entry point to use',
34 false,
35 true
36 );
37 $this->addOption(
38 'debug-tests',
39 'Log testing activity to the PHPUnitCommand log channel.',
40 false, # not required
41 false # no arg needed
42 );
43 $this->addOption( 'file', 'File describing parser tests.', false, true );
44 $this->addOption( 'use-filebackend', 'Use filebackend', false, true );
45 $this->addOption( 'use-bagostuff', 'Use bagostuff', false, true );
46 $this->addOption( 'use-jobqueue', 'Use jobqueue', false, true );
47 $this->addOption( 'use-normal-tables', 'Use normal DB tables.', false, false );
48 $this->addOption(
49 'reuse-db', 'Init DB only if tables are missing and keep after finish.',
50 false,
51 false
52 );
53 }
54
55 public function finalSetup() {
56 parent::finalSetup();
57
58 // Inject test autoloader
60
62 }
63
64 public function execute() {
65 global $IP;
66
67 // Deregister handler from MWExceptionHandler::installHandle so that PHPUnit's own handler
68 // stays in tact.
69 // Has to in execute() instead of finalSetup(), because finalSetup() runs before
70 // doMaintenance.php includes Setup.php, which calls MWExceptionHandler::installHandle().
71 restore_error_handler();
72
73 $this->forceFormatServerArgv();
74
75 # Make sure we have --configuration or PHPUnit might complain
76 if ( !in_array( '--configuration', $_SERVER['argv'] ) ) {
77 // Hack to eliminate the need to use the Makefile (which sucks ATM)
78 array_splice( $_SERVER['argv'], 1, 0,
79 [ '--configuration', $IP . '/tests/phpunit/suite.xml' ] );
80 }
81
82 $phpUnitClass = 'PHPUnit_TextUI_Command';
83
84 if ( $this->hasOption( 'with-phpunitclass' ) ) {
85 $phpUnitClass = $this->getOption( 'with-phpunitclass' );
86
87 # Cleanup $args array so the option and its value do not
88 # pollute PHPUnit
89 $key = array_search( '--with-phpunitclass', $_SERVER['argv'] );
90 unset( $_SERVER['argv'][$key] ); // the option
91 unset( $_SERVER['argv'][$key + 1] ); // its value
92 $_SERVER['argv'] = array_values( $_SERVER['argv'] );
93 }
94
95 $key = array_search( '--debug-tests', $_SERVER['argv'] );
96 if ( $key !== false && array_search( '--printer', $_SERVER['argv'] ) === false ) {
97 unset( $_SERVER['argv'][$key] );
98 array_splice( $_SERVER['argv'], 1, 0, 'MediaWikiPHPUnitTestListener' );
99 array_splice( $_SERVER['argv'], 1, 0, '--printer' );
100 }
101
102 foreach ( self::$additionalOptions as $option => $default ) {
103 $key = array_search( '--' . $option, $_SERVER['argv'] );
104 if ( $key !== false ) {
105 unset( $_SERVER['argv'][$key] );
106 if ( $this->mParams[$option]['withArg'] ) {
107 self::$additionalOptions[$option] = $_SERVER['argv'][$key + 1];
108 unset( $_SERVER['argv'][$key + 1] );
109 } else {
110 self::$additionalOptions[$option] = true;
111 }
112 }
113 }
114
115 if ( !class_exists( 'PHPUnit_Framework_TestCase' ) ) {
116 echo "PHPUnit not found. Please install it and other dev dependencies by
117 running `composer install` in MediaWiki root directory.\n";
118 exit( 1 );
119 }
120 if ( !class_exists( $phpUnitClass ) ) {
121 echo "PHPUnit entry point '" . $phpUnitClass . "' not found. Please make sure you installed
122 the containing component and check the spelling of the class name.\n";
123 exit( 1 );
124 }
125
126 echo defined( 'HHVM_VERSION' ) ?
127 'Using HHVM ' . HHVM_VERSION . ' (' . PHP_VERSION . ")\n" :
128 'Using PHP ' . PHP_VERSION . "\n";
129
130 // Prepare global services for unit tests.
131 MediaWikiTestCase::prepareServices( new GlobalVarConfig() );
132
133 $phpUnitClass::main();
134 }
135
136 public function getDbType() {
138 }
139
140 protected function addOption( $name, $description, $required = false,
141 $withArg = false, $shortName = false, $multiOccurrence = false
142 ) {
143 // ignore --quiet which does not really make sense for unit tests
144 if ( $name !== 'quiet' ) {
145 parent::addOption( $name, $description, $required, $withArg, $shortName, $multiOccurrence );
146 }
147 }
148
153 private function forceFormatServerArgv() {
154 $argv = [];
155 foreach ( $_SERVER['argv'] as $key => $arg ) {
156 if ( $key === 0 ) {
157 $argv[0] = $arg;
158 } elseif ( strstr( $arg, '=' ) ) {
159 foreach ( explode( '=', $arg, 2 ) as $argPart ) {
160 $argv[] = $argPart;
161 }
162 } else {
163 $argv[] = $arg;
164 }
165 }
166 $_SERVER['argv'] = $argv;
167 }
168
169}
170
171$maintClass = 'PHPUnitMaintClass';
global $argv
Accesses configuration settings from $GLOBALS.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
static requireTestsAutoloader()
Call this to set up the autoloader to allow classes to be used from the tests directory.
hasOption( $name)
Checks to see if a particular param exists.
getOption( $name, $default=null)
Get an option, or return the default.
getDbType()
Does the script need different DB access? By default, we give Maintenance scripts normal rights to th...
Definition phpunit.php:136
forceFormatServerArgv()
Force the format of elements in $_SERVER['argv'].
Definition phpunit.php:153
execute()
Do the actual work.
Definition phpunit.php:64
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition phpunit.php:140
static $additionalOptions
Definition phpunit.php:18
__construct()
Default constructor.
Definition phpunit.php:29
finalSetup()
Handle some last-minute setup here.
Definition phpunit.php:55
static applyInitialConfig()
This should be called before Setup.php, e.g.
Definition TestSetup.php:11
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when needed(most notably, OutputPage::addWikiText()). The StandardSkin object is a complete implementation
$IP
Definition update.php:3
require_once RUN_MAINTENANCE_IF_MAIN
$maintClass
Definition phpunit.php:171