2use Wikimedia\ScopedCallback;
59 public static function suite( $flags = self::CORE_ONLY ) {
60 return new self( $flags );
64 parent::__construct();
69 if ( is_string( $flags ) ) {
74 $mwTestDir =
$IP .
'/tests/';
76 # Human friendly helpers
80 # Will hold the .txt parser test files we will include
83 # Filter out .txt files
85 foreach ( $files as $extName => $parserTestFile ) {
86 $isCore = ( 0 === strpos( $parserTestFile, $mwTestDir ) );
88 if ( $isCore && $wantsCore ) {
89 self::debug(
"included core parser tests: $parserTestFile" );
90 $filesToTest[$extName] = $parserTestFile;
91 } elseif ( !$isCore && $wantsRest ) {
92 self::debug(
"included non core parser tests: $parserTestFile" );
93 $filesToTest[$extName] = $parserTestFile;
95 self::debug(
"skipped parser tests: $parserTestFile" );
99 . implode(
' ', $filesToTest ) );
103 foreach ( $filesToTest as $extensionName => $fileName ) {
104 if ( is_int( $extensionName ) ) {
108 $extensionName = basename( dirname( $fileName ) );
110 $testsName = $extensionName .
'__' . basename( $fileName,
'.txt' );
111 $parserTestClassName = ucfirst( $testsName );
115 $parserTestClassName =
'ParserTest_' .
116 preg_replace(
'/[^a-zA-Z0-9_\x7f-\xff]/',
'_', $parserTestClassName );
118 if ( isset( $testList[$parserTestClassName] ) ) {
121 $parserTestClassName .= $counter;
123 $testList[$parserTestClassName] =
true;
128 self::debug(
"Adding test class $parserTestClassName" );
130 $this->ptRunner, $parserTestClassName, $fileName ) );
137 $type = $db->getType();
138 $prefix =
$type ===
'oracle' ?
139 MediaWikiTestCase::ORA_DB_PREFIX : MediaWikiTestCase::DB_PREFIX;
140 MediaWikiTestCase::setupTestDB( $db, $prefix );
141 $teardown = $this->ptRunner->setDatabase( $db );
142 $teardown = $this->ptRunner->setupUploads( $teardown );
143 $this->ptTeardownScope = $teardown;
148 if ( $this->ptTeardownScope ) {
149 ScopedCallback::consume( $this->ptTeardownScope );
157 protected static function debug( $msg ) {
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfGetCaller( $level=2)
Get the name of the function which called this function wfGetCaller( 1 ) is the function with the wfG...
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
This is the suite class for running tests within a single .txt source file.
static getParserTestFiles()
Get list of filenames to extension and core parser tests.
The UnitTest must be either a class that inherits from MediaWikiTestCase or a class that provides a p...
ScopedCallback $ptTeardownScope
static debug( $msg)
Write $msg under log group 'tests-parser'.
static suite( $flags=self::CORE_ONLY)
Get a PHPUnit test suite of parser tests.
ParserTestRunner $ptRunner
const NO_CORE
Include non core files as set in $wgParserTestFiles.
const WITH_ALL
Include anything set via $wgParserTestFiles.
const CORE_ONLY
Include files shipped with MediaWiki core.