17use PHPUnit\Framework\MockObject\MockObject;
36 $mock = $this->getMockBuilder( Title::class )
37 ->disableOriginalConstructor()
39 $mock->expects( $this->any() )
40 ->method(
'getNamespace' )
41 ->will( $this->returnValue(
NS_MAIN ) );
42 $mock->expects( $this->any() )
44 ->will( $this->returnValue( __CLASS__ ) );
45 $mock->expects( $this->any() )
46 ->method(
'getPrefixedText' )
47 ->will( $this->returnValue( __CLASS__ ) );
48 $mock->expects( $this->any() )
49 ->method(
'getDBkey' )
50 ->will( $this->returnValue( __CLASS__ ) );
51 $mock->expects( $this->any() )
52 ->method(
'getArticleID' )
53 ->will( $this->returnValue( $articleId ) );
54 $mock->expects( $this->any() )
55 ->method(
'getLatestRevId' )
56 ->will( $this->returnValue( $revisionId ) );
57 $mock->expects( $this->any() )
58 ->method(
'getContentModel' )
60 $mock->expects( $this->any() )
61 ->method(
'getPageLanguage' )
62 ->will( $this->returnValue( Language::factory(
'en' ) ) );
63 $mock->expects( $this->any() )
64 ->method(
'isContentPage' )
65 ->will( $this->returnValue(
true ) );
66 $mock->expects( $this->any() )
69 function (
Title $other )
use ( $mock ) {
73 $mock->expects( $this->any() )
77 return $user->isAllowed( $perm );
92 $db = $this->getMock( IDatabase::class );
93 $db->method(
'selectField' )
95 function ( $table, $fields, $cond )
use ( $maxRev, $linkCount ) {
118 $lb = $this->getMock( ILoadBalancer::class );
119 $lb->method(
'getConnection' )
122 $lb->method(
'getConnectionRef' )
125 $lb->method(
'getLazyConnectionRef' )
133 if ( [ $table, $fields, $cond ] === [
'revision',
'MAX(rev_id)', [] ] ) {
137 $this->fail(
'Unexpected call to selectField' );
138 throw new LogicException(
'Ooops' );
147 $rev->setTimestamp(
'20180101000003' );
148 $rev->setComment( CommentStoreComment::newUnsavedComment(
'' ) );
151 $text .=
"* page:{{PAGENAME}}\n";
152 $text .=
"* rev:{{REVISIONID}}\n";
153 $text .=
"* user:{{REVISIONUSER}}\n";
154 $text .=
"* time:{{REVISIONTIMESTAMP}}\n";
155 $text .=
"* [[Link It]]\n";
159 $options = ParserOptions::newCanonical(
'canonical' );
162 $this->assertFalse( $rr->isContentDeleted(),
'isContentDeleted' );
164 $this->assertSame(
$rev, $rr->getRevision() );
165 $this->assertSame(
$options, $rr->getOptions() );
167 $html = $rr->getRevisionParserOutput()->getText();
169 $this->assertContains(
'page:' . __CLASS__,
$html );
170 $this->assertContains(
'rev:101',
$html );
171 $this->assertContains(
'user:Frank',
$html );
172 $this->assertContains(
'time:20180101000003',
$html );
174 $this->assertSame(
$html, $rr->getSlotParserOutput( SlotRecord::MAIN )->getText() );
184 $rev->setTimestamp(
'20180101000003' );
185 $rev->setComment( CommentStoreComment::newUnsavedComment(
'' ) );
188 $text .=
"* page:{{PAGENAME}}\n";
189 $text .=
"* rev:{{REVISIONID}}\n";
190 $text .=
"* user:{{REVISIONUSER}}\n";
191 $text .=
"* time:{{REVISIONTIMESTAMP}}\n";
195 $options = ParserOptions::newCanonical(
'canonical' );
198 $this->assertFalse( $rr->isContentDeleted(),
'isContentDeleted' );
200 $this->assertSame(
$rev, $rr->getRevision() );
201 $this->assertSame(
$options, $rr->getOptions() );
203 $html = $rr->getRevisionParserOutput()->getText();
205 $this->assertContains(
'page:' . __CLASS__,
$html );
206 $this->assertContains(
'rev:21',
$html );
207 $this->assertContains(
'user:Frank',
$html );
208 $this->assertContains(
'time:20180101000003',
$html );
210 $this->assertSame(
$html, $rr->getSlotParserOutput( SlotRecord::MAIN )->getText() );
220 $rev->setTimestamp(
'20180101000003' );
221 $rev->setComment( CommentStoreComment::newUnsavedComment(
'' ) );
224 $text .=
"* page:{{PAGENAME}}\n";
225 $text .=
"* rev:{{REVISIONID}}\n";
226 $text .=
"* user:{{REVISIONUSER}}\n";
227 $text .=
"* time:{{REVISIONTIMESTAMP}}\n";
231 $options = ParserOptions::newCanonical(
'canonical' );
232 $rr = $renderer->getRenderedRevision(
$rev,
$options,
null, [
'use-master' =>
true ] );
234 $this->assertFalse( $rr->isContentDeleted(),
'isContentDeleted' );
236 $html = $rr->getRevisionParserOutput()->getText();
238 $this->assertContains(
'rev:21',
$html );
240 $this->assertSame(
$html, $rr->getSlotParserOutput( SlotRecord::MAIN )->getText() );
250 $rev->setTimestamp(
'20180101000003' );
251 $rev->setComment( CommentStoreComment::newUnsavedComment(
'' ) );
254 $text .=
"* page:{{PAGENAME}}\n";
255 $text .=
"* rev:{{REVISIONID}}\n";
256 $text .=
"* user:{{REVISIONUSER}}\n";
257 $text .=
"* time:{{REVISIONTIMESTAMP}}\n";
261 $options = ParserOptions::newCanonical(
'canonical' );
264 $this->assertFalse( $rr->isContentDeleted(),
'isContentDeleted' );
266 $this->assertSame(
$rev, $rr->getRevision() );
267 $this->assertSame(
$options, $rr->getOptions() );
269 $html = $rr->getRevisionParserOutput()->getText();
271 $this->assertContains(
'page:' . __CLASS__,
$html );
272 $this->assertContains(
'rev:11',
$html );
273 $this->assertContains(
'user:Frank',
$html );
274 $this->assertContains(
'time:20180101000003',
$html );
276 $this->assertSame(
$html, $rr->getSlotParserOutput(
'main' )->getText() );
285 $rev->setVisibility( RevisionRecord::DELETED_TEXT );
287 $rev->setTimestamp(
'20180101000003' );
288 $rev->setComment( CommentStoreComment::newUnsavedComment(
'' ) );
291 $text .=
"* page:{{PAGENAME}}\n";
292 $text .=
"* rev:{{REVISIONID}}\n";
293 $text .=
"* user:{{REVISIONUSER}}\n";
294 $text .=
"* time:{{REVISIONTIMESTAMP}}\n";
298 $options = ParserOptions::newCanonical(
'canonical' );
301 $this->assertNull( $rr,
'getRenderedRevision' );
310 $rev->setVisibility( RevisionRecord::DELETED_TEXT );
312 $rev->setTimestamp(
'20180101000003' );
313 $rev->setComment( CommentStoreComment::newUnsavedComment(
'' ) );
316 $text .=
"* page:{{PAGENAME}}\n";
317 $text .=
"* rev:{{REVISIONID}}\n";
318 $text .=
"* user:{{REVISIONUSER}}\n";
319 $text .=
"* time:{{REVISIONTIMESTAMP}}\n";
323 $options = ParserOptions::newCanonical(
'canonical' );
324 $sysop = $this->
getTestUser( [
'sysop' ] )->getUser();
325 $rr = $renderer->getRenderedRevision(
$rev,
$options, $sysop );
327 $this->assertTrue( $rr->isContentDeleted(),
'isContentDeleted' );
329 $this->assertSame(
$rev, $rr->getRevision() );
330 $this->assertSame(
$options, $rr->getOptions() );
332 $html = $rr->getRevisionParserOutput()->getText();
335 $this->assertContains(
'page:' . __CLASS__,
$html );
336 $this->assertContains(
'rev:11',
$html );
337 $this->assertContains(
'user:Frank',
$html );
338 $this->assertContains(
'time:20180101000003',
$html );
340 $this->assertSame(
$html, $rr->getSlotParserOutput(
'main' )->getText() );
349 $rev->setVisibility( RevisionRecord::DELETED_TEXT );
351 $rev->setTimestamp(
'20180101000003' );
352 $rev->setComment( CommentStoreComment::newUnsavedComment(
'' ) );
355 $text .=
"* page:{{PAGENAME}}\n";
356 $text .=
"* rev:{{REVISIONID}}\n";
357 $text .=
"* user:{{REVISIONUSER}}\n";
358 $text .=
"* time:{{REVISIONTIMESTAMP}}\n";
362 $options = ParserOptions::newCanonical(
'canonical' );
363 $rr = $renderer->getRenderedRevision(
367 [
'audience' => RevisionRecord::RAW ]
370 $this->assertTrue( $rr->isContentDeleted(),
'isContentDeleted' );
372 $this->assertSame(
$rev, $rr->getRevision() );
373 $this->assertSame(
$options, $rr->getOptions() );
375 $html = $rr->getRevisionParserOutput()->getText();
378 $this->assertContains(
'page:' . __CLASS__,
$html );
379 $this->assertContains(
'rev:11',
$html );
380 $this->assertContains(
'user:Frank',
$html );
381 $this->assertContains(
'time:20180101000003',
$html );
383 $this->assertSame(
$html, $rr->getSlotParserOutput(
'main' )->getText() );
392 $rev->setTimestamp(
'20180101000003' );
393 $rev->setComment( CommentStoreComment::newUnsavedComment(
'' ) );
398 $rr = $renderer->getRenderedRevision(
$rev );
400 $combinedOutput = $rr->getRevisionParserOutput();
401 $mainOutput = $rr->getSlotParserOutput( SlotRecord::MAIN );
402 $auxOutput = $rr->getSlotParserOutput(
'aux' );
404 $combinedHtml = $combinedOutput->getText();
405 $mainHtml = $mainOutput->getText();
406 $auxHtml = $auxOutput->getText();
408 $this->assertContains(
'Kittens', $mainHtml );
409 $this->assertContains(
'Goats', $auxHtml );
410 $this->assertNotContains(
'Goats', $mainHtml );
411 $this->assertNotContains(
'Kittens', $auxHtml );
412 $this->assertContains(
'Kittens', $combinedHtml );
413 $this->assertContains(
'Goats', $combinedHtml );
414 $this->assertContains(
'>aux<', $combinedHtml,
'slot header' );
415 $this->assertNotContains(
'<mw:slotheader', $combinedHtml,
'slot header placeholder' );
418 $this->assertContains(
'class="mw-parser-output"', $mainHtml );
419 $this->assertContains(
'class="mw-parser-output"', $auxHtml );
420 $this->assertContains(
'class="mw-parser-output"', $combinedHtml );
423 $this->assertSame( 1, preg_match_all(
'#class="mw-parser-output"#', $combinedHtml ) );
424 $this->assertNotContains(
'class="mw-parser-output"', $combinedOutput->getRawText() );
426 $combinedLinks = $combinedOutput->getLinks();
427 $mainLinks = $mainOutput->getLinks();
428 $auxLinks = $auxOutput->getLinks();
429 $this->assertTrue( isset( $combinedLinks[
NS_MAIN][
'Kittens'] ),
'links from main slot' );
430 $this->assertTrue( isset( $combinedLinks[
NS_MAIN][
'Goats'] ),
'links from aux slot' );
431 $this->assertFalse( isset( $mainLinks[
NS_MAIN][
'Goats'] ),
'no aux links in main' );
432 $this->assertFalse( isset( $auxLinks[
NS_MAIN][
'Kittens'] ),
'no main links in aux' );
437 $mockContent = $this->getMockBuilder( WikitextContent::class )
438 ->setMethods( [
'getParserOutput' ] )
439 ->setConstructorArgs( [
'Whatever' ] )
441 $mockContent->method(
'getParserOutput' )
442 ->willReturnCallback(
function (
Title $title, $revId =
null,
445 if ( !$generateHtml ) {
448 $this->fail(
'Should not be called with $generateHtml == true' );
457 $rev->setContent( SlotRecord::MAIN, $mockContent );
458 $rev->setContent(
'aux', $mockContent );
461 $rr = $renderer->getRenderedRevision(
$rev );
463 $output = $rr->getSlotParserOutput( SlotRecord::MAIN, [
'generate-html' =>
false ] );
464 $this->assertFalse(
$output->hasText(),
'hasText' );
466 $output = $rr->getRevisionParserOutput( [
'generate-html' =>
false ] );
467 $this->assertFalse(
$output->hasText(),
'hasText' );
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Internationalisation code.
Set options of the Parser.
Represents a title within MediaWiki.
getArticleID( $flags=0)
Get the article ID for this Title from the link cache, adding it if necessary.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Content object for wiki text pages.
const CONTENT_MODEL_WIKITEXT
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
namespace and then decline to actually register it file or subcat img or subcat $title
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place $output
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Base interface for content objects.