29 "WikitextContentTest_testGetParserOutput",
32 "<p>hello <i>world</i>\n</p>"
40 [
"WikitextContentTest_testGetSecondaryDataUpdates_1",
49 [
"WikitextContentTest_testGetSecondaryDataUpdates_2",
55 [
'World_test_21344' => 0 ]
81 foreach ( $updates
as $update ) {
82 $class = get_class( $update );
83 $updates[$class] = $update;
86 foreach ( $expectedStuff
as $class => $fieldValues ) {
87 $this->assertArrayHasKey( $class, $updates,
"missing an update of type $class" );
89 $update = $updates[$class];
91 foreach ( $fieldValues
as $field =>
$value ) {
92 $v = $update->$field; #
if the field doesn
't exist, just crash and burn
96 "unexpected value for field $field in instance of $class"
101 $page->doDeleteArticle( '' );
104 public static function dataGetSection() {
106 [ WikitextContentTest::$sections,
110 [ WikitextContentTest::$sections,
115 [ WikitextContentTest::$sections,
126 public function testGetSection( $text, $sectionId, $expectedText ) {
127 $content = $this->newContent( $text );
129 $sectionContent = $content->getSection( $sectionId );
130 if ( is_object( $sectionContent ) ) {
131 $sectionText = $sectionContent->getNativeData();
133 $sectionText = $sectionContent;
136 $this->assertEquals( $expectedText, $sectionText );
139 public static function dataReplaceSection() {
141 [ WikitextContentTest::$sections,
145 trim( preg_replace( '/^Intro/sm
', 'No more
', WikitextContentTest::$sections ) )
147 [ WikitextContentTest::$sections,
153 [ WikitextContentTest::$sections,
155 "== TEST ==\nmore fun",
158 '/^== test ==.*== foo ==/sm
', "== TEST ==\nmore fun\n\n== foo ==",
159 WikitextContentTest::$sections
162 [ WikitextContentTest::$sections,
166 WikitextContentTest::$sections
168 [ WikitextContentTest::$sections,
172 trim( WikitextContentTest::$sections ) . "\n\n\n== New ==\n\nNo more"
181 public function testReplaceSection( $text, $section, $with, $sectionTitle, $expected ) {
182 $content = $this->newContent( $text );
183 $c = $content->replaceSection( $section, $this->newContent( $with ), $sectionTitle );
185 $this->assertEquals( $expected, is_null( $c ) ? null : $c->getNativeData() );
191 public function testAddSectionHeader() {
192 $content = $this->newContent( 'hello world
' );
193 $content = $content->addSectionHeader( 'test
' );
195 $this->assertEquals( "== test ==\n\nhello world", $content->getNativeData() );
198 public static function dataPreSaveTransform() {
200 [ 'hello
this is ~~~
',
201 "hello this is [[Special:Contributions/127.0.0.1|127.0.0.1]]",
203 [ 'hello \
'\'this\
'\' is <nowiki>~~~</nowiki>
',
204 'hello \
'\'this\
'\' is <nowiki>~~~</nowiki>
',
213 public static function dataPreloadTransform() {
220 'hello \
'\'this\
'\' is <noinclude>foo</noinclude><includeonly>bar</includeonly>
',
221 'hello \
'\'this\
'\' is bar
',
226 public static function dataGetRedirectTarget() {
228 [ '#REDIRECT [[Test]]
',
234 [ '* #REDIRECT [[Test]]
',
240 public static function dataGetTextForSummary() {
250 [ '[[hello world]].
',
257 public static function dataIsCountable() {
299 [ '#REDIRECT [[bar]]
',
304 [ '#REDIRECT [[bar]]
',
309 [ '#REDIRECT [[bar]]
',
320 public function testMatchMagicWord() {
321 $mw = MagicWord::get( "staticredirect" );
323 $content = $this->newContent( "#REDIRECT [[FOO]]\n__STATICREDIRECT__" );
324 $this->assertTrue( $content->matchMagicWord( $mw ), "should have matched magic word" );
326 $content = $this->newContent( "#REDIRECT [[FOO]]" );
328 $content->matchMagicWord( $mw ),
329 "should not have matched magic word"
336 public function testUpdateRedirect() {
337 $target = Title::newFromText( "testUpdateRedirect_target" );
339 // test with non-redirect page
340 $content = $this->newContent( "hello world." );
341 $newContent = $content->updateRedirect( $target );
343 $this->assertTrue( $content->equals( $newContent ), "content should be unchanged" );
345 // test with actual redirect
346 $content = $this->newContent( "#REDIRECT [[Someplace]]" );
347 $newContent = $content->updateRedirect( $target );
349 $this->assertFalse( $content->equals( $newContent ), "content should have changed" );
350 $this->assertTrue( $newContent->isRedirect(), "new content should be a redirect" );
353 $target->getFullText(),
354 $newContent->getRedirectTarget()->getFullText()
361 public function testGetModel() {
362 $content = $this->newContent( "hello world." );
364 $this->assertEquals( CONTENT_MODEL_WIKITEXT, $content->getModel() );
370 public function testGetContentHandler() {
371 $content = $this->newContent( "hello world." );
373 $this->assertEquals( CONTENT_MODEL_WIKITEXT, $content->getContentHandler()->getModelID() );
376 public function testRedirectParserOption() {
379 // Set up hook and its reporting variables
381 $redirectTarget = null;
382 $this->mergeMwGlobalArrayValue( 'wgHooks
', [
383 'InternalParseBeforeLinks
' => [
384 function ( &$parser, &$text, &$stripState ) use ( &$wikitext, &$redirectTarget ) {
386 $redirectTarget = $parser->getOptions()->getRedirectTarget();
391 // Test with non-redirect page
393 $redirectTarget = false;
394 $content = $this->newContent( 'hello world.
' );
395 $options = $content->getContentHandler()->makeParserOptions( 'canonical
' );
396 $options->setRedirectTarget( $title );
397 $content->getParserOutput( $title, null, $options );
398 $this->assertEquals( 'hello world.
', $wikitext,
399 'Wikitext passed to
hook was not
as expected
'
401 $this->assertEquals( null, $redirectTarget, 'Redirect
seen in hook was not null
' );
402 $this->assertEquals( $title, $options->getRedirectTarget(),
408 $redirectTarget =
false;
410 "#REDIRECT [[TestRedirectParserOption/redir]]\nhello redirect."
417 'Wikitext passed to hook was not as expected'
419 $this->assertNotEquals(
422 'Redirect seen in hook was null' );
424 'TestRedirectParserOption/redir',
425 $redirectTarget->getFullText(),
426 'Redirect seen in hook was not the expected title'
431 'ParserOptions\' redirectTarget was changed'
447 [
"WikitextContentTest_testGetSecondaryDataUpdates_1",
449 [
'LinksDeletionUpdate' => [] ]
451 [
"WikitextContentTest_testGetSecondaryDataUpdates_2",
453 [
'LinksDeletionUpdate' => [] ]
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
#define the
table suitable for use with IDatabase::select()
const CONTENT_MODEL_WIKITEXT
processing should stop and the error should be shown to the user * false
Set options of the Parser.
null for the local wiki Added in
testRedirectParserOption()
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Content for JavaScript pages.
ContentHandler Database ^— needed, because we do need the database to test link updates.
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
Content object implementation for representing flat text.
Some quick notes on the file repository architecture Functionality is
and how to run hooks for an and one after Each event has a preferably in CamelCase For ArticleDelete hook A clump of code and data that should be run when an event happens This can be either a function and a chunk of or an object and a method hook function The function part of a hook
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Allows to change the fields on the form that will be generated are created Can be used to omit specific feeds from being outputted You must not use this hook to add use OutputPage::addFeedLink() instead.&$feedLinks conditions will AND in the final query as a Content object as a Content object $title
Content object for wiki text pages.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
static dataGetParserOutput()
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
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content $content
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template to be included in the link
static dataGetDeletionUpdates()
testGetSecondaryDataUpdates($title, $model, $text, $expectedStuff)
dataGetSecondaryDataUpdates Database WikitextContent::getSecondaryDataUpdates
static dataGetSecondaryDataUpdates()
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be seen