3 * Generic backend for the MediaWiki parser test suite, used by both the
4 * standalone parserTests.php and the PHPUnit "parsertests" suite.
6 * Copyright © 2004, 2010 Brion Vibber <brion@pobox.com>
7 * https://www.mediawiki.org/
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
24 * @todo Make this more independent of the configuration (and if possible the database)
28 use Wikimedia\Rdbms\IDatabase
;
29 use MediaWiki\MediaWikiServices
;
30 use Wikimedia\ScopedCallback
;
31 use Wikimedia\TestingAccessWrapper
;
36 class ParserTestRunner
{
39 * MediaWiki core parser test files, paths
40 * will be prefixed with __DIR__ . '/'
44 private static $coreTestFiles = [
46 'extraParserTests.txt',
50 * @var bool $useTemporaryTables Use temporary tables for the temporary database
52 private $useTemporaryTables = true;
55 * @var array $setupDone The status of each setup function
57 private $setupDone = [
58 'staticSetup' => false,
59 'perTestSetup' => false,
60 'setupDatabase' => false,
61 'setDatabase' => false,
62 'setupUploads' => false,
66 * Our connection to the database
72 * Database clone helper
85 private $tidyDriver = null;
93 * The upload directory, or null to not set up an upload directory
97 private $uploadDir = null;
100 * The name of the file backend to use, or null to use MockFileBackend.
103 private $fileBackendName;
106 * A complete regex for filtering tests.
112 * A list of normalization functions to apply to the expected and actual
116 private $normalizationFunctions = [];
119 * @param TestRecorder $recorder
120 * @param array $options
122 public function __construct( TestRecorder
$recorder, $options = [] ) {
123 $this->recorder
= $recorder;
125 if ( isset( $options['norm'] ) ) {
126 foreach ( $options['norm'] as $func ) {
127 if ( in_array( $func, [ 'removeTbody', 'trimWhitespace' ] ) ) {
128 $this->normalizationFunctions
[] = $func;
130 $this->recorder
->warning(
131 "Warning: unknown normalization option \"$func\"\n" );
136 if ( isset( $options['regex'] ) && $options['regex'] !== false ) {
137 $this->regex
= $options['regex'];
143 $this->keepUploads
= !empty( $options['keep-uploads'] );
145 $this->fileBackendName
= isset( $options['file-backend'] ) ?
146 $options['file-backend'] : false;
148 $this->runDisabled
= !empty( $options['run-disabled'] );
149 $this->runParsoid
= !empty( $options['run-parsoid'] );
151 $this->tidySupport
= new TidySupport( !empty( $options['use-tidy-config'] ) );
152 if ( !$this->tidySupport
->isEnabled() ) {
153 $this->recorder
->warning(
154 "Warning: tidy is not installed, skipping some tests\n" );
157 if ( isset( $options['upload-dir'] ) ) {
158 $this->uploadDir
= $options['upload-dir'];
163 * Get list of filenames to extension and core parser tests
167 public static function getParserTestFiles() {
168 global $wgParserTestFiles;
170 // Add core test files
171 $files = array_map( function ( $item ) {
172 return __DIR__
. "/$item";
173 }, self
::$coreTestFiles );
175 // Plus legacy global files
176 $files = array_merge( $files, $wgParserTestFiles );
178 // Auto-discover extension parser tests
179 $registry = ExtensionRegistry
::getInstance();
180 foreach ( $registry->getAllThings() as $info ) {
181 $dir = dirname( $info['path'] ) . '/tests/parser';
182 if ( !file_exists( $dir ) ) {
185 $dirIterator = new RecursiveIteratorIterator(
186 new RecursiveDirectoryIterator( $dir )
188 foreach ( $dirIterator as $fileInfo ) {
189 /** @var SplFileInfo $fileInfo */
190 if ( substr( $fileInfo->getFilename(), -4 ) === '.txt' ) {
191 $files[] = $fileInfo->getPathname();
196 return array_unique( $files );
199 public function getRecorder() {
200 return $this->recorder
;
204 * Do any setup which can be done once for all tests, independent of test
205 * options, except for database setup.
207 * Public setup functions in this class return a ScopedCallback object. When
208 * this object is destroyed by going out of scope, teardown of the
209 * corresponding test setup is performed.
211 * Teardown objects may be chained by passing a ScopedCallback from a
212 * previous setup stage as the $nextTeardown parameter. This enforces the
213 * convention that teardown actions are taken in reverse order to the
214 * corresponding setup actions. When $nextTeardown is specified, a
215 * ScopedCallback will be returned which first tears down the current
216 * setup stage, and then tears down the previous setup stage which was
217 * specified by $nextTeardown.
219 * @param ScopedCallback|null $nextTeardown
220 * @return ScopedCallback
222 public function staticSetup( $nextTeardown = null ) {
223 // A note on coding style:
225 // The general idea here is to keep setup code together with
226 // corresponding teardown code, in a fine-grained manner. We have two
227 // arrays: $setup and $teardown. The code snippets in the $setup array
228 // are executed at the end of the method, before it returns, and the
229 // code snippets in the $teardown array are executed in reverse order
230 // when the Wikimedia\ScopedCallback object is consumed.
232 // Because it is a common operation to save, set and restore global
233 // variables, we have an additional convention: when the array key of
234 // $setup is a string, the string is taken to be the name of the global
235 // variable, and the element value is taken to be the desired new value.
237 // It's acceptable to just do the setup immediately, instead of adding
238 // a closure to $setup, except when the setup action depends on global
239 // variable initialisation being done first. In this case, you have to
240 // append a closure to $setup after the global variable is appended.
242 // When you add to setup functions in this class, please keep associated
243 // setup and teardown actions together in the source code, and please
244 // add comments explaining why the setup action is necessary.
249 $teardown[] = $this->markSetupDone( 'staticSetup' );
251 // Some settings which influence HTML output
252 $setup['wgSitename'] = 'MediaWiki';
253 $setup['wgServer'] = 'http://example.org';
254 $setup['wgServerName'] = 'example.org';
255 $setup['wgScriptPath'] = '';
256 $setup['wgScript'] = '/index.php';
257 $setup['wgResourceBasePath'] = '';
258 $setup['wgStylePath'] = '/skins';
259 $setup['wgExtensionAssetsPath'] = '/extensions';
260 $setup['wgArticlePath'] = '/wiki/$1';
261 $setup['wgActionPaths'] = [];
262 $setup['wgVariantArticlePath'] = false;
263 $setup['wgUploadNavigationUrl'] = false;
264 $setup['wgCapitalLinks'] = true;
265 $setup['wgNoFollowLinks'] = true;
266 $setup['wgNoFollowDomainExceptions'] = [ 'no-nofollow.org' ];
267 $setup['wgExternalLinkTarget'] = false;
268 $setup['wgExperimentalHtmlIds'] = false;
269 $setup['wgLocaltimezone'] = 'UTC';
270 $setup['wgHtml5'] = true;
271 $setup['wgDisableLangConversion'] = false;
272 $setup['wgDisableTitleConversion'] = false;
274 // "extra language links"
275 // see https://gerrit.wikimedia.org/r/111390
276 $setup['wgExtraInterlanguageLinkPrefixes'] = [ 'mul' ];
278 // All FileRepo changes should be done here by injecting services,
279 // there should be no need to change global variables.
280 RepoGroup
::setSingleton( $this->createRepoGroup() );
281 $teardown[] = function () {
282 RepoGroup
::destroySingleton();
285 // Set up null lock managers
286 $setup['wgLockManagers'] = [ [
287 'name' => 'fsLockManager',
288 'class' => 'NullLockManager',
290 'name' => 'nullLockManager',
291 'class' => 'NullLockManager',
293 $reset = function () {
294 LockManagerGroup
::destroySingletons();
297 $teardown[] = $reset;
299 // This allows article insertion into the prefixed DB
300 $setup['wgDefaultExternalStore'] = false;
302 // This might slightly reduce memory usage
303 $setup['wgAdaptiveMessageCache'] = true;
305 // This is essential and overrides disabling of database messages in TestSetup
306 $setup['wgUseDatabaseMessages'] = true;
307 $reset = function () {
308 MessageCache
::destroyInstance();
311 $teardown[] = $reset;
313 // It's not necessary to actually convert any files
314 $setup['wgSVGConverter'] = 'null';
315 $setup['wgSVGConverters'] = [ 'null' => 'echo "1">$output' ];
317 // Fake constant timestamp
318 Hooks
::register( 'ParserGetVariableValueTs', function ( &$parser, &$ts ) {
319 $ts = $this->getFakeTimestamp();
322 $teardown[] = function () {
323 Hooks
::clear( 'ParserGetVariableValueTs' );
326 $this->appendNamespaceSetup( $setup, $teardown );
328 // Set up interwikis and append teardown function
329 $teardown[] = $this->setupInterwikis();
331 // This affects title normalization in links. It invalidates
332 // MediaWikiTitleCodec objects.
333 $setup['wgLocalInterwikis'] = [ 'local', 'mi' ];
334 $reset = function () {
335 $this->resetTitleServices();
338 $teardown[] = $reset;
340 // Set up a mock MediaHandlerFactory
341 MediaWikiServices
::getInstance()->disableService( 'MediaHandlerFactory' );
342 MediaWikiServices
::getInstance()->redefineService(
343 'MediaHandlerFactory',
344 function ( MediaWikiServices
$services ) {
345 $handlers = $services->getMainConfig()->get( 'ParserTestMediaHandlers' );
346 return new MediaHandlerFactory( $handlers );
349 $teardown[] = function () {
350 MediaWikiServices
::getInstance()->resetServiceForTesting( 'MediaHandlerFactory' );
353 // SqlBagOStuff broke when using temporary tables on r40209 (T17892).
354 // It seems to have been fixed since (r55079?), but regressed at some point before r85701.
355 // This works around it for now...
356 global $wgObjectCaches;
357 $setup['wgObjectCaches'] = [ CACHE_DB
=> $wgObjectCaches['hash'] ] +
$wgObjectCaches;
358 if ( isset( ObjectCache
::$instances[CACHE_DB
] ) ) {
359 $savedCache = ObjectCache
::$instances[CACHE_DB
];
360 ObjectCache
::$instances[CACHE_DB
] = new HashBagOStuff
;
361 $teardown[] = function () use ( $savedCache ) {
362 ObjectCache
::$instances[CACHE_DB
] = $savedCache;
366 $teardown[] = $this->executeSetupSnippets( $setup );
368 // Schedule teardown snippets in reverse order
369 return $this->createTeardownObject( $teardown, $nextTeardown );
372 private function appendNamespaceSetup( &$setup, &$teardown ) {
373 // Add a namespace shadowing a interwiki link, to test
374 // proper precedence when resolving links. (T53680)
375 $setup['wgExtraNamespaces'] = [
376 100 => 'MemoryAlpha',
377 101 => 'MemoryAlpha_talk'
379 // Changing wgExtraNamespaces invalidates caches in MWNamespace and
380 // any live Language object, both on setup and teardown
381 $reset = function () {
382 MWNamespace
::getCanonicalNamespaces( true );
383 $GLOBALS['wgContLang']->resetNamespaces();
386 $teardown[] = $reset;
390 * Create a RepoGroup object appropriate for the current configuration
393 protected function createRepoGroup() {
394 if ( $this->uploadDir
) {
395 if ( $this->fileBackendName
) {
396 throw new MWException( 'You cannot specify both use-filebackend and upload-dir' );
398 $backend = new FSFileBackend( [
399 'name' => 'local-backend',
400 'wikiId' => wfWikiID(),
401 'basePath' => $this->uploadDir
,
402 'tmpDirectory' => wfTempDir()
404 } elseif ( $this->fileBackendName
) {
405 global $wgFileBackends;
406 $name = $this->fileBackendName
;
408 foreach ( $wgFileBackends as $conf ) {
409 if ( $conf['name'] === $name ) {
413 if ( $useConfig === false ) {
414 throw new MWException( "Unable to find file backend \"$name\"" );
416 $useConfig['name'] = 'local-backend'; // swap name
417 unset( $useConfig['lockManager'] );
418 unset( $useConfig['fileJournal'] );
419 $class = $useConfig['class'];
420 $backend = new $class( $useConfig );
422 # Replace with a mock. We do not care about generating real
423 # files on the filesystem, just need to expose the file
425 $backend = new MockFileBackend( [
426 'name' => 'local-backend',
427 'wikiId' => wfWikiID()
431 return new RepoGroup(
433 'class' => 'MockLocalRepo',
435 'url' => 'http://example.com/images',
437 'transformVia404' => false,
438 'backend' => $backend
445 * Execute an array in which elements with integer keys are taken to be
446 * callable objects, and other elements are taken to be global variable
447 * set operations, with the key giving the variable name and the value
448 * giving the new global variable value. A closure is returned which, when
449 * executed, sets the global variables back to the values they had before
450 * this function was called.
454 * @param array $setup
457 protected function executeSetupSnippets( $setup ) {
459 foreach ( $setup as $name => $value ) {
460 if ( is_int( $name ) ) {
463 $saved[$name] = isset( $GLOBALS[$name] ) ?
$GLOBALS[$name] : null;
464 $GLOBALS[$name] = $value;
467 return function () use ( $saved ) {
468 $this->executeSetupSnippets( $saved );
473 * Take a setup array in the same format as the one given to
474 * executeSetupSnippets(), and return a ScopedCallback which, when consumed,
475 * executes the snippets in the setup array in reverse order. This is used
476 * to create "teardown objects" for the public API.
480 * @param array $teardown The snippet array
481 * @param ScopedCallback|null $nextTeardown A ScopedCallback to consume
482 * @return ScopedCallback
484 protected function createTeardownObject( $teardown, $nextTeardown = null ) {
485 return new ScopedCallback( function () use ( $teardown, $nextTeardown ) {
486 // Schedule teardown snippets in reverse order
487 $teardown = array_reverse( $teardown );
489 $this->executeSetupSnippets( $teardown );
490 if ( $nextTeardown ) {
491 ScopedCallback
::consume( $nextTeardown );
497 * Set a setupDone flag to indicate that setup has been done, and return
498 * the teardown closure. If the flag was already set, throw an exception.
500 * @param string $funcName The setup function name
503 protected function markSetupDone( $funcName ) {
504 if ( $this->setupDone
[$funcName] ) {
505 throw new MWException( "$funcName is already done" );
507 $this->setupDone
[$funcName] = true;
508 return function () use ( $funcName ) {
509 $this->setupDone
[$funcName] = false;
514 * Ensure a given setup stage has been done, throw an exception if it has
517 protected function checkSetupDone( $funcName, $funcName2 = null ) {
518 if ( !$this->setupDone
[$funcName]
519 && ( $funcName === null ||
!$this->setupDone
[$funcName2] )
521 throw new MWException( "$funcName must be called before calling " .
527 * Determine whether a particular setup function has been run
529 * @param string $funcName
532 public function isSetupDone( $funcName ) {
533 return isset( $this->setupDone
[$funcName] ) ?
$this->setupDone
[$funcName] : false;
537 * Insert hardcoded interwiki in the lookup table.
539 * This function insert a set of well known interwikis that are used in
540 * the parser tests. They can be considered has fixtures are injected in
541 * the interwiki cache by using the 'InterwikiLoadPrefix' hook.
542 * Since we are not interested in looking up interwikis in the database,
543 * the hook completely replace the existing mechanism (hook returns false).
545 * @return closure for teardown
547 private function setupInterwikis() {
548 # Hack: insert a few Wikipedia in-project interwiki prefixes,
549 # for testing inter-language links
550 Hooks
::register( 'InterwikiLoadPrefix', function ( $prefix, &$iwData ) {
551 static $testInterwikis = [
553 'iw_url' => 'http://doesnt.matter.org/$1',
558 'iw_url' => 'http://en.wikipedia.org/wiki/$1',
563 'iw_url' => 'http://www.usemod.com/cgi-bin/mb.pl?$1',
568 'iw_url' => 'http://www.memory-alpha.org/en/index.php/$1',
573 'iw_url' => 'http://zh.wikipedia.org/wiki/$1',
578 'iw_url' => 'http://es.wikipedia.org/wiki/$1',
583 'iw_url' => 'http://fr.wikipedia.org/wiki/$1',
588 'iw_url' => 'http://ru.wikipedia.org/wiki/$1',
593 'iw_url' => 'http://mi.wikipedia.org/wiki/$1',
598 'iw_url' => 'http://wikisource.org/wiki/$1',
603 if ( array_key_exists( $prefix, $testInterwikis ) ) {
604 $iwData = $testInterwikis[$prefix];
607 // We only want to rely on the above fixtures
609 } );// hooks::register
613 Hooks
::clear( 'InterwikiLoadPrefix' );
618 * Reset the Title-related services that need resetting
621 private function resetTitleServices() {
622 $services = MediaWikiServices
::getInstance();
623 $services->resetServiceForTesting( 'TitleFormatter' );
624 $services->resetServiceForTesting( 'TitleParser' );
625 $services->resetServiceForTesting( '_MediaWikiTitleCodec' );
626 $services->resetServiceForTesting( 'LinkRenderer' );
627 $services->resetServiceForTesting( 'LinkRendererFactory' );
631 * Remove last character if it is a newline
636 public static function chomp( $s ) {
637 if ( substr( $s, -1 ) === "\n" ) {
638 return substr( $s, 0, -1 );
645 * Run a series of tests listed in the given text files.
646 * Each test consists of a brief description, wikitext input,
647 * and the expected HTML output.
649 * Prints status updates on stdout and counts up the total
650 * number and percentage of passed tests.
652 * Handles all setup and teardown.
654 * @param array $filenames Array of strings
655 * @return bool True if passed all tests, false if any tests failed.
657 public function runTestsFromFiles( $filenames ) {
660 $teardownGuard = $this->staticSetup();
661 $teardownGuard = $this->setupDatabase( $teardownGuard );
662 $teardownGuard = $this->setupUploads( $teardownGuard );
664 $this->recorder
->start();
668 foreach ( $filenames as $filename ) {
669 $testFileInfo = TestFileReader
::read( $filename, [
670 'runDisabled' => $this->runDisabled
,
671 'runParsoid' => $this->runParsoid
,
672 'regex' => $this->regex
] );
674 // Don't start the suite if there are no enabled tests in the file
675 if ( !$testFileInfo['tests'] ) {
679 $this->recorder
->startSuite( $filename );
680 $ok = $this->runTests( $testFileInfo ) && $ok;
681 $this->recorder
->endSuite( $filename );
684 $this->recorder
->report();
685 } catch ( DBError
$e ) {
686 $this->recorder
->warning( $e->getMessage() );
688 $this->recorder
->end();
690 ScopedCallback
::consume( $teardownGuard );
696 * Determine whether the current parser has the hooks registered in it
697 * that are required by a file read by TestFileReader.
699 public function meetsRequirements( $requirements ) {
700 foreach ( $requirements as $requirement ) {
701 switch ( $requirement['type'] ) {
703 $ok = $this->requireHook( $requirement['name'] );
706 $ok = $this->requireFunctionHook( $requirement['name'] );
708 case 'transparentHook':
709 $ok = $this->requireTransparentHook( $requirement['name'] );
720 * Run the tests from a single file. staticSetup() and setupDatabase()
721 * must have been called already.
723 * @param array $testFileInfo Parsed file info returned by TestFileReader
724 * @return bool True if passed all tests, false if any tests failed.
726 public function runTests( $testFileInfo ) {
729 $this->checkSetupDone( 'staticSetup' );
731 // Don't add articles from the file if there are no enabled tests from the file
732 if ( !$testFileInfo['tests'] ) {
736 // If any requirements are not met, mark all tests from the file as skipped
737 if ( !$this->meetsRequirements( $testFileInfo['requirements'] ) ) {
738 foreach ( $testFileInfo['tests'] as $test ) {
739 $this->recorder
->startTest( $test );
740 $this->recorder
->skipped( $test, 'required extension not enabled' );
746 $this->addArticles( $testFileInfo['articles'] );
749 foreach ( $testFileInfo['tests'] as $test ) {
750 $this->recorder
->startTest( $test );
752 $this->runTest( $test );
753 if ( $result !== false ) {
754 $ok = $ok && $result->isSuccess();
755 $this->recorder
->record( $test, $result );
763 * Get a Parser object
765 * @param string $preprocessor
768 function getParser( $preprocessor = null ) {
769 global $wgParserConf;
771 $class = $wgParserConf['class'];
772 $parser = new $class( [ 'preprocessorClass' => $preprocessor ] +
$wgParserConf );
773 ParserTestParserHook
::setup( $parser );
779 * Run a given wikitext input through a freshly-constructed wiki parser,
780 * and compare the output against the expected results.
781 * Prints status and explanatory messages to stdout.
783 * staticSetup() and setupWikiData() must be called before this function
786 * @param array $test The test parameters:
787 * - test: The test name
788 * - desc: The subtest description
789 * - input: Wikitext to try rendering
790 * - options: Array of test options
791 * - config: Overrides for global variables, one per line
793 * @return ParserTestResult or false if skipped
795 public function runTest( $test ) {
796 wfDebug( __METHOD__
.": running {$test['desc']}" );
797 $opts = $this->parseOptions( $test['options'] );
798 $teardownGuard = $this->perTestSetup( $test );
800 $context = RequestContext
::getMain();
801 $user = $context->getUser();
802 $options = ParserOptions
::newFromContext( $context );
803 $options->setTimestamp( $this->getFakeTimestamp() );
805 if ( !isset( $opts['wrap'] ) ) {
806 $options->setWrapOutputClass( false );
809 if ( isset( $opts['tidy'] ) ) {
810 if ( !$this->tidySupport
->isEnabled() ) {
811 $this->recorder
->skipped( $test, 'tidy extension is not installed' );
814 $options->setTidy( true );
818 if ( isset( $opts['title'] ) ) {
819 $titleText = $opts['title'];
821 $titleText = 'Parser test';
824 $local = isset( $opts['local'] );
825 $preprocessor = isset( $opts['preprocessor'] ) ?
$opts['preprocessor'] : null;
826 $parser = $this->getParser( $preprocessor );
827 $title = Title
::newFromText( $titleText );
829 if ( isset( $opts['pst'] ) ) {
830 $out = $parser->preSaveTransform( $test['input'], $title, $user, $options );
831 $output = $parser->getOutput();
832 } elseif ( isset( $opts['msg'] ) ) {
833 $out = $parser->transformMsg( $test['input'], $options, $title );
834 } elseif ( isset( $opts['section'] ) ) {
835 $section = $opts['section'];
836 $out = $parser->getSection( $test['input'], $section );
837 } elseif ( isset( $opts['replace'] ) ) {
838 $section = $opts['replace'][0];
839 $replace = $opts['replace'][1];
840 $out = $parser->replaceSection( $test['input'], $section, $replace );
841 } elseif ( isset( $opts['comment'] ) ) {
842 $out = Linker
::formatComment( $test['input'], $title, $local );
843 } elseif ( isset( $opts['preload'] ) ) {
844 $out = $parser->getPreloadText( $test['input'], $title, $options );
846 $output = $parser->parse( $test['input'], $title, $options, true, true, 1337 );
847 $output->setTOCEnabled( !isset( $opts['notoc'] ) );
848 $out = $output->getText();
849 if ( isset( $opts['tidy'] ) ) {
850 $out = preg_replace( '/\s+$/', '', $out );
853 if ( isset( $opts['showtitle'] ) ) {
854 if ( $output->getTitleText() ) {
855 $title = $output->getTitleText();
858 $out = "$title\n$out";
861 if ( isset( $opts['showindicators'] ) ) {
863 foreach ( $output->getIndicators() as $id => $content ) {
864 $indicators .= "$id=$content\n";
866 $out = $indicators . $out;
869 if ( isset( $opts['ill'] ) ) {
870 $out = implode( ' ', $output->getLanguageLinks() );
871 } elseif ( isset( $opts['cat'] ) ) {
873 foreach ( $output->getCategories() as $name => $sortkey ) {
877 $out .= "cat=$name sort=$sortkey";
882 if ( isset( $output ) && isset( $opts['showflags'] ) ) {
883 $actualFlags = array_keys( TestingAccessWrapper
::newFromObject( $output )->mFlags
);
884 sort( $actualFlags );
885 $out .= "\nflags=" . join( ', ', $actualFlags );
888 ScopedCallback
::consume( $teardownGuard );
890 $expected = $test['result'];
891 if ( count( $this->normalizationFunctions
) ) {
892 $expected = ParserTestResultNormalizer
::normalize(
893 $test['expected'], $this->normalizationFunctions
);
894 $out = ParserTestResultNormalizer
::normalize( $out, $this->normalizationFunctions
);
897 $testResult = new ParserTestResult( $test, $expected, $out );
902 * Use a regex to find out the value of an option
903 * @param string $key Name of option val to retrieve
904 * @param array $opts Options array to look in
905 * @param mixed $default Default value returned if not found
908 private static function getOptionValue( $key, $opts, $default ) {
909 $key = strtolower( $key );
911 if ( isset( $opts[$key] ) ) {
919 * Given the options string, return an associative array of options.
920 * @todo Move this to TestFileReader
922 * @param string $instring
925 private function parseOptions( $instring ) {
931 // foo=bar,"baz quux"
934 (?<qstr> # Quoted string
936 (?:[^\\\\"] | \\\\.)*
942 [^"{}] | # Not a quoted string or object, or
943 (?&qstr) | # A quoted string, or
944 (?&json) # A json object (recursively)
950 (?&qstr) # Quoted val
958 (?&json) # JSON object
962 $regex = '/' . $defs . '\b
978 $valueregex = '/' . $defs . '(?&value)/x';
980 if ( preg_match_all( $regex, $instring, $matches, PREG_SET_ORDER
) ) {
981 foreach ( $matches as $bits ) {
982 $key = strtolower( $bits['k'] );
983 if ( !isset( $bits['v'] ) ) {
986 preg_match_all( $valueregex, $bits['v'], $vmatches );
987 $opts[$key] = array_map( [ $this, 'cleanupOption' ], $vmatches[0] );
988 if ( count( $opts[$key] ) == 1 ) {
989 $opts[$key] = $opts[$key][0];
997 private function cleanupOption( $opt ) {
998 if ( substr( $opt, 0, 1 ) == '"' ) {
999 return stripcslashes( substr( $opt, 1, -1 ) );
1002 if ( substr( $opt, 0, 2 ) == '[[' ) {
1003 return substr( $opt, 2, -2 );
1006 if ( substr( $opt, 0, 1 ) == '{' ) {
1007 return FormatJson
::decode( $opt, true );
1013 * Do any required setup which is dependent on test options.
1015 * @see staticSetup() for more information about setup/teardown
1017 * @param array $test Test info supplied by TestFileReader
1018 * @param callable|null $nextTeardown
1019 * @return ScopedCallback
1021 public function perTestSetup( $test, $nextTeardown = null ) {
1024 $this->checkSetupDone( 'setupDatabase', 'setDatabase' );
1025 $teardown[] = $this->markSetupDone( 'perTestSetup' );
1027 $opts = $this->parseOptions( $test['options'] );
1028 $config = $test['config'];
1030 // Find out values for some special options.
1032 self
::getOptionValue( 'language', $opts, 'en' );
1034 self
::getOptionValue( 'variant', $opts, false );
1036 self
::getOptionValue( 'wgMaxTocLevel', $opts, 999 );
1037 $linkHolderBatchSize =
1038 self
::getOptionValue( 'wgLinkHolderBatchSize', $opts, 1000 );
1040 // Default to fallback skin, but allow it to be overridden
1041 $skin = self
::getOptionValue( 'skin', $opts, 'fallback' );
1044 'wgEnableUploads' => self
::getOptionValue( 'wgEnableUploads', $opts, true ),
1045 'wgLanguageCode' => $langCode,
1046 'wgRawHtml' => self
::getOptionValue( 'wgRawHtml', $opts, false ),
1047 'wgNamespacesWithSubpages' => array_fill_keys(
1048 MWNamespace
::getValidNamespaces(), isset( $opts['subpage'] )
1050 'wgMaxTocLevel' => $maxtoclevel,
1051 'wgAllowExternalImages' => self
::getOptionValue( 'wgAllowExternalImages', $opts, true ),
1052 'wgThumbLimits' => [ self
::getOptionValue( 'thumbsize', $opts, 180 ) ],
1053 'wgDefaultLanguageVariant' => $variant,
1054 'wgLinkHolderBatchSize' => $linkHolderBatchSize,
1055 // Set as a JSON object like:
1056 // wgEnableMagicLinks={"ISBN":false, "PMID":false, "RFC":false}
1057 'wgEnableMagicLinks' => self
::getOptionValue( 'wgEnableMagicLinks', $opts, [] )
1058 +
[ 'ISBN' => true, 'PMID' => true, 'RFC' => true ],
1059 // Test with legacy encoding by default until HTML5 is very stable and default
1060 'wgFragmentMode' => [ 'legacy' ],
1064 $configLines = explode( "\n", $config );
1066 foreach ( $configLines as $line ) {
1067 list( $var, $value ) = explode( '=', $line, 2 );
1068 $setup[$var] = eval( "return $value;" );
1073 Hooks
::run( 'ParserTestGlobals', [ &$setup ] );
1075 // Create tidy driver
1076 if ( isset( $opts['tidy'] ) ) {
1077 // Cache a driver instance
1078 if ( $this->tidyDriver
=== null ) {
1079 $this->tidyDriver
= MWTidy
::factory( $this->tidySupport
->getConfig() );
1081 $tidy = $this->tidyDriver
;
1085 MWTidy
::setInstance( $tidy );
1086 $teardown[] = function () {
1087 MWTidy
::destroySingleton();
1090 // Set content language. This invalidates the magic word cache and title services
1091 $lang = Language
::factory( $langCode );
1092 $setup['wgContLang'] = $lang;
1093 $reset = function () {
1094 MagicWord
::clearCache();
1095 $this->resetTitleServices();
1098 $teardown[] = $reset;
1100 // Make a user object with the same language
1102 $user->setOption( 'language', $langCode );
1103 $setup['wgLang'] = $lang;
1105 // We (re)set $wgThumbLimits to a single-element array above.
1106 $user->setOption( 'thumbsize', 0 );
1108 $setup['wgUser'] = $user;
1110 // And put both user and language into the context
1111 $context = RequestContext
::getMain();
1112 $context->setUser( $user );
1113 $context->setLanguage( $lang );
1115 $oldSkin = $context->getSkin();
1116 $skinFactory = MediaWikiServices
::getInstance()->getSkinFactory();
1117 $context->setSkin( $skinFactory->makeSkin( $skin ) );
1118 $context->setOutput( new OutputPage( $context ) );
1119 $setup['wgOut'] = $context->getOutput();
1120 $teardown[] = function () use ( $context, $oldSkin ) {
1121 // Clear language conversion tables
1122 $wrapper = TestingAccessWrapper
::newFromObject(
1123 $context->getLanguage()->getConverter()
1125 $wrapper->reloadTables();
1126 // Reset context to the restored globals
1127 $context->setUser( $GLOBALS['wgUser'] );
1128 $context->setLanguage( $GLOBALS['wgContLang'] );
1129 $context->setSkin( $oldSkin );
1130 $context->setOutput( $GLOBALS['wgOut'] );
1133 $teardown[] = $this->executeSetupSnippets( $setup );
1135 return $this->createTeardownObject( $teardown, $nextTeardown );
1139 * List of temporary tables to create, without prefix.
1140 * Some of these probably aren't necessary.
1143 private function listTables() {
1144 $tables = [ 'user', 'user_properties', 'user_former_groups', 'page', 'page_restrictions',
1145 'protected_titles', 'revision', 'text', 'pagelinks', 'imagelinks',
1146 'categorylinks', 'templatelinks', 'externallinks', 'langlinks', 'iwlinks',
1147 'site_stats', 'ipblocks', 'image', 'oldimage',
1148 'recentchanges', 'watchlist', 'interwiki', 'logging', 'log_search',
1149 'querycache', 'objectcache', 'job', 'l10n_cache', 'redirect', 'querycachetwo',
1150 'archive', 'user_groups', 'page_props', 'category'
1153 if ( in_array( $this->db
->getType(), [ 'mysql', 'sqlite', 'oracle' ] ) ) {
1154 array_push( $tables, 'searchindex' );
1157 // Allow extensions to add to the list of tables to duplicate;
1158 // may be necessary if they hook into page save or other code
1159 // which will require them while running tests.
1160 Hooks
::run( 'ParserTestTables', [ &$tables ] );
1165 public function setDatabase( IDatabase
$db ) {
1167 $this->setupDone
['setDatabase'] = true;
1171 * Set up temporary DB tables.
1173 * For best performance, call this once only for all tests. However, it can
1174 * be called at the start of each test if more isolation is desired.
1176 * @todo: This is basically an unrefactored copy of
1177 * MediaWikiTestCase::setupAllTestDBs. They should be factored out somehow.
1179 * Do not call this function from a MediaWikiTestCase subclass, since
1180 * MediaWikiTestCase does its own DB setup. Instead use setDatabase().
1182 * @see staticSetup() for more information about setup/teardown
1184 * @param ScopedCallback|null $nextTeardown The next teardown object
1185 * @return ScopedCallback The teardown object
1187 public function setupDatabase( $nextTeardown = null ) {
1190 $this->db
= wfGetDB( DB_MASTER
);
1191 $dbType = $this->db
->getType();
1193 if ( $dbType == 'oracle' ) {
1194 $suspiciousPrefixes = [ 'pt_', MediaWikiTestCase
::ORA_DB_PREFIX
];
1196 $suspiciousPrefixes = [ 'parsertest_', MediaWikiTestCase
::DB_PREFIX
];
1198 if ( in_array( $wgDBprefix, $suspiciousPrefixes ) ) {
1199 throw new MWException( "\$wgDBprefix=$wgDBprefix suggests DB setup is already done" );
1204 $teardown[] = $this->markSetupDone( 'setupDatabase' );
1206 # CREATE TEMPORARY TABLE breaks if there is more than one server
1207 if ( wfGetLB()->getServerCount() != 1 ) {
1208 $this->useTemporaryTables
= false;
1211 $temporary = $this->useTemporaryTables ||
$dbType == 'postgres';
1212 $prefix = $dbType != 'oracle' ?
'parsertest_' : 'pt_';
1214 $this->dbClone
= new CloneDatabase( $this->db
, $this->listTables(), $prefix );
1215 $this->dbClone
->useTemporaryTables( $temporary );
1216 $this->dbClone
->cloneTableStructure();
1218 if ( $dbType == 'oracle' ) {
1219 $this->db
->query( 'BEGIN FILL_WIKI_INFO; END;' );
1220 # Insert 0 user to prevent FK violations
1223 $this->db
->insert( 'user', [
1225 'user_name' => 'Anonymous' ] );
1228 $teardown[] = function () {
1229 $this->teardownDatabase();
1232 // Wipe some DB query result caches on setup and teardown
1233 $reset = function () {
1234 LinkCache
::singleton()->clear();
1236 // Clear the message cache
1237 MessageCache
::singleton()->clear();
1240 $teardown[] = $reset;
1241 return $this->createTeardownObject( $teardown, $nextTeardown );
1245 * Add data about uploads to the new test DB, and set up the upload
1246 * directory. This should be called after either setDatabase() or
1249 * @param ScopedCallback|null $nextTeardown The next teardown object
1250 * @return ScopedCallback The teardown object
1252 public function setupUploads( $nextTeardown = null ) {
1255 $this->checkSetupDone( 'setupDatabase', 'setDatabase' );
1256 $teardown[] = $this->markSetupDone( 'setupUploads' );
1258 // Create the files in the upload directory (or pretend to create them
1259 // in a MockFileBackend). Append teardown callback.
1260 $teardown[] = $this->setupUploadBackend();
1263 $user = User
::createNew( 'WikiSysop' );
1265 // Register the uploads in the database
1267 $image = wfLocalFile( Title
::makeTitle( NS_FILE
, 'Foobar.jpg' ) );
1268 # note that the size/width/height/bits/etc of the file
1269 # are actually set by inspecting the file itself; the arguments
1270 # to recordUpload2 have no effect. That said, we try to make things
1271 # match up so it is less confusing to readers of the code & tests.
1272 $image->recordUpload2( '', 'Upload of some lame file', 'Some lame file', [
1277 'media_type' => MEDIATYPE_BITMAP
,
1278 'mime' => 'image/jpeg',
1279 'metadata' => serialize( [] ),
1280 'sha1' => Wikimedia\base_convert
( '1', 16, 36, 31 ),
1281 'fileExists' => true
1282 ], $this->db
->timestamp( '20010115123500' ), $user );
1284 $image = wfLocalFile( Title
::makeTitle( NS_FILE
, 'Thumb.png' ) );
1285 # again, note that size/width/height below are ignored; see above.
1286 $image->recordUpload2( '', 'Upload of some lame thumbnail', 'Some lame thumbnail', [
1291 'media_type' => MEDIATYPE_BITMAP
,
1292 'mime' => 'image/png',
1293 'metadata' => serialize( [] ),
1294 'sha1' => Wikimedia\base_convert
( '2', 16, 36, 31 ),
1295 'fileExists' => true
1296 ], $this->db
->timestamp( '20130225203040' ), $user );
1298 $image = wfLocalFile( Title
::makeTitle( NS_FILE
, 'Foobar.svg' ) );
1299 $image->recordUpload2( '', 'Upload of some lame SVG', 'Some lame SVG', [
1304 'media_type' => MEDIATYPE_DRAWING
,
1305 'mime' => 'image/svg+xml',
1306 'metadata' => serialize( [] ),
1307 'sha1' => Wikimedia\base_convert
( '', 16, 36, 31 ),
1308 'fileExists' => true
1309 ], $this->db
->timestamp( '20010115123500' ), $user );
1311 # This image will be blacklisted in [[MediaWiki:Bad image list]]
1312 $image = wfLocalFile( Title
::makeTitle( NS_FILE
, 'Bad.jpg' ) );
1313 $image->recordUpload2( '', 'zomgnotcensored', 'Borderline image', [
1318 'media_type' => MEDIATYPE_BITMAP
,
1319 'mime' => 'image/jpeg',
1320 'metadata' => serialize( [] ),
1321 'sha1' => Wikimedia\base_convert
( '3', 16, 36, 31 ),
1322 'fileExists' => true
1323 ], $this->db
->timestamp( '20010115123500' ), $user );
1325 $image = wfLocalFile( Title
::makeTitle( NS_FILE
, 'Video.ogv' ) );
1326 $image->recordUpload2( '', 'A pretty movie', 'Will it play', [
1331 'media_type' => MEDIATYPE_VIDEO
,
1332 'mime' => 'application/ogg',
1333 'metadata' => serialize( [] ),
1334 'sha1' => Wikimedia\base_convert
( '', 16, 36, 31 ),
1335 'fileExists' => true
1336 ], $this->db
->timestamp( '20010115123500' ), $user );
1338 $image = wfLocalFile( Title
::makeTitle( NS_FILE
, 'Audio.oga' ) );
1339 $image->recordUpload2( '', 'An awesome hitsong', 'Will it play', [
1344 'media_type' => MEDIATYPE_AUDIO
,
1345 'mime' => 'application/ogg',
1346 'metadata' => serialize( [] ),
1347 'sha1' => Wikimedia\base_convert
( '', 16, 36, 31 ),
1348 'fileExists' => true
1349 ], $this->db
->timestamp( '20010115123500' ), $user );
1352 $image = wfLocalFile( Title
::makeTitle( NS_FILE
, 'LoremIpsum.djvu' ) );
1353 $image->recordUpload2( '', 'Upload a DjVu', 'A DjVu', [
1358 'media_type' => MEDIATYPE_BITMAP
,
1359 'mime' => 'image/vnd.djvu',
1360 'metadata' => '<?xml version="1.0" ?>
1361 <!DOCTYPE DjVuXML PUBLIC "-//W3C//DTD DjVuXML 1.1//EN" "pubtext/DjVuXML-s.dtd">
1364 <BODY><OBJECT height="3508" width="2480">
1365 <PARAM name="DPI" value="300" />
1366 <PARAM name="GAMMA" value="2.2" />
1368 <OBJECT height="3508" width="2480">
1369 <PARAM name="DPI" value="300" />
1370 <PARAM name="GAMMA" value="2.2" />
1372 <OBJECT height="3508" width="2480">
1373 <PARAM name="DPI" value="300" />
1374 <PARAM name="GAMMA" value="2.2" />
1376 <OBJECT height="3508" width="2480">
1377 <PARAM name="DPI" value="300" />
1378 <PARAM name="GAMMA" value="2.2" />
1380 <OBJECT height="3508" width="2480">
1381 <PARAM name="DPI" value="300" />
1382 <PARAM name="GAMMA" value="2.2" />
1386 'sha1' => Wikimedia\base_convert
( '', 16, 36, 31 ),
1387 'fileExists' => true
1388 ], $this->db
->timestamp( '20010115123600' ), $user );
1390 return $this->createTeardownObject( $teardown, $nextTeardown );
1394 * Helper for database teardown, called from the teardown closure. Destroy
1395 * the database clone and fix up some things that CloneDatabase doesn't fix.
1397 * @todo Move most things here to CloneDatabase
1399 private function teardownDatabase() {
1400 $this->checkSetupDone( 'setupDatabase' );
1402 $this->dbClone
->destroy();
1403 $this->databaseSetupDone
= false;
1405 if ( $this->useTemporaryTables
) {
1406 if ( $this->db
->getType() == 'sqlite' ) {
1407 # Under SQLite the searchindex table is virtual and need
1408 # to be explicitly destroyed. See T31912
1409 # See also MediaWikiTestCase::destroyDB()
1410 wfDebug( __METHOD__
. " explicitly destroying sqlite virtual table parsertest_searchindex\n" );
1411 $this->db
->query( "DROP TABLE `parsertest_searchindex`" );
1413 # Don't need to do anything
1417 $tables = $this->listTables();
1419 foreach ( $tables as $table ) {
1420 if ( $this->db
->getType() == 'oracle' ) {
1421 $this->db
->query( "DROP TABLE pt_$table DROP CONSTRAINTS" );
1423 $this->db
->query( "DROP TABLE `parsertest_$table`" );
1427 if ( $this->db
->getType() == 'oracle' ) {
1428 $this->db
->query( 'BEGIN FILL_WIKI_INFO; END;' );
1433 * Upload test files to the backend created by createRepoGroup().
1435 * @return callable The teardown callback
1437 private function setupUploadBackend() {
1440 $repo = RepoGroup
::singleton()->getLocalRepo();
1441 $base = $repo->getZonePath( 'public' );
1442 $backend = $repo->getBackend();
1443 $backend->prepare( [ 'dir' => "$base/3/3a" ] );
1445 'src' => "$IP/tests/phpunit/data/parser/headbg.jpg",
1446 'dst' => "$base/3/3a/Foobar.jpg"
1448 $backend->prepare( [ 'dir' => "$base/e/ea" ] );
1450 'src' => "$IP/tests/phpunit/data/parser/wiki.png",
1451 'dst' => "$base/e/ea/Thumb.png"
1453 $backend->prepare( [ 'dir' => "$base/0/09" ] );
1455 'src' => "$IP/tests/phpunit/data/parser/headbg.jpg",
1456 'dst' => "$base/0/09/Bad.jpg"
1458 $backend->prepare( [ 'dir' => "$base/5/5f" ] );
1460 'src' => "$IP/tests/phpunit/data/parser/LoremIpsum.djvu",
1461 'dst' => "$base/5/5f/LoremIpsum.djvu"
1464 // No helpful SVG file to copy, so make one ourselves
1465 $data = '<?xml version="1.0" encoding="utf-8"?>' .
1466 '<svg xmlns="http://www.w3.org/2000/svg"' .
1467 ' version="1.1" width="240" height="180"/>';
1469 $backend->prepare( [ 'dir' => "$base/f/ff" ] );
1470 $backend->quickCreate( [
1471 'content' => $data, 'dst' => "$base/f/ff/Foobar.svg"
1474 return function () use ( $backend ) {
1475 if ( $backend instanceof MockFileBackend
) {
1476 // In memory backend, so dont bother cleaning them up.
1479 $this->teardownUploadBackend();
1484 * Remove the dummy uploads directory
1486 private function teardownUploadBackend() {
1487 if ( $this->keepUploads
) {
1491 $repo = RepoGroup
::singleton()->getLocalRepo();
1492 $public = $repo->getZonePath( 'public' );
1496 "$public/3/3a/Foobar.jpg",
1497 "$public/e/ea/Thumb.png",
1498 "$public/0/09/Bad.jpg",
1499 "$public/5/5f/LoremIpsum.djvu",
1500 "$public/f/ff/Foobar.svg",
1501 "$public/0/00/Video.ogv",
1502 "$public/4/41/Audio.oga",
1508 * Delete the specified files and their parent directories
1509 * @param array $files File backend URIs mwstore://...
1511 private function deleteFiles( $files ) {
1513 $backend = RepoGroup
::singleton()->getLocalRepo()->getBackend();
1514 foreach ( $files as $file ) {
1515 $backend->delete( [ 'src' => $file ], [ 'force' => 1 ] );
1518 // Delete the parent directories
1519 foreach ( $files as $file ) {
1520 $tmp = FileBackend
::parentStoragePath( $file );
1522 if ( !$backend->clean( [ 'dir' => $tmp ] )->isOK() ) {
1525 $tmp = FileBackend
::parentStoragePath( $tmp );
1531 * Add articles to the test DB.
1533 * @param array $articles Article info array from TestFileReader
1535 public function addArticles( $articles ) {
1540 // Be sure ParserTestRunner::addArticle has correct language set,
1541 // so that system messages get into the right language cache
1542 if ( $wgContLang->getCode() !== 'en' ) {
1543 $setup['wgLanguageCode'] = 'en';
1544 $setup['wgContLang'] = Language
::factory( 'en' );
1547 // Add special namespaces, in case that hasn't been done by staticSetup() yet
1548 $this->appendNamespaceSetup( $setup, $teardown );
1550 // wgCapitalLinks obviously needs initialisation
1551 $setup['wgCapitalLinks'] = true;
1553 $teardown[] = $this->executeSetupSnippets( $setup );
1555 foreach ( $articles as $info ) {
1556 $this->addArticle( $info['name'], $info['text'], $info['file'], $info['line'] );
1559 // Wipe WANObjectCache process cache, which is invalidated by article insertion
1561 ObjectCache
::getMainWANInstance()->clearProcessCache();
1563 $this->executeSetupSnippets( $teardown );
1567 * Insert a temporary test article
1568 * @param string $name The title, including any prefix
1569 * @param string $text The article text
1570 * @param string $file The input file name
1571 * @param int|string $line The input line number, for reporting errors
1573 * @throws MWException
1575 private function addArticle( $name, $text, $file, $line ) {
1576 $text = self
::chomp( $text );
1577 $name = self
::chomp( $name );
1579 $title = Title
::newFromText( $name );
1580 wfDebug( __METHOD__
. ": adding $name" );
1582 if ( is_null( $title ) ) {
1583 throw new MWException( "invalid title '$name' at $file:$line\n" );
1586 $page = WikiPage
::factory( $title );
1587 $page->loadPageData( 'fromdbmaster' );
1589 if ( $page->exists() ) {
1590 throw new MWException( "duplicate article '$name' at $file:$line\n" );
1593 // Use mock parser, to make debugging of actual parser tests simpler.
1594 // But initialise the MessageCache clone first, don't let MessageCache
1595 // get a reference to the mock object.
1596 MessageCache
::singleton()->getParser();
1597 $restore = $this->executeSetupSnippets( [ 'wgParser' => new ParserTestMockParser
] );
1598 $status = $page->doEditContent(
1599 ContentHandler
::makeContent( $text, $title ),
1601 EDIT_NEW | EDIT_INTERNAL
1605 if ( !$status->isOK() ) {
1606 throw new MWException( $status->getWikiText( false, false, 'en' ) );
1609 // The RepoGroup cache is invalidated by the creation of file redirects
1610 if ( $title->inNamespace( NS_FILE
) ) {
1611 RepoGroup
::singleton()->clearCache( $title );
1616 * Check if a hook is installed
1618 * @param string $name
1619 * @return bool True if tag hook is present
1621 public function requireHook( $name ) {
1624 $wgParser->firstCallInit(); // make sure hooks are loaded.
1625 if ( isset( $wgParser->mTagHooks
[$name] ) ) {
1628 $this->recorder
->warning( " This test suite requires the '$name' hook " .
1629 "extension, skipping." );
1635 * Check if a function hook is installed
1637 * @param string $name
1638 * @return bool True if function hook is present
1640 public function requireFunctionHook( $name ) {
1643 $wgParser->firstCallInit(); // make sure hooks are loaded.
1645 if ( isset( $wgParser->mFunctionHooks
[$name] ) ) {
1648 $this->recorder
->warning( " This test suite requires the '$name' function " .
1649 "hook extension, skipping." );
1655 * Check if a transparent tag hook is installed
1657 * @param string $name
1658 * @return bool True if function hook is present
1660 public function requireTransparentHook( $name ) {
1663 $wgParser->firstCallInit(); // make sure hooks are loaded.
1665 if ( isset( $wgParser->mTransparentTagHooks
[$name] ) ) {
1668 $this->recorder
->warning( " This test suite requires the '$name' transparent " .
1669 "hook extension, skipping.\n" );
1675 * Fake constant timestamp to make sure time-related parser
1676 * functions give a persistent value.
1678 * - Parser::getVariableValue (via ParserGetVariableValueTs hook)
1679 * - Parser::preSaveTransform (via ParserOptions)
1681 private function getFakeTimestamp() {
1682 // parsed as '1970-01-01T00:02:03Z'