mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-25 00:26:44 +00:00
4abed1d7c7
Done by phpcbf over composer fix Change-Id: I9b7419e025ef499ff68be79789d76ad4b886d256
42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
<?php
|
|
|
|
// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
|
|
class Scribunto_LuaTextLibraryTests extends Scribunto_LuaEngineTestBase {
|
|
protected static $moduleName = 'TextLibraryTests';
|
|
|
|
public function __construct(
|
|
$name = null, array $data = [], $dataName = '', $engineName = null
|
|
) {
|
|
parent::__construct( $name, $data, $dataName, $engineName );
|
|
if ( defined( 'HHVM_VERSION' ) ) {
|
|
// HHVM bug https://github.com/facebook/hhvm/issues/5813
|
|
$this->skipTests['json decode, invalid values (trailing comma)'] =
|
|
'json decode bug in HHVM';
|
|
}
|
|
}
|
|
|
|
protected function setUp() {
|
|
parent::setUp();
|
|
|
|
// For unstrip test
|
|
$parser = $this->getEngine()->getParser();
|
|
$markers = [
|
|
'nowiki' => Parser::MARKER_PREFIX . '-test-nowiki-' . Parser::MARKER_SUFFIX,
|
|
'general' => Parser::MARKER_PREFIX . '-test-general-' . Parser::MARKER_SUFFIX,
|
|
];
|
|
$parser->mStripState->addNoWiki( $markers['nowiki'], 'NoWiki' );
|
|
$parser->mStripState->addGeneral( $markers['general'], 'General' );
|
|
$interpreter = $this->getEngine()->getInterpreter();
|
|
$interpreter->callFunction(
|
|
$interpreter->loadString( 'mw.text.stripTest = ...', 'fortest' ),
|
|
$markers
|
|
);
|
|
}
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + [
|
|
'TextLibraryTests' => __DIR__ . '/TextLibraryTests.lua',
|
|
];
|
|
}
|
|
}
|