Go to the documentation of this file.
28 $this->assertEquals(
'hello world', $this->
handler->serializeContent(
$content ) );
36 $this->fail(
"serializeContent() should have failed on unknown format" );
47 $this->assertEquals(
'hello world',
$content->getNativeData() );
50 $this->assertEquals(
'hello world',
$content->getNativeData() );
53 $this->
handler->unserializeContent(
'hello world',
'dummy/foo' );
54 $this->fail(
"unserializeContent() should have failed on unknown format" );
66 $this->assertTrue(
$content->isEmpty() );
67 $this->assertEquals(
'',
$content->getNativeData() );
85 MediaWikiServices::getInstance()->getContentLanguage()->resetNamespaces();
87 MediaWikiServices::getInstance()->resetServiceForTesting(
'MagicWordFactory' );
89 if ( is_string(
$title ) ) {
93 $this->assertEquals( $expected,
$content->serialize() );
98 [
'Hello',
'#REDIRECT [[Hello]]' ],
99 [
'Template:Hello',
'#REDIRECT [[Template:Hello]]' ],
100 [
'Hello#section',
'#REDIRECT [[Hello#section]]' ],
101 [
'user:john_doe#section',
'#REDIRECT [[User:John doe#section]]' ],
102 [
'MEDIAWIKI:FOOBAR',
'#REDIRECT [[MediaWiki:FOOBAR]]' ],
103 [
'Category:Foo',
'#REDIRECT [[:Category:Foo]]' ],
108 '#REDIRECT [[google:Bar#fragment]]'
118 $this->assertEquals( $supported, $this->
handler->isSupportedFormat( $format ) );
125 $handler =
new WikiTextContentHandler();
165 public function testMerge3( $old, $mine, $yours, $expected ) {
173 $merged = $this->
handler->merge3( $oldContent, $myContent, $yourContent );
175 $this->assertEquals( $expected, $merged ? $merged->getNativeData() : $merged );
181 'Hello there, world!',
184 '/^Redirected page .*Foo/'
191 '/^Created page .*Hello/'
198 '/^Created blank page$/'
202 'Hello there, world!',
209 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy
210 eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam
211 voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet
212 clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.',
215 '/^Replaced .*Hello/'
235 $summary = $this->
handler->getAutosummary( $oldContent, $newContent, $flags );
238 (
bool)preg_match( $expected, $summary ),
239 "Autosummary didn't match expected pattern $expected: $summary"
263 'mw-removed-redirect'
270 'mw-changed-redirect-target'
295 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy
296 eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam
297 voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet
298 clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.',
305 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy
306 eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam
307 voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet
308 clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.',
309 'Duis purus odio, rhoncus et finibus dapibus, facilisis ac urna. Pellentesque
310 arcu, tristique nec tempus nec, suscipit vel arcu. Sed non dolor nec ligula
311 congue tempor. Quisque pellentesque finibus orci a molestie. Nam maximus, purus
312 euismod finibus mollis, dui ante malesuada felis, dignissim rutrum diam sapien.',
325 'mw-new-redirect' =>
true,
326 'mw-removed-redirect' =>
true,
327 'mw-changed-redirect-target' =>
true,
328 'mw-newpage' =>
true,
329 'mw-newblank' =>
true,
331 'mw-replace' =>
true,
336 $tag = $this->
handler->getChangeTag( $oldContent, $newContent, $flags );
338 $this->assertSame( $expected, $tag );
350 ->disableOriginalConstructor()
351 ->setMethods( [
'getDataForSearchIndex' ] )
355 ->disableOriginalConstructor()
356 ->setMethods( [
'getFileHandler' ] )
359 $handler->method(
'getFileHandler' )->will( $this->returnValue( $fileHandler ) );
360 $fileHandler->expects( $this->once() )
361 ->method(
'getDataForSearchIndex' )
362 ->will( $this->returnValue( [
'file_text' =>
'This is file content' ] ) );
365 $this->assertArrayHasKey(
'file_text', $data );
366 $this->assertEquals(
'This is file content', $data[
'file_text'] );
379 $this->assertEquals( [], $updates );
391 $this->assertEquals( [], $updates );
getSecondaryDataUpdates(Title $title, Content $content, $role, SlotRenderingProvider $slotOutput)
Returns a list of DeferrableUpdate objects for recording information about the given Content in some ...
A content handler knows how do deal with a specific type of content on a wiki page.
static getForModelID( $modelId)
Returns the ContentHandler singleton for the given model ID.
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
processing should stop and the error should be shown to the user * false
testUnserializeContent()
WikitextContentHandler::unserializeContent.
supportsDirectEditing()
Return true if this content model supports direct editing, such as via EditPage.
testGetAutosummary( $old, $new, $flags, $expected)
dataGetAutosummary WikitextContentHandler::getAutosummary
static dataIsSupportedFormat()
Class representing a MediaWiki article and history.
testMakeEmptyContent()
WikitextContentHandler::makeEmptyContent.
testDataIndexFieldsFile()
WikitextContentHandler::getDataForSearchIndex.
testGetChangeTag( $old, $new, $flags, $expected)
dataGetChangeTag WikitextContentHandler::getChangeTag
getDeletionUpdates(Title $title, $role)
Returns a list of DeferrableUpdate objects for removing information about content in some secondary d...
const CONTENT_MODEL_WIKITEXT
testMakeRedirectContent( $title, $expected)
provideMakeRedirectContent
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
testSupportsDirectEditing()
WikitextContentHandler::supportsDirectEditing.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves set to a MediaTransformOutput the error message to be returned in an array you should do so by altering $wgNamespaceProtection and $wgNamespaceContentModels outside the handler
testSerializeContent()
WikitextContentHandler::serializeContent.
namespace and then decline to actually register it file or subcat img or subcat $title
static dataGetChangeTag()
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
getDataForSearchIndex(WikiPage $page, ParserOutput $output, SearchEngine $engine)
Return fields to be indexed by search engine as representation of this document.
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Content object for wiki text pages.
const CONTENT_FORMAT_WIKITEXT
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Content handler for wiki text pages.
static dataGetAutosummary()
testGetSecondaryDataUpdates()
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 true
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
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 MediaWikiServices
testMerge3( $old, $mine, $yours, $expected)
dataMerge3 WikitextContentHandler::merge3
static provideMakeRedirectContent()
testIsSupportedFormat( $format, $supported)
dataIsSupportedFormat WikitextContentHandler::isSupportedFormat