3 * Helper code for the MediaWiki parser test suite. Some code is duplicated
4 * in PHPUnit's NewParserTests.php, so you'll probably want to update both
7 * Copyright © 2004, 2010 Brion Vibber <brion@pobox.com>
8 * https://www.mediawiki.org/
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
25 * @todo Make this more independent of the configuration (and if possible the database)
30 use MediaWiki\MediaWikiServices;
37 * @var bool $color whereas output should be colorized
42 * @var bool $showOutput Show test output
47 * @var bool $useTemporaryTables Use temporary tables for the temporary database
49 private $useTemporaryTables = true;
52 * @var bool $databaseSetupDone True if the database has been set up
54 private $databaseSetupDone = false;
57 * Our connection to the database
63 * Database clone helper
78 private $maxFuzzTestLength = 300;
79 private $fuzzSeed = 0;
80 private $memoryLimit = 50;
81 private $uploadDir = null;
84 private $savedGlobals = [];
87 * Sets terminal colorization and diff/quick modes depending on OS and
88 * command-line options (--color and --quick).
89 * @param array $options
91 public function __construct( $options = [] ) {
92 # Only colorize output if stdout is a terminal.
93 $this->color = !wfIsWindows() && Maintenance::posix_isatty( 1 );
95 if ( isset( $options['color'] ) ) {
96 switch ( $options['color'] ) {
107 $this->term = $this->color
108 ? new AnsiTermColorer()
109 : new DummyTermColorer();
111 $this->showDiffs = !isset( $options['quick'] );
112 $this->showProgress = !isset( $options['quiet'] );
113 $this->showFailure = !(
114 isset( $options['quiet'] )
115 && ( isset( $options['record'] )
116 || isset( $options['compare'] ) ) ); // redundant output
118 $this->showOutput = isset( $options['show-output'] );
120 if ( isset( $options['filter'] ) ) {
121 $options['regex'] = $options['filter'];
124 if ( isset( $options['regex'] ) ) {
125 if ( isset( $options['record'] ) ) {
126 echo "Warning: --record cannot be used with --regex, disabling --record\n";
127 unset( $options['record'] );
129 $this->regex = $options['regex'];
135 $this->setupRecorder( $options );
136 $this->keepUploads = isset( $options['keep-uploads'] );
138 if ( $this->keepUploads ) {
139 $this->uploadDir = wfTempDir() . '/mwParser-images';
141 $this->uploadDir = wfTempDir() . "/mwParser-" . mt_rand() . "-images";
144 if ( isset( $options['seed'] ) ) {
145 $this->fuzzSeed = intval( $options['seed'] ) - 1;
148 $this->runDisabled = isset( $options['run-disabled'] );
149 $this->runParsoid = isset( $options['run-parsoid'] );
151 $this->djVuSupport = new DjVuSupport();
152 $this->tidySupport = new TidySupport();
153 if ( !$this->tidySupport->isEnabled() ) {
154 echo "Warning: tidy is not installed, skipping some tests\n";
157 if ( !extension_loaded( 'gd' ) ) {
158 echo "Warning: GD extension is not present, thumbnailing tests will probably fail\n";
162 $this->functionHooks = [];
163 $this->transparentHooks = [];
168 global $wgParser, $wgParserConf, $IP, $messageMemc, $wgMemc,
169 $wgUser, $wgLang, $wgOut, $wgRequest, $wgStyleDirectory,
170 $wgExtraNamespaces, $wgNamespaceAliases, $wgNamespaceProtection, $wgLocalFileRepo,
171 $wgExtraInterlanguageLinkPrefixes, $wgLocalInterwikis,
172 $parserMemc, $wgThumbnailScriptPath, $wgScriptPath, $wgResourceBasePath,
173 $wgArticlePath, $wgScript, $wgStylePath, $wgExtensionAssetsPath,
174 $wgMainCacheType, $wgMessageCacheType, $wgParserCacheType, $wgLockManagers;
177 $wgScript = '/index.php';
178 $wgStylePath = '/skins';
179 $wgResourceBasePath = '';
180 $wgExtensionAssetsPath = '/extensions';
181 $wgArticlePath = '/wiki/$1';
182 $wgThumbnailScriptPath = false;
183 $wgLockManagers = [ [
184 'name' => 'fsLockManager',
185 'class' => 'FSLockManager',
186 'lockDirectory' => $this->uploadDir . '/lockdir',
188 'name' => 'nullLockManager',
189 'class' => 'NullLockManager',
192 'class' => 'LocalRepo',
194 'url' => 'http://example.com/images',
196 'transformVia404' => false,
197 'backend' => new FSFileBackend( [
198 'name' => 'local-backend',
199 'wikiId' => wfWikiID(),
200 'containerPaths' => [
201 'local-public' => $this->uploadDir . '/public',
202 'local-thumb' => $this->uploadDir . '/thumb',
203 'local-temp' => $this->uploadDir . '/temp',
204 'local-deleted' => $this->uploadDir . '/deleted',
208 $wgNamespaceProtection[NS_MEDIAWIKI] = 'editinterface';
209 $wgNamespaceAliases['Image'] = NS_FILE;
210 $wgNamespaceAliases['Image_talk'] = NS_FILE_TALK;
211 # add a namespace shadowing a interwiki link, to test
212 # proper precedence when resolving links. (bug 51680)
213 $wgExtraNamespaces[100] = 'MemoryAlpha';
214 $wgExtraNamespaces[101] = 'MemoryAlpha talk';
216 // XXX: tests won't run without this (for CACHE_DB)
217 if ( $wgMainCacheType === CACHE_DB ) {
218 $wgMainCacheType = CACHE_NONE;
220 if ( $wgMessageCacheType === CACHE_DB ) {
221 $wgMessageCacheType = CACHE_NONE;
223 if ( $wgParserCacheType === CACHE_DB ) {
224 $wgParserCacheType = CACHE_NONE;
227 DeferredUpdates::clearPendingUpdates();
228 $wgMemc = wfGetMainCache(); // checks $wgMainCacheType
229 $messageMemc = wfGetMessageCacheStorage();
230 $parserMemc = wfGetParserCacheStorage();
232 RequestContext::resetMain();
233 $context = new RequestContext;
235 $wgLang = $context->getLanguage();
236 $wgOut = $context->getOutput();
237 $wgRequest = $context->getRequest();
238 $wgParser = new StubObject( 'wgParser', $wgParserConf['class'], [ $wgParserConf ] );
240 if ( $wgStyleDirectory === false ) {
241 $wgStyleDirectory = "$IP/skins";
244 self::setupInterwikis();
245 $wgLocalInterwikis = [ 'local', 'mi' ];
246 // "extra language links"
247 // see https://gerrit.wikimedia.org/r/111390
248 array_push( $wgExtraInterlanguageLinkPrefixes, 'mul' );
250 // Reset namespace cache
251 MWNamespace::getCanonicalNamespaces( true );
252 Language::factory( 'en' )->resetNamespaces();
256 * Insert hardcoded interwiki in the lookup table.
258 * This function insert a set of well known interwikis that are used in
259 * the parser tests. They can be considered has fixtures are injected in
260 * the interwiki cache by using the 'InterwikiLoadPrefix' hook.
261 * Since we are not interested in looking up interwikis in the database,
262 * the hook completely replace the existing mechanism (hook returns false).
264 public static function setupInterwikis() {
265 # Hack: insert a few Wikipedia in-project interwiki prefixes,
266 # for testing inter-language links
267 Hooks::register( 'InterwikiLoadPrefix', function ( $prefix, &$iwData ) {
268 static $testInterwikis = [
270 'iw_url' => 'http://doesnt.matter.org/$1',
275 'iw_url' => 'http://en.wikipedia.org/wiki/$1',
280 'iw_url' => 'http://www.usemod.com/cgi-bin/mb.pl?$1',
285 'iw_url' => 'http://www.memory-alpha.org/en/index.php/$1',
290 'iw_url' => 'http://zh.wikipedia.org/wiki/$1',
295 'iw_url' => 'http://es.wikipedia.org/wiki/$1',
300 'iw_url' => 'http://fr.wikipedia.org/wiki/$1',
305 'iw_url' => 'http://ru.wikipedia.org/wiki/$1',
310 'iw_url' => 'http://mi.wikipedia.org/wiki/$1',
315 'iw_url' => 'http://wikisource.org/wiki/$1',
320 if ( array_key_exists( $prefix, $testInterwikis ) ) {
321 $iwData = $testInterwikis[$prefix];
324 // We only want to rely on the above fixtures
326 } );// hooks::register
330 * Remove the hardcoded interwiki lookup table.
332 public static function tearDownInterwikis() {
333 Hooks::clear( 'InterwikiLoadPrefix' );
337 * Reset the Title-related services that need resetting
340 public static function resetTitleServices() {
341 $services = MediaWikiServices::getInstance();
342 $services->resetServiceForTesting( 'TitleFormatter' );
343 $services->resetServiceForTesting( 'TitleParser' );
344 $services->resetServiceForTesting( '_MediaWikiTitleCodec' );
345 $services->resetServiceForTesting( 'LinkRenderer' );
346 $services->resetServiceForTesting( 'LinkRendererFactory' );
349 public function setupRecorder( $options ) {
350 if ( isset( $options['record'] ) ) {
351 $this->recorder = new DbTestRecorder( $this );
352 $this->recorder->version = isset( $options['setversion'] ) ?
353 $options['setversion'] : SpecialVersion::getVersion();
354 } elseif ( isset( $options['compare'] ) ) {
355 $this->recorder = new DbTestPreviewer( $this );
357 $this->recorder = new TestRecorder( $this );
362 * Remove last character if it is a newline
367 public static function chomp( $s ) {
368 if ( substr( $s, -1 ) === "\n" ) {
369 return substr( $s, 0, -1 );
376 * Run a fuzz test series
377 * Draw input from a set of test files
378 * @param array $filenames
380 function fuzzTest( $filenames ) {
381 $GLOBALS['wgContLang'] = Language::factory( 'en' );
382 $dict = $this->getFuzzInput( $filenames );
383 $dictSize = strlen( $dict );
384 $logMaxLength = log( $this->maxFuzzTestLength );
385 $this->setupDatabase();
386 ini_set( 'memory_limit', $this->memoryLimit * 1048576 );
391 $opts = ParserOptions::newFromUser( $user );
392 $title = Title::makeTitle( NS_MAIN, 'Parser_test' );
395 // Generate test input
396 mt_srand( ++$this->fuzzSeed );
397 $totalLength = mt_rand( 1, $this->maxFuzzTestLength );
400 while ( strlen( $input ) < $totalLength ) {
401 $logHairLength = mt_rand( 0, 1000000 ) / 1000000 * $logMaxLength;
402 $hairLength = min( intval( exp( $logHairLength ) ), $dictSize );
403 $offset = mt_rand( 0, $dictSize - $hairLength );
404 $input .= substr( $dict, $offset, $hairLength );
407 $this->setupGlobals();
408 $parser = $this->getParser();
412 $parser->parse( $input, $title, $opts );
414 } catch ( Exception $exception ) {
419 echo "Test failed with seed {$this->fuzzSeed}\n";
421 printf( "string(%d) \"%s\"\n\n", strlen( $input ), $input );
428 $this->teardownGlobals();
429 $parser->__destruct();
431 if ( $numTotal % 100 == 0 ) {
432 $usage = intval( memory_get_usage( true ) / $this->memoryLimit / 1048576 * 100 );
433 echo "{$this->fuzzSeed}: $numSuccess/$numTotal (mem: $usage%)\n";
435 echo "Out of memory:\n";
436 $memStats = $this->getMemoryBreakdown();
438 foreach ( $memStats as $name => $usage ) {
439 echo "$name: $usage\n";
448 * Get an input dictionary from a set of parser test files
449 * @param array $filenames
452 function getFuzzInput( $filenames ) {
455 foreach ( $filenames as $filename ) {
456 $contents = file_get_contents( $filename );
458 '/!!\s*(input|wikitext)\n(.*?)\n!!\s*(result|html|html\/\*|html\/php)/s',
463 foreach ( $matches[1] as $match ) {
464 $dict .= $match . "\n";
472 * Get a memory usage breakdown
475 function getMemoryBreakdown() {
478 foreach ( $GLOBALS as $name => $value ) {
479 $memStats['$' . $name] = strlen( serialize( $value ) );
482 $classes = get_declared_classes();
484 foreach ( $classes as $class ) {
485 $rc = new ReflectionClass( $class );
486 $props = $rc->getStaticProperties();
487 $memStats[$class] = strlen( serialize( $props ) );
488 $methods = $rc->getMethods();
490 foreach ( $methods as $method ) {
491 $memStats[$class] += strlen( serialize( $method->getStaticVariables() ) );
495 $functions = get_defined_functions();
497 foreach ( $functions['user'] as $function ) {
498 $rf = new ReflectionFunction( $function );
499 $memStats["$function()"] = strlen( serialize( $rf->getStaticVariables() ) );
512 * Run a series of tests listed in the given text files.
513 * Each test consists of a brief description, wikitext input,
514 * and the expected HTML output.
516 * Prints status updates on stdout and counts up the total
517 * number and percentage of passed tests.
519 * @param array $filenames Array of strings
520 * @return bool True if passed all tests, false if any tests failed.
522 public function runTestsFromFiles( $filenames ) {
525 // be sure, ParserTest::addArticle has correct language set,
526 // so that system messages gets into the right language cache
527 $GLOBALS['wgLanguageCode'] = 'en';
528 $GLOBALS['wgContLang'] = Language::factory( 'en' );
530 $this->recorder->start();
532 $this->setupDatabase();
535 foreach ( $filenames as $filename ) {
536 echo "Running parser tests from: $filename\n";
537 $tests = new TestFileIterator( $filename, $this );
538 $ok = $this->runTests( $tests ) && $ok;
541 $this->teardownDatabase();
542 $this->recorder->report();
543 } catch ( DBError $e ) {
544 echo $e->getMessage();
546 $this->recorder->end();
551 function runTests( $tests ) {
554 foreach ( $tests as $t ) {
556 $this->runTest( $t['test'], $t['input'], $t['result'], $t['options'], $t['config'] );
557 $ok = $ok && $result;
558 $this->recorder->record( $t['test'], $t['subtest'], $result );
561 if ( $this->showProgress ) {
569 * Get a Parser object
571 * @param string $preprocessor
574 function getParser( $preprocessor = null ) {
575 global $wgParserConf;
577 $class = $wgParserConf['class'];
578 $parser = new $class( [ 'preprocessorClass' => $preprocessor ] + $wgParserConf );
580 foreach ( $this->hooks as $tag => $callback ) {
581 $parser->setHook( $tag, $callback );
584 foreach ( $this->functionHooks as $tag => $bits ) {
585 list( $callback, $flags ) = $bits;
586 $parser->setFunctionHook( $tag, $callback, $flags );
589 foreach ( $this->transparentHooks as $tag => $callback ) {
590 $parser->setTransparentTagHook( $tag, $callback );
593 Hooks::run( 'ParserTestParser', [ &$parser ] );
599 * Run a given wikitext input through a freshly-constructed wiki parser,
600 * and compare the output against the expected results.
601 * Prints status and explanatory messages to stdout.
603 * @param string $desc Test's description
604 * @param string $input Wikitext to try rendering
605 * @param string $result Result to output
606 * @param array $opts Test's options
607 * @param string $config Overrides for global variables, one per line
610 public function runTest( $desc, $input, $result, $opts, $config ) {
611 if ( $this->showProgress ) {
612 $this->showTesting( $desc );
615 $opts = $this->parseOptions( $opts );
616 $context = $this->setupGlobals( $opts, $config );
618 $user = $context->getUser();
619 $options = ParserOptions::newFromContext( $context );
621 if ( isset( $opts['djvu'] ) ) {
622 if ( !$this->djVuSupport->isEnabled() ) {
623 return $this->showSkipped();
627 if ( isset( $opts['tidy'] ) ) {
628 if ( !$this->tidySupport->isEnabled() ) {
629 return $this->showSkipped();
631 $options->setTidy( true );
635 if ( isset( $opts['title'] ) ) {
636 $titleText = $opts['title'];
638 $titleText = 'Parser test';
641 ObjectCache::getMainWANInstance()->clearProcessCache();
642 $local = isset( $opts['local'] );
643 $preprocessor = isset( $opts['preprocessor'] ) ? $opts['preprocessor'] : null;
644 $parser = $this->getParser( $preprocessor );
645 $title = Title::newFromText( $titleText );
647 if ( isset( $opts['pst'] ) ) {
648 $out = $parser->preSaveTransform( $input, $title, $user, $options );
649 } elseif ( isset( $opts['msg'] ) ) {
650 $out = $parser->transformMsg( $input, $options, $title );
651 } elseif ( isset( $opts['section'] ) ) {
652 $section = $opts['section'];
653 $out = $parser->getSection( $input, $section );
654 } elseif ( isset( $opts['replace'] ) ) {
655 $section = $opts['replace'][0];
656 $replace = $opts['replace'][1];
657 $out = $parser->replaceSection( $input, $section, $replace );
658 } elseif ( isset( $opts['comment'] ) ) {
659 $out = Linker::formatComment( $input, $title, $local );
660 } elseif ( isset( $opts['preload'] ) ) {
661 $out = $parser->getPreloadText( $input, $title, $options );
663 $output = $parser->parse( $input, $title, $options, true, true, 1337 );
664 $output->setTOCEnabled( !isset( $opts['notoc'] ) );
665 $out = $output->getText();
666 if ( isset( $opts['tidy'] ) ) {
667 $out = preg_replace( '/\s+$/', '', $out );
670 if ( isset( $opts['showtitle'] ) ) {
671 if ( $output->getTitleText() ) {
672 $title = $output->getTitleText();
675 $out = "$title\n$out";
678 if ( isset( $opts['showindicators'] ) ) {
680 foreach ( $output->getIndicators() as $id => $content ) {
681 $indicators .= "$id=$content\n";
683 $out = $indicators . $out;
686 if ( isset( $opts['ill'] ) ) {
687 $out = implode( ' ', $output->getLanguageLinks() );
688 } elseif ( isset( $opts['cat'] ) ) {
689 $outputPage = $context->getOutput();
690 $outputPage->addCategoryLinks( $output->getCategories() );
691 $cats = $outputPage->getCategoryLinks();
693 if ( isset( $cats['normal'] ) ) {
694 $out = implode( ' ', $cats['normal'] );
701 $this->teardownGlobals();
703 $testResult = new ParserTestResult( $desc );
704 $testResult->expected = $result;
705 $testResult->actual = $out;
707 return $this->showTestResult( $testResult );
711 * Refactored in 1.22 to use ParserTestResult
712 * @param ParserTestResult $testResult
715 function showTestResult( ParserTestResult $testResult ) {
716 if ( $testResult->isSuccess() ) {
717 $this->showSuccess( $testResult );
720 $this->showFailure( $testResult );
726 * Use a regex to find out the value of an option
727 * @param string $key Name of option val to retrieve
728 * @param array $opts Options array to look in
729 * @param mixed $default Default value returned if not found
732 private static function getOptionValue( $key, $opts, $default ) {
733 $key = strtolower( $key );
735 if ( isset( $opts[$key] ) ) {
742 private function parseOptions( $instring ) {
748 // foo=bar,"baz quux"
751 (?<qstr> # Quoted string
753 (?:[^\\\\"] | \\\\.)*
759 [^"{}] | # Not a quoted string or object, or
760 (?&qstr) | # A quoted string, or
761 (?&json) # A json object (recursively)
767 (?&qstr) # Quoted val
775 (?&json) # JSON object
779 $regex = '/' . $defs . '\b
795 $valueregex = '/' . $defs . '(?&value)/x';
797 if ( preg_match_all( $regex, $instring, $matches, PREG_SET_ORDER ) ) {
798 foreach ( $matches as $bits ) {
799 $key = strtolower( $bits['k'] );
800 if ( !isset( $bits['v'] ) ) {
803 preg_match_all( $valueregex, $bits['v'], $vmatches );
804 $opts[$key] = array_map( [ $this, 'cleanupOption' ], $vmatches[0] );
805 if ( count( $opts[$key] ) == 1 ) {
806 $opts[$key] = $opts[$key][0];
814 private function cleanupOption( $opt ) {
815 if ( substr( $opt, 0, 1 ) == '"' ) {
816 return stripcslashes( substr( $opt, 1, -1 ) );
819 if ( substr( $opt, 0, 2 ) == '[[' ) {
820 return substr( $opt, 2, -2 );
823 if ( substr( $opt, 0, 1 ) == '{' ) {
824 return FormatJson::decode( $opt, true );
830 * Set up the global variables for a consistent environment for each test.
831 * Ideally this should replace the global configuration entirely.
832 * @param string $opts
833 * @param string $config
834 * @return RequestContext
836 private function setupGlobals( $opts = '', $config = '' ) {
839 # Find out values for some special options.
841 self::getOptionValue( 'language', $opts, 'en' );
843 self::getOptionValue( 'variant', $opts, false );
845 self::getOptionValue( 'wgMaxTocLevel', $opts, 999 );
846 $linkHolderBatchSize =
847 self::getOptionValue( 'wgLinkHolderBatchSize', $opts, 1000 );
850 'wgServer' => 'http://example.org',
851 'wgServerName' => 'example.org',
852 'wgScript' => '/index.php',
853 'wgScriptPath' => '',
854 'wgArticlePath' => '/wiki/$1',
855 'wgActionPaths' => [],
856 'wgLockManagers' => [ [
857 'name' => 'fsLockManager',
858 'class' => 'FSLockManager',
859 'lockDirectory' => $this->uploadDir . '/lockdir',
861 'name' => 'nullLockManager',
862 'class' => 'NullLockManager',
864 'wgLocalFileRepo' => [
865 'class' => 'LocalRepo',
867 'url' => 'http://example.com/images',
869 'transformVia404' => false,
870 'backend' => new FSFileBackend( [
871 'name' => 'local-backend',
872 'wikiId' => wfWikiID(),
873 'containerPaths' => [
874 'local-public' => $this->uploadDir,
875 'local-thumb' => $this->uploadDir . '/thumb',
876 'local-temp' => $this->uploadDir . '/temp',
877 'local-deleted' => $this->uploadDir . '/delete',
881 'wgEnableUploads' => self::getOptionValue( 'wgEnableUploads', $opts, true ),
882 'wgUploadNavigationUrl' => false,
883 'wgStylePath' => '/skins',
884 'wgSitename' => 'MediaWiki',
885 'wgLanguageCode' => $lang,
886 'wgDBprefix' => $this->db->getType() != 'oracle' ? 'parsertest_' : 'pt_',
887 'wgRawHtml' => self::getOptionValue( 'wgRawHtml', $opts, false ),
889 'wgContLang' => null,
890 'wgNamespacesWithSubpages' => [ 0 => isset( $opts['subpage'] ) ],
891 'wgMaxTocLevel' => $maxtoclevel,
892 'wgCapitalLinks' => true,
893 'wgNoFollowLinks' => true,
894 'wgNoFollowDomainExceptions' => [ 'no-nofollow.org' ],
895 'wgThumbnailScriptPath' => false,
896 'wgUseImageResize' => true,
897 'wgSVGConverter' => 'null',
898 'wgSVGConverters' => [ 'null' => 'echo "1">$output' ],
899 'wgLocaltimezone' => 'UTC',
900 'wgAllowExternalImages' => self::getOptionValue( 'wgAllowExternalImages', $opts, true ),
901 'wgThumbLimits' => [ self::getOptionValue( 'thumbsize', $opts, 180 ) ],
902 'wgDefaultLanguageVariant' => $variant,
903 'wgVariantArticlePath' => false,
904 'wgGroupPermissions' => [ '*' => [
905 'createaccount' => true,
908 'createpage' => true,
909 'createtalk' => true,
911 'wgNamespaceProtection' => [ NS_MEDIAWIKI => 'editinterface' ],
912 'wgDefaultExternalStore' => [],
913 'wgForeignFileRepos' => [],
914 'wgLinkHolderBatchSize' => $linkHolderBatchSize,
915 'wgExperimentalHtmlIds' => false,
916 'wgExternalLinkTarget' => false,
918 'wgAdaptiveMessageCache' => true,
919 'wgDisableLangConversion' => false,
920 'wgDisableTitleConversion' => false,
922 'wgUseTidy' => isset( $opts['tidy'] ),
923 'wgTidyConfig' => null,
924 'wgDebugTidy' => false,
925 'wgTidyConf' => $IP . '/includes/tidy/tidy.conf',
927 'wgTidyInternal' => $this->tidySupport->isInternal(),
931 $configLines = explode( "\n", $config );
933 foreach ( $configLines as $line ) {
934 list( $var, $value ) = explode( '=', $line, 2 );
936 $settings[$var] = eval( "return $value;" );
940 $this->savedGlobals = [];
943 Hooks::run( 'ParserTestGlobals', [ &$settings ] );
945 foreach ( $settings as $var => $val ) {
946 if ( array_key_exists( $var, $GLOBALS ) ) {
947 $this->savedGlobals[$var] = $GLOBALS[$var];
950 $GLOBALS[$var] = $val;
953 // Must be set before $context as user language defaults to $wgContLang
954 $GLOBALS['wgContLang'] = Language::factory( $lang );
955 $GLOBALS['wgMemc'] = new EmptyBagOStuff;
957 RequestContext::resetMain();
958 $context = RequestContext::getMain();
959 $GLOBALS['wgLang'] = $context->getLanguage();
960 $GLOBALS['wgOut'] = $context->getOutput();
961 $GLOBALS['wgUser'] = $context->getUser();
963 // We (re)set $wgThumbLimits to a single-element array above.
964 $context->getUser()->setOption( 'thumbsize', 0 );
968 $wgHooks['ParserTestParser'][] = 'ParserTestParserHook::setup';
969 $wgHooks['ParserGetVariableValueTs'][] = 'ParserTest::getFakeTimestamp';
971 MagicWord::clearCache();
972 MWTidy::destroySingleton();
973 RepoGroup::destroySingleton();
975 self::resetTitleServices();
981 * List of temporary tables to create, without prefix.
982 * Some of these probably aren't necessary.
985 private function listTables() {
986 $tables = [ 'user', 'user_properties', 'user_former_groups', 'page', 'page_restrictions',
987 'protected_titles', 'revision', 'text', 'pagelinks', 'imagelinks',
988 'categorylinks', 'templatelinks', 'externallinks', 'langlinks', 'iwlinks',
989 'site_stats', 'ipblocks', 'image', 'oldimage',
990 'recentchanges', 'watchlist', 'interwiki', 'logging', 'log_search',
991 'querycache', 'objectcache', 'job', 'l10n_cache', 'redirect', 'querycachetwo',
992 'archive', 'user_groups', 'page_props', 'category'
995 if ( in_array( $this->db->getType(), [ 'mysql', 'sqlite', 'oracle' ] ) ) {
996 array_push( $tables, 'searchindex' );
999 // Allow extensions to add to the list of tables to duplicate;
1000 // may be necessary if they hook into page save or other code
1001 // which will require them while running tests.
1002 Hooks::run( 'ParserTestTables', [ &$tables ] );
1008 * Set up a temporary set of wiki tables to work with for the tests.
1009 * Currently this will only be done once per run, and any changes to
1010 * the db will be visible to later tests in the run.
1012 public function setupDatabase() {
1015 if ( $this->databaseSetupDone ) {
1019 $this->db = wfGetDB( DB_MASTER );
1020 $dbType = $this->db->getType();
1022 if ( $wgDBprefix === 'parsertest_' || ( $dbType == 'oracle' && $wgDBprefix === 'pt_' ) ) {
1023 throw new MWException( 'setupDatabase should be called before setupGlobals' );
1026 $this->databaseSetupDone = true;
1028 # SqlBagOStuff broke when using temporary tables on r40209 (bug 15892).
1029 # It seems to have been fixed since (r55079?), but regressed at some point before r85701.
1030 # This works around it for now...
1031 ObjectCache::$instances[CACHE_DB] = new HashBagOStuff;
1033 # CREATE TEMPORARY TABLE breaks if there is more than one server
1034 if ( wfGetLB()->getServerCount() != 1 ) {
1035 $this->useTemporaryTables = false;
1038 $temporary = $this->useTemporaryTables || $dbType == 'postgres';
1039 $prefix = $dbType != 'oracle' ? 'parsertest_' : 'pt_';
1041 $this->dbClone = new CloneDatabase( $this->db, $this->listTables(), $prefix );
1042 $this->dbClone->useTemporaryTables( $temporary );
1043 $this->dbClone->cloneTableStructure();
1045 if ( $dbType == 'oracle' ) {
1046 $this->db->query( 'BEGIN FILL_WIKI_INFO; END;' );
1047 # Insert 0 user to prevent FK violations
1050 $this->db->insert( 'user', [
1052 'user_name' => 'Anonymous' ] );
1055 # Update certain things in site_stats
1056 $this->db->insert( 'site_stats',
1057 [ 'ss_row_id' => 1, 'ss_images' => 2, 'ss_good_articles' => 1 ] );
1059 # Reinitialise the LocalisationCache to match the database state
1060 Language::getLocalisationCache()->unloadAll();
1062 # Clear the message cache
1063 MessageCache::singleton()->clear();
1065 // Remember to update newParserTests.php after changing the below
1066 // (and it uses a slightly different syntax just for teh lulz)
1067 $this->setupUploadDir();
1068 $user = User::createNew( 'WikiSysop' );
1069 $image = wfLocalFile( Title::makeTitle( NS_FILE, 'Foobar.jpg' ) );
1070 # note that the size/width/height/bits/etc of the file
1071 # are actually set by inspecting the file itself; the arguments
1072 # to recordUpload2 have no effect. That said, we try to make things
1073 # match up so it is less confusing to readers of the code & tests.
1074 $image->recordUpload2( '', 'Upload of some lame file', 'Some lame file', [
1079 'media_type' => MEDIATYPE_BITMAP,
1080 'mime' => 'image/jpeg',
1081 'metadata' => serialize( [] ),
1082 'sha1' => Wikimedia\base_convert( '1', 16, 36, 31 ),
1083 'fileExists' => true
1084 ], $this->db->timestamp( '20010115123500' ), $user );
1086 $image = wfLocalFile( Title::makeTitle( NS_FILE, 'Thumb.png' ) );
1087 # again, note that size/width/height below are ignored; see above.
1088 $image->recordUpload2( '', 'Upload of some lame thumbnail', 'Some lame thumbnail', [
1093 'media_type' => MEDIATYPE_BITMAP,
1094 'mime' => 'image/png',
1095 'metadata' => serialize( [] ),
1096 'sha1' => Wikimedia\base_convert( '2', 16, 36, 31 ),
1097 'fileExists' => true
1098 ], $this->db->timestamp( '20130225203040' ), $user );
1100 $image = wfLocalFile( Title::makeTitle( NS_FILE, 'Foobar.svg' ) );
1101 $image->recordUpload2( '', 'Upload of some lame SVG', 'Some lame SVG', [
1106 'media_type' => MEDIATYPE_DRAWING,
1107 'mime' => 'image/svg+xml',
1108 'metadata' => serialize( [] ),
1109 'sha1' => Wikimedia\base_convert( '', 16, 36, 31 ),
1110 'fileExists' => true
1111 ], $this->db->timestamp( '20010115123500' ), $user );
1113 # This image will be blacklisted in [[MediaWiki:Bad image list]]
1114 $image = wfLocalFile( Title::makeTitle( NS_FILE, 'Bad.jpg' ) );
1115 $image->recordUpload2( '', 'zomgnotcensored', 'Borderline image', [
1120 'media_type' => MEDIATYPE_BITMAP,
1121 'mime' => 'image/jpeg',
1122 'metadata' => serialize( [] ),
1123 'sha1' => Wikimedia\base_convert( '3', 16, 36, 31 ),
1124 'fileExists' => true
1125 ], $this->db->timestamp( '20010115123500' ), $user );
1127 $image = wfLocalFile( Title::makeTitle( NS_FILE, 'Video.ogv' ) );
1128 $image->recordUpload2( '', 'A pretty movie', 'Will it play', [
1133 'media_type' => MEDIATYPE_VIDEO,
1134 'mime' => 'application/ogg',
1135 'metadata' => serialize( [] ),
1136 'sha1' => Wikimedia\base_convert( '', 16, 36, 31 ),
1137 'fileExists' => true
1138 ], $this->db->timestamp( '20010115123500' ), $user );
1141 $image = wfLocalFile( Title::makeTitle( NS_FILE, 'LoremIpsum.djvu' ) );
1142 $image->recordUpload2( '', 'Upload a DjVu', 'A DjVu', [
1147 'media_type' => MEDIATYPE_BITMAP,
1148 'mime' => 'image/vnd.djvu',
1149 'metadata' => '<?xml version="1.0" ?>
1150 <!DOCTYPE DjVuXML PUBLIC "-//W3C//DTD DjVuXML 1.1//EN" "pubtext/DjVuXML-s.dtd">
1153 <BODY><OBJECT height="3508" width="2480">
1154 <PARAM name="DPI" value="300" />
1155 <PARAM name="GAMMA" value="2.2" />
1157 <OBJECT height="3508" width="2480">
1158 <PARAM name="DPI" value="300" />
1159 <PARAM name="GAMMA" value="2.2" />
1161 <OBJECT height="3508" width="2480">
1162 <PARAM name="DPI" value="300" />
1163 <PARAM name="GAMMA" value="2.2" />
1165 <OBJECT height="3508" width="2480">
1166 <PARAM name="DPI" value="300" />
1167 <PARAM name="GAMMA" value="2.2" />
1169 <OBJECT height="3508" width="2480">
1170 <PARAM name="DPI" value="300" />
1171 <PARAM name="GAMMA" value="2.2" />
1175 'sha1' => Wikimedia\base_convert( '', 16, 36, 31 ),
1176 'fileExists' => true
1177 ], $this->db->timestamp( '20010115123600' ), $user );
1180 public function teardownDatabase() {
1181 if ( !$this->databaseSetupDone ) {
1182 $this->teardownGlobals();
1185 $this->teardownUploadDir( $this->uploadDir );
1187 $this->dbClone->destroy();
1188 $this->databaseSetupDone = false;
1190 if ( $this->useTemporaryTables ) {
1191 if ( $this->db->getType() == 'sqlite' ) {
1192 # Under SQLite the searchindex table is virtual and need
1193 # to be explicitly destroyed. See bug 29912
1194 # See also MediaWikiTestCase::destroyDB()
1195 wfDebug( __METHOD__ . " explicitly destroying sqlite virtual table parsertest_searchindex\n" );
1196 $this->db->query( "DROP TABLE `parsertest_searchindex`" );
1198 # Don't need to do anything
1199 $this->teardownGlobals();
1203 $tables = $this->listTables();
1205 foreach ( $tables as $table ) {
1206 if ( $this->db->getType() == 'oracle' ) {
1207 $this->db->query( "DROP TABLE pt_$table DROP CONSTRAINTS" );
1209 $this->db->query( "DROP TABLE `parsertest_$table`" );
1213 if ( $this->db->getType() == 'oracle' ) {
1214 $this->db->query( 'BEGIN FILL_WIKI_INFO; END;' );
1217 $this->teardownGlobals();
1221 * Create a dummy uploads directory which will contain a couple
1222 * of files in order to pass existence tests.
1224 * @return string The directory
1226 private function setupUploadDir() {
1229 $dir = $this->uploadDir;
1230 if ( $this->keepUploads && is_dir( $dir ) ) {
1234 // wfDebug( "Creating upload directory $dir\n" );
1235 if ( file_exists( $dir ) ) {
1236 wfDebug( "Already exists!\n" );
1240 wfMkdirParents( $dir . '/3/3a', null, __METHOD__ );
1241 copy( "$IP/tests/phpunit/data/parser/headbg.jpg", "$dir/3/3a/Foobar.jpg" );
1242 wfMkdirParents( $dir . '/e/ea', null, __METHOD__ );
1243 copy( "$IP/tests/phpunit/data/parser/wiki.png", "$dir/e/ea/Thumb.png" );
1244 wfMkdirParents( $dir . '/0/09', null, __METHOD__ );
1245 copy( "$IP/tests/phpunit/data/parser/headbg.jpg", "$dir/0/09/Bad.jpg" );
1246 wfMkdirParents( $dir . '/f/ff', null, __METHOD__ );
1247 file_put_contents( "$dir/f/ff/Foobar.svg",
1248 '<?xml version="1.0" encoding="utf-8"?>' .
1249 '<svg xmlns="http://www.w3.org/2000/svg"' .
1250 ' version="1.1" width="240" height="180"/>' );
1251 wfMkdirParents( $dir . '/5/5f', null, __METHOD__ );
1252 copy( "$IP/tests/phpunit/data/parser/LoremIpsum.djvu", "$dir/5/5f/LoremIpsum.djvu" );
1253 wfMkdirParents( $dir . '/0/00', null, __METHOD__ );
1254 copy( "$IP/tests/phpunit/data/parser/320x240.ogv", "$dir/0/00/Video.ogv" );
1260 * Restore default values and perform any necessary clean-up
1261 * after each test runs.
1263 private function teardownGlobals() {
1264 RepoGroup::destroySingleton();
1265 FileBackendGroup::destroySingleton();
1266 LockManagerGroup::destroySingletons();
1267 LinkCache::singleton()->clear();
1268 MWTidy::destroySingleton();
1270 foreach ( $this->savedGlobals as $var => $val ) {
1271 $GLOBALS[$var] = $val;
1276 * Remove the dummy uploads directory
1277 * @param string $dir
1279 private function teardownUploadDir( $dir ) {
1280 if ( $this->keepUploads ) {
1284 // delete the files first, then the dirs.
1287 "$dir/3/3a/Foobar.jpg",
1288 "$dir/thumb/3/3a/Foobar.jpg/*.jpg",
1289 "$dir/e/ea/Thumb.png",
1290 "$dir/0/09/Bad.jpg",
1291 "$dir/5/5f/LoremIpsum.djvu",
1292 "$dir/thumb/5/5f/LoremIpsum.djvu/*-LoremIpsum.djvu.jpg",
1293 "$dir/f/ff/Foobar.svg",
1294 "$dir/thumb/f/ff/Foobar.svg/*-Foobar.svg.png",
1295 "$dir/math/f/a/5/fa50b8b616463173474302ca3e63586b.png",
1296 "$dir/0/00/Video.ogv",
1297 "$dir/thumb/0/00/Video.ogv/120px--Video.ogv.jpg",
1298 "$dir/thumb/0/00/Video.ogv/180px--Video.ogv.jpg",
1299 "$dir/thumb/0/00/Video.ogv/240px--Video.ogv.jpg",
1300 "$dir/thumb/0/00/Video.ogv/320px--Video.ogv.jpg",
1301 "$dir/thumb/0/00/Video.ogv/270px--Video.ogv.jpg",
1302 "$dir/thumb/0/00/Video.ogv/320px-seek=2-Video.ogv.jpg",
1303 "$dir/thumb/0/00/Video.ogv/320px-seek=3.3666666666667-Video.ogv.jpg",
1311 "$dir/thumb/3/3a/Foobar.jpg",
1318 "$dir/thumb/f/ff/Foobar.svg",
1326 "$dir/thumb/0/00/Video.ogv",
1329 "$dir/thumb/5/5f/LoremIpsum.djvu",
1344 * Delete the specified files, if they exist.
1345 * @param array $files Full paths to files to delete.
1347 private static function deleteFiles( $files ) {
1348 foreach ( $files as $pattern ) {
1349 foreach ( glob( $pattern ) as $file ) {
1350 if ( file_exists( $file ) ) {
1358 * Delete the specified directories, if they exist. Must be empty.
1359 * @param array $dirs Full paths to directories to delete.
1361 private static function deleteDirs( $dirs ) {
1362 foreach ( $dirs as $dir ) {
1363 if ( is_dir( $dir ) ) {
1370 * "Running test $desc..."
1371 * @param string $desc
1373 protected function showTesting( $desc ) {
1374 print "Running test $desc... ";
1378 * Print a happy success message.
1380 * Refactored in 1.22 to use ParserTestResult
1382 * @param ParserTestResult $testResult
1385 protected function showSuccess( ParserTestResult $testResult ) {
1386 if ( $this->showProgress ) {
1387 print $this->term->color( '1;32' ) . 'PASSED' . $this->term->reset() . "\n";
1394 * Print a failure message and provide some explanatory output
1395 * about what went wrong if so configured.
1397 * Refactored in 1.22 to use ParserTestResult
1399 * @param ParserTestResult $testResult
1402 protected function showFailure( ParserTestResult $testResult ) {
1403 if ( $this->showFailure ) {
1404 if ( !$this->showProgress ) {
1405 # In quiet mode we didn't show the 'Testing' message before the
1406 # test, in case it succeeded. Show it now:
1407 $this->showTesting( $testResult->description );
1410 print $this->term->color( '31' ) . 'FAILED!' . $this->term->reset() . "\n";
1412 if ( $this->showOutput ) {
1413 print "--- Expected ---\n{$testResult->expected}\n";
1414 print "--- Actual ---\n{$testResult->actual}\n";
1417 if ( $this->showDiffs ) {
1418 print $this->quickDiff( $testResult->expected, $testResult->actual );
1419 if ( !$this->wellFormed( $testResult->actual ) ) {
1420 print "XML error: $this->mXmlError\n";
1429 * Print a skipped message.
1433 protected function showSkipped() {
1434 if ( $this->showProgress ) {
1435 print $this->term->color( '1;33' ) . 'SKIPPED' . $this->term->reset() . "\n";
1442 * Run given strings through a diff and return the (colorized) output.
1443 * Requires writable /tmp directory and a 'diff' command in the PATH.
1445 * @param string $input
1446 * @param string $output
1447 * @param string $inFileTail Tailing for the input file name
1448 * @param string $outFileTail Tailing for the output file name
1451 protected function quickDiff( $input, $output,
1452 $inFileTail = 'expected', $outFileTail = 'actual'
1454 # Windows, or at least the fc utility, is retarded
1455 $slash = wfIsWindows() ? '\\' : '/';
1456 $prefix = wfTempDir() . "{$slash}mwParser-" . mt_rand();
1458 $infile = "$prefix-$inFileTail";
1459 $this->dumpToFile( $input, $infile );
1461 $outfile = "$prefix-$outFileTail";
1462 $this->dumpToFile( $output, $outfile );
1464 $shellInfile = wfEscapeShellArg( $infile );
1465 $shellOutfile = wfEscapeShellArg( $outfile );
1468 // we assume that people with diff3 also have usual diff
1469 $shellCommand = ( wfIsWindows() && !$wgDiff3 ) ? 'fc' : 'diff -au';
1471 $diff = wfShellExec( "$shellCommand $shellInfile $shellOutfile" );
1476 return $this->colorDiff( $diff );
1480 * Write the given string to a file, adding a final newline.
1482 * @param string $data
1483 * @param string $filename
1485 private function dumpToFile( $data, $filename ) {
1486 $file = fopen( $filename, "wt" );
1487 fwrite( $file, $data . "\n" );
1492 * Colorize unified diff output if set for ANSI color output.
1493 * Subtractions are colored blue, additions red.
1495 * @param string $text
1498 protected function colorDiff( $text ) {
1499 return preg_replace(
1500 [ '/^(-.*)$/m', '/^(\+.*)$/m' ],
1501 [ $this->term->color( 34 ) . '$1' . $this->term->reset(),
1502 $this->term->color( 31 ) . '$1' . $this->term->reset() ],
1507 * Show "Reading tests from ..."
1509 * @param string $path
1511 public function showRunFile( $path ) {
1512 print $this->term->color( 1 ) .
1513 "Reading tests from \"$path\"..." .
1514 $this->term->reset() .
1519 * Insert a temporary test article
1520 * @param string $name The title, including any prefix
1521 * @param string $text The article text
1522 * @param int|string $line The input line number, for reporting errors
1523 * @param bool|string $ignoreDuplicate Whether to silently ignore duplicate pages
1525 * @throws MWException
1527 public static function addArticle( $name, $text, $line = 'unknown', $ignoreDuplicate = '' ) {
1528 global $wgCapitalLinks;
1530 $oldCapitalLinks = $wgCapitalLinks;
1531 $wgCapitalLinks = true; // We only need this from SetupGlobals() See r70917#c8637
1533 $text = self::chomp( $text );
1534 $name = self::chomp( $name );
1536 $title = Title::newFromText( $name );
1538 if ( is_null( $title ) ) {
1539 throw new MWException( "invalid title '$name' at line $line\n" );
1542 $page = WikiPage::factory( $title );
1543 $page->loadPageData( 'fromdbmaster' );
1545 if ( $page->exists() ) {
1546 if ( $ignoreDuplicate == 'ignoreduplicate' ) {
1549 throw new MWException( "duplicate article '$name' at line $line\n" );
1553 $page->doEditContent( ContentHandler::makeContent( $text, $title ), '', EDIT_NEW );
1555 $wgCapitalLinks = $oldCapitalLinks;
1559 * Steal a callback function from the primary parser, save it for
1560 * application to our scary parser. If the hook is not installed,
1561 * abort processing of this file.
1563 * @param string $name
1564 * @return bool True if tag hook is present
1566 public function requireHook( $name ) {
1569 $wgParser->firstCallInit(); // make sure hooks are loaded.
1571 if ( isset( $wgParser->mTagHooks[$name] ) ) {
1572 $this->hooks[$name] = $wgParser->mTagHooks[$name];
1574 echo " This test suite requires the '$name' hook extension, skipping.\n";
1582 * Steal a callback function from the primary parser, save it for
1583 * application to our scary parser. If the hook is not installed,
1584 * abort processing of this file.
1586 * @param string $name
1587 * @return bool True if function hook is present
1589 public function requireFunctionHook( $name ) {
1592 $wgParser->firstCallInit(); // make sure hooks are loaded.
1594 if ( isset( $wgParser->mFunctionHooks[$name] ) ) {
1595 $this->functionHooks[$name] = $wgParser->mFunctionHooks[$name];
1597 echo " This test suite requires the '$name' function hook extension, skipping.\n";
1605 * Steal a callback function from the primary parser, save it for
1606 * application to our scary parser. If the hook is not installed,
1607 * abort processing of this file.
1609 * @param string $name
1610 * @return bool True if function hook is present
1612 public function requireTransparentHook( $name ) {
1615 $wgParser->firstCallInit(); // make sure hooks are loaded.
1617 if ( isset( $wgParser->mTransparentTagHooks[$name] ) ) {
1618 $this->transparentHooks[$name] = $wgParser->mTransparentTagHooks[$name];
1620 echo " This test suite requires the '$name' transparent hook extension, skipping.\n";
1627 private function wellFormed( $text ) {
1629 Sanitizer::hackDocType() .
1634 $parser = xml_parser_create( "UTF-8" );
1636 # case folding violates XML standard, turn it off
1637 xml_parser_set_option( $parser, XML_OPTION_CASE_FOLDING, false );
1639 if ( !xml_parse( $parser, $html, true ) ) {
1640 $err = xml_error_string( xml_get_error_code( $parser ) );
1641 $position = xml_get_current_byte_index( $parser );
1642 $fragment = $this->extractFragment( $html, $position );
1643 $this->mXmlError = "$err at byte $position:\n$fragment";
1644 xml_parser_free( $parser );
1649 xml_parser_free( $parser );
1654 private function extractFragment( $text, $position ) {
1655 $start = max( 0, $position - 10 );
1656 $before = $position - $start;
1658 $this->term->color( 34 ) .
1659 substr( $text, $start, $before ) .
1660 $this->term->color( 0 ) .
1661 $this->term->color( 31 ) .
1662 $this->term->color( 1 ) .
1663 substr( $text, $position, 1 ) .
1664 $this->term->color( 0 ) .
1665 $this->term->color( 34 ) .
1666 substr( $text, $position + 1, 9 ) .
1667 $this->term->color( 0 ) .
1669 $display = str_replace( "\n", ' ', $fragment );
1671 str_repeat( ' ', $before ) .
1672 $this->term->color( 31 ) .
1674 $this->term->color( 0 );
1676 return "$display\n$caret";
1679 static function getFakeTimestamp( &$parser, &$ts ) {
1680 $ts = 123; // parsed as '1970-01-01T00:02:03Z'