1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
<?php
use MediaWiki\Title\Title;
use Wikimedia\Parsoid\ParserTests\TestUtils;
/**
* @group ContentHandler
* @group Database
* ^--- needed, because we do need the database to test link updates
* @covers \MediaWiki\Content\TextContentHandler
*/
class TextContentHandlerIntegrationTest extends MediaWikiLangTestCase {
public static function provideGetParserOutput() {
yield 'Basic render' => [
'title' => 'TextContentTest_testGetParserOutput',
'model' => CONTENT_MODEL_TEXT,
'text' => "hello ''world'' & [[stuff]]\n",
'expectedHtml' => "<pre>hello ''world'' & [[stuff]]\n</pre>",
'expectedFields' => [ 'Links' => [] ]
];
yield 'Multi line render' => [
'title' => 'TextContentTest_testGetParserOutput',
'model' => CONTENT_MODEL_TEXT,
'text' => "Test 1\nTest 2\n\nTest 3\n",
'expectedHtml' => "<pre>Test 1\nTest 2\n\nTest 3\n</pre>",
'expectedFields' => [ 'Links' => [] ]
];
}
/**
* @dataProvider provideGetParserOutput
*/
public function testGetParserOutput( $title, $model, $text, $expectedHtml,
$expectedFields = null, $parserOptions = null
) {
$title = Title::newFromText( $title );
$content = ContentHandler::makeContent( $text, $title, $model );
$contentRenderer = $this->getServiceContainer()->getContentRenderer();
if ( $parserOptions === null ) {
$parserOptions = ParserOptions::newFromAnon();
}
$po = $contentRenderer->getParserOutput( $content, $title, null, $parserOptions );
// TODO T371004
$processedPo = $po->runOutputPipeline( $parserOptions, [] );
$html = $processedPo->getContentHolderText();
$html = preg_replace( '#<!--.*?-->#sm', '', $html ); // strip comments
$html = TestUtils::stripParsoidIds( $html );
if ( $expectedHtml !== null ) {
$this->assertEquals( TestUtils::stripParsoidIds( $expectedHtml ), trim( $html ) );
}
if ( $expectedFields ) {
foreach ( $expectedFields as $field => $exp ) {
$getter = 'get' . ucfirst( $field );
$v = $processedPo->$getter();
if ( is_array( $exp ) ) {
$this->assertArrayEquals( $exp, $v );
} else {
$this->assertEquals( $exp, $v );
}
}
}
}
}
|