wiki.techinc.nl/tests/phpunit/includes/parser/ParserPreloadTest.php
Subramanya Sastry e55cc517da Move Parser to Mediawiki\Parser namespace
Bug: T166010
Co-Authored-By: Daimona Eaytoy <daimona.wiki@gmail.com>
Co-Authored-By: James Forrester <jforrester@wikimedia.org>
Co-Authored-By: Subramanya Sastry <ssastry@wikimedia.org>
Change-Id: I79b4e732c45095eedbaa80afa5eb7479b387ed8a
2024-02-16 09:18:38 -05:00

85 lines
1.9 KiB
PHP

<?php
use MediaWiki\Parser\Parser;
use MediaWiki\Title\Title;
use MediaWiki\User\User;
/**
* Basic tests for Parser::getPreloadText
* @author Antoine Musso
*
* @covers Parser
* @covers StripState
*
* @covers Preprocessor_Hash
* @covers PPDStack_Hash
* @covers PPDStackElement_Hash
* @covers PPDPart_Hash
* @covers PPFrame_Hash
* @covers PPTemplateFrame_Hash
* @covers PPCustomFrame_Hash
* @covers PPNode_Hash_Tree
* @covers PPNode_Hash_Text
* @covers PPNode_Hash_Array
* @covers PPNode_Hash_Attr
*/
class ParserPreloadTest extends MediaWikiIntegrationTestCase {
/**
* @var Parser
*/
private $testParser;
/**
* @var ParserOptions
*/
private $testParserOptions;
/**
* @var Title
*/
private $title;
protected function setUp(): void {
parent::setUp();
$services = $this->getServiceContainer();
$this->testParserOptions = ParserOptions::newFromUserAndLang( new User,
$this->getServiceContainer()->getContentLanguage() );
$this->testParser = $services->getParserFactory()->create();
$this->testParser->setOptions( $this->testParserOptions );
$this->testParser->clearState();
$this->title = Title::makeTitle( NS_MAIN, 'Preload Test' );
}
public function testPreloadSimpleText() {
$this->assertPreloaded( 'simple', 'simple' );
}
public function testPreloadedPreIsUnstripped() {
$this->assertPreloaded(
'<pre>monospaced</pre>',
'<pre>monospaced</pre>',
'<pre> in preloaded text must be unstripped (T29467)'
);
}
public function testPreloadedNowikiIsUnstripped() {
$this->assertPreloaded(
'<nowiki>[[Dummy title]]</nowiki>',
'<nowiki>[[Dummy title]]</nowiki>',
'<nowiki> in preloaded text must be unstripped (T29467)'
);
}
protected function assertPreloaded( $expected, $text, $msg = '' ) {
$this->assertEquals(
$expected,
$this->testParser->getPreloadText(
$text,
$this->title,
$this->testParserOptions
),
$msg
);
}
}