wiki.techinc.nl/tests/phpunit/includes/parser/ParserMethodsTest.php
Bartosz Dziewoński c3aa5ef597 Create Parser::stripOuterParagraph to avoid code duplication
We've had the logic for stripping the outer <p/> element in three
separate places. The version in OutputPage was missing the '$' at the
end of the regex, that was most likely a mistake caused by the
duplication.

Also, extend the logic in order not to generate invalid HTML if the
input contains more than one <p/> tag. Added tests for this and the
previous behaviour.

https://www.mail-archive.com/mediawiki-api@lists.wikimedia.org/msg03188.html

Change-Id: I6bb3597898324556df912a23a7ffc9ff250b8f58
2014-05-15 12:20:19 -04:00

152 lines
4.1 KiB
PHP

<?php
class ParserMethodsTest extends MediaWikiLangTestCase {
public static function providePreSaveTransform() {
return array(
array( 'hello this is ~~~',
"hello this is [[Special:Contributions/127.0.0.1|127.0.0.1]]",
),
array( 'hello \'\'this\'\' is <nowiki>~~~</nowiki>',
'hello \'\'this\'\' is <nowiki>~~~</nowiki>',
),
);
}
/**
* @dataProvider providePreSaveTransform
* @covers Parser::preSaveTransform
*/
public function testPreSaveTransform( $text, $expected ) {
global $wgParser;
$title = Title::newFromText( str_replace( '::', '__', __METHOD__ ) );
$user = new User();
$user->setName( "127.0.0.1" );
$popts = ParserOptions::newFromUser( $user );
$text = $wgParser->preSaveTransform( $text, $title, $user, $popts );
$this->assertEquals( $expected, $text );
}
public static function provideStripOuterParagraph() {
// This mimics the most common use case (stripping paragraphs generated by the parser).
$message = new RawMessage( "Message text." );
return array(
array(
"<p>Text.</p>",
"Text.",
),
array(
"<p class='foo'>Text.</p>",
"<p class='foo'>Text.</p>",
),
array(
"<p>Text.\n</p>\n",
"Text.",
),
array(
"<p>Text.</p><p>More text.</p>",
"<p>Text.</p><p>More text.</p>",
),
array(
$message->parse(),
"Message text.",
),
);
}
/**
* @dataProvider provideStripOuterParagraph
* @covers Parser::stripOuterParagraph
*/
public function testStripOuterParagraph( $text, $expected ) {
$this->assertEquals( $expected, Parser::stripOuterParagraph( $text ) );
}
/**
* @expectedException MWException
* @expectedExceptionMessage Parser state cleared while parsing. Did you call Parser::parse recursively?
* @covers Parser::lock
*/
public function testRecursiveParse() {
global $wgParser;
$title = Title::newFromText( 'foo' );
$po = new ParserOptions;
$wgParser->setHook( 'recursivecallparser', array( $this, 'helperParserFunc' ) );
$wgParser->parse( '<recursivecallparser>baz</recursivecallparser>', $title, $po );
}
public function helperParserFunc( $input, $args, $parser) {
$title = Title::newFromText( 'foo' );
$po = new ParserOptions;
$parser->parse( $input, $title, $po );
return 'bar';
}
/**
* @covers Parser::callParserFunction
*/
public function testCallParserFunction() {
global $wgParser;
// Normal parses test passing PPNodes. Test passing an array.
$title = Title::newFromText( str_replace( '::', '__', __METHOD__ ) );
$wgParser->startExternalParse( $title, new ParserOptions(), Parser::OT_HTML );
$frame = $wgParser->getPreprocessor()->newFrame();
$ret = $wgParser->callParserFunction( $frame, '#tag',
array( 'pre', 'foo', 'style' => 'margin-left: 1.6em' )
);
$ret['text'] = $wgParser->mStripState->unstripBoth( $ret['text'] );
$this->assertSame( array(
'found' => true,
'text' => '<pre style="margin-left: 1.6em">foo</pre>',
), $ret, 'callParserFunction works for {{#tag:pre|foo|style=margin-left: 1.6em}}' );
}
/**
* @covers Parser::parse
* @covers ParserOutput::getSections
*/
public function testGetSections() {
global $wgParser;
$title = Title::newFromText( str_replace( '::', '__', __METHOD__ ) );
$out = $wgParser->parse( "==foo==\n<h2>bar</h2>\n==baz==\n", $title, new ParserOptions() );
$this->assertSame( array(
array(
'toclevel' => 1,
'level' => '2',
'line' => 'foo',
'number' => '1',
'index' => '1',
'fromtitle' => $title->getPrefixedDBkey(),
'byteoffset' => 0,
'anchor' => 'foo',
),
array(
'toclevel' => 1,
'level' => '2',
'line' => 'bar',
'number' => '2',
'index' => '',
'fromtitle' => false,
'byteoffset' => null,
'anchor' => 'bar',
),
array(
'toclevel' => 1,
'level' => '2',
'line' => 'baz',
'number' => '3',
'index' => '2',
'fromtitle' => $title->getPrefixedDBkey(),
'byteoffset' => 21,
'anchor' => 'baz',
),
), $out->getSections(), 'getSections() with proper value when <h2> is used' );
}
// @todo Add tests for cleanSig() / cleanSigInSig(), getSection(),
// replaceSection(), getPreloadText()
}