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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
<?php
namespace MediaWiki\Tests\Unit;
use MediaWiki\Content\Renderer\ContentParseParams;
use MediaWiki\Languages\LanguageNameUtils;
use MediaWiki\Parser\MagicWordFactory;
use MediaWiki\Parser\Parsoid\ParsoidParser;
use MediaWiki\Parser\Parsoid\ParsoidParserFactory;
use MediaWiki\Revision\SlotRecord;
use MediaWiki\Revision\SlotRenderingProvider;
use MediaWiki\Title\Title;
use MediaWiki\Title\TitleFactory;
use MediaWikiUnitTestCase;
use MWException;
use Parser;
use ParserFactory;
use ParserOptions;
use ParserOutput;
use ReflectionClass;
use Wikimedia\UUID\GlobalIdGenerator;
use WikitextContent;
use WikitextContentHandler;
/**
* Split from \WikitextContentHandlerTest integration tests
*
* @group ContentHandler
* @coversDefaultClass \WikitextContentHandler
*/
class WikitextContentHandlerTest extends MediaWikiUnitTestCase {
private function newWikitextContentHandler( $overrides = [] ): WikitextContentHandler {
return new WikitextContentHandler(
CONTENT_MODEL_WIKITEXT,
$overrides[TitleFactory::class] ?? $this->createMock( TitleFactory::class ),
$overrides[ParserFactory::class] ?? $this->createMock( ParserFactory::class ),
$overrides[GlobalIdGenerator::class] ?? $this->createMock( GlobalIdGenerator::class ),
$overrides[LanguageNameUtils::class] ?? $this->createMock( LanguageNameUtils::class ),
$overrides[MagicWordFactory::class] ?? $this->createMock( MagicWordFactory::class ),
$overrides[ParsoidParserFactory::class] ?? $this->createMock( ParsoidParserFactory::class )
);
}
/**
* @covers ::serializeContent
*/
public function testSerializeContent() {
$content = new WikitextContent( 'hello world' );
$handler = $this->newWikitextContentHandler();
$this->assertEquals( 'hello world', $handler->serializeContent( $content ) );
$this->assertEquals(
'hello world',
$handler->serializeContent( $content, CONTENT_FORMAT_WIKITEXT )
);
$this->expectException( MWException::class );
$handler->serializeContent( $content, 'dummy/foo' );
}
/**
* @covers ::unserializeContent
*/
public function testUnserializeContent() {
$handler = $this->newWikitextContentHandler();
$content = $handler->unserializeContent( 'hello world' );
$this->assertEquals( 'hello world', $content->getText() );
$content = $handler->unserializeContent( 'hello world', CONTENT_FORMAT_WIKITEXT );
$this->assertEquals( 'hello world', $content->getText() );
$this->expectException( MWException::class );
$handler->unserializeContent( 'hello world', 'dummy/foo' );
}
/**
* @covers WikitextContentHandler::makeEmptyContent
*/
public function testMakeEmptyContent() {
$handler = $this->newWikitextContentHandler();
$content = $handler->makeEmptyContent();
$this->assertTrue( $content->isEmpty() );
$this->assertSame( '', $content->getText() );
}
public function dataIsSupportedFormat() {
return [
[ null, true ],
[ CONTENT_FORMAT_WIKITEXT, true ],
[ 99887766, false ],
];
}
/**
* @dataProvider dataIsSupportedFormat
* @covers ::isSupportedFormat
*/
public function testIsSupportedFormat( $format, $supported ) {
$handler = $this->newWikitextContentHandler();
$this->assertEquals( $supported, $handler->isSupportedFormat( $format ) );
}
/**
* @covers ::supportsDirectEditing
*/
public function testSupportsDirectEditing() {
$handler = $this->newWikiTextContentHandler();
$this->assertTrue( $handler->supportsDirectEditing(), 'direct editing is supported' );
}
/**
* @covers ::getSecondaryDataUpdates
*/
public function testGetSecondaryDataUpdates() {
$title = $this->createMock( Title::class );
$content = new WikitextContent( '' );
$srp = $this->createMock( SlotRenderingProvider::class );
$handler = $this->newWikitextContentHandler();
$updates = $handler->getSecondaryDataUpdates( $title, $content, SlotRecord::MAIN, $srp );
$this->assertEquals( [], $updates );
}
/**
* @covers ::getDeletionUpdates
*/
public function testGetDeletionUpdates() {
$title = $this->createMock( Title::class );
$handler = $this->newWikitextContentHandler();
$updates = $handler->getDeletionUpdates( $title, SlotRecord::MAIN );
$this->assertEquals( [], $updates );
}
/**
* @covers ::fillParserOutput
* @dataProvider provideFillParserOutput
*/
public function testFillParserOutput( $useParsoid = true ) {
$parserOptions = $this->createMock( ParserOptions::class );
$parserOptions
->method( 'getUseParsoid' )
->willReturn( $useParsoid );
// This is the core of the test: if the useParsoid option is NOT
// present, we expect ParserFactory->getInstance()->parse()
// to be called exactly once, otherwise never.
$parser = $this->createMock( Parser::class );
$parser
->expects( $useParsoid ? $this->never() : $this->once() )
->method( 'parse' );
$parserFactory = $this->createMock( ParserFactory::class );
$parserFactory
->expects( $useParsoid ? $this->never() : $this->once() )
->method( 'getInstance' )
->willReturn( $parser );
// If the useParsoid option is present, we expect
// ParsoidParserFactory()->create()->parse() to be called
// exactly once, otherwise never.
$parsoidParser = $this->createMock( ParsoidParser::class );
$parsoidParser
->expects( $useParsoid ? $this->once() : $this->never() )
->method( 'parse' );
$parsoidParserFactory = $this->createMock( ParsoidParserFactory::class );
$parsoidParserFactory
->expects( $useParsoid ? $this->once() : $this->never() )
->method( 'create' )
->willReturn( $parsoidParser );
// Set up the rest of the mocks
$content = $this->createMock( WikitextContent::class );
$content
->method( 'getRedirectTargetAndText' )
->willReturn( [ false, '* Hello, world!' ] );
$content
->method( 'getPreSaveTransformFlags' )
->willReturn( [] );
$title = $this->createMock( Title::class );
$titleFactory = $this->createMock( TitleFactory::class );
$titleFactory
->method( 'newFromPageReference' )
->willReturn( $title );
$cpoParams = new ContentParseParams( $title, 42, $parserOptions );
$parserOutput = $this->createMock( ParserOutput::class );
// The method we'd like to test, fillParserOutput, is protected;
// make it public
$class = new ReflectionClass( WikitextContentHandler::class );
$method = $class->getMethod( 'fillParserOutput' );
$method->setAccessible( true );
$handler = $this->newWikitextContentHandler( [
TitleFactory::class => $titleFactory,
ParserFactory::class => $parserFactory,
ParsoidParserFactory::class => $parsoidParserFactory,
] );
// Okay, invoke fillParserOutput() and verify that the assertions
// above about the parse() invocations are correct.
$method->invokeArgs( $handler, [ $content, $cpoParams, &$parserOutput ] );
}
public static function provideFillParserOutput() {
return [ [ false ], [ true ] ];
}
}
|