MediaWiki  1.29.1
WikitextContentTest.php
Go to the documentation of this file.
1 <?php
2 
10  public static $sections = "Intro
11 
12 == stuff ==
13 hello world
14 
15 == test ==
16 just a test
17 
18 == foo ==
19 more stuff
20 ";
21 
22  public function newContent( $text ) {
23  return new WikitextContent( $text );
24  }
25 
26  public static function dataGetParserOutput() {
27  return [
28  [
29  "WikitextContentTest_testGetParserOutput",
31  "hello ''world''\n",
32  "<p>hello <i>world</i>\n</p>"
33  ],
34  // TODO: more...?
35  ];
36  }
37 
38  public static function dataGetSecondaryDataUpdates() {
39  return [
40  [ "WikitextContentTest_testGetSecondaryDataUpdates_1",
41  CONTENT_MODEL_WIKITEXT, "hello ''world''\n",
42  [
43  'LinksUpdate' => [
44  'mRecursive' => true,
45  'mLinks' => []
46  ]
47  ]
48  ],
49  [ "WikitextContentTest_testGetSecondaryDataUpdates_2",
50  CONTENT_MODEL_WIKITEXT, "hello [[world test 21344]]\n",
51  [
52  'LinksUpdate' => [
53  'mRecursive' => true,
54  'mLinks' => [
55  [ 'World_test_21344' => 0 ]
56  ]
57  ]
58  ]
59  ],
60  // TODO: more...?
61  ];
62  }
63 
69  public function testGetSecondaryDataUpdates( $title, $model, $text, $expectedStuff ) {
70  $ns = $this->getDefaultWikitextNS();
72 
73  $content = ContentHandler::makeContent( $text, $title, $model );
74 
76  $page->doEditContent( $content, '' );
77 
78  $updates = $content->getSecondaryDataUpdates( $title );
79 
80  // make updates accessible by class name
81  foreach ( $updates as $update ) {
82  $class = get_class( $update );
83  $updates[$class] = $update;
84  }
85 
86  foreach ( $expectedStuff as $class => $fieldValues ) {
87  $this->assertArrayHasKey( $class, $updates, "missing an update of type $class" );
88 
89  $update = $updates[$class];
90 
91  foreach ( $fieldValues as $field => $value ) {
92  $v = $update->$field; # if the field doesn't exist, just crash and burn
93  $this->assertEquals(
94  $value,
95  $v,
96  "unexpected value for field $field in instance of $class"
97  );
98  }
99  }
100 
101  $page->doDeleteArticle( '' );
102  }
103 
104  public static function dataGetSection() {
105  return [
106  [ WikitextContentTest::$sections,
107  "0",
108  "Intro"
109  ],
110  [ WikitextContentTest::$sections,
111  "2",
112  "== test ==
113 just a test"
114  ],
115  [ WikitextContentTest::$sections,
116  "8",
117  false
118  ],
119  ];
120  }
121 
126  public function testGetSection( $text, $sectionId, $expectedText ) {
127  $content = $this->newContent( $text );
128 
129  $sectionContent = $content->getSection( $sectionId );
130  if ( is_object( $sectionContent ) ) {
131  $sectionText = $sectionContent->getNativeData();
132  } else {
133  $sectionText = $sectionContent;
134  }
135 
136  $this->assertEquals( $expectedText, $sectionText );
137  }
138 
139  public static function dataReplaceSection() {
140  return [
141  [ WikitextContentTest::$sections,
142  "0",
143  "No more",
144  null,
145  trim( preg_replace( '/^Intro/sm', 'No more', WikitextContentTest::$sections ) )
146  ],
147  [ WikitextContentTest::$sections,
148  "",
149  "No more",
150  null,
151  "No more"
152  ],
153  [ WikitextContentTest::$sections,
154  "2",
155  "== TEST ==\nmore fun",
156  null,
157  trim( preg_replace(
158  '/^== test ==.*== foo ==/sm', "== TEST ==\nmore fun\n\n== foo ==",
159  WikitextContentTest::$sections
160  ) )
161  ],
162  [ WikitextContentTest::$sections,
163  "8",
164  "No more",
165  null,
166  WikitextContentTest::$sections
167  ],
168  [ WikitextContentTest::$sections,
169  "new",
170  "No more",
171  "New",
172  trim( WikitextContentTest::$sections ) . "\n\n\n== New ==\n\nNo more"
173  ],
174  ];
175  }
176 
181  public function testReplaceSection( $text, $section, $with, $sectionTitle, $expected ) {
182  $content = $this->newContent( $text );
183  $c = $content->replaceSection( $section, $this->newContent( $with ), $sectionTitle );
184 
185  $this->assertEquals( $expected, is_null( $c ) ? null : $c->getNativeData() );
186  }
187 
191  public function testAddSectionHeader() {
192  $content = $this->newContent( 'hello world' );
193  $content = $content->addSectionHeader( 'test' );
194 
195  $this->assertEquals( "== test ==\n\nhello world", $content->getNativeData() );
196  }
197 
198  public static function dataPreSaveTransform() {
199  return [
200  [ 'hello this is ~~~',
201  "hello this is [[Special:Contributions/127.0.0.1|127.0.0.1]]",
202  ],
203  [ 'hello \'\'this\'\' is <nowiki>~~~</nowiki>',
204  'hello \'\'this\'\' is <nowiki>~~~</nowiki>',
205  ],
206  [ // rtrim
207  " Foo \n ",
208  " Foo",
209  ],
210  ];
211  }
212 
213  public static function dataPreloadTransform() {
214  return [
215  [
216  'hello this is ~~~',
217  "hello this is ~~~",
218  ],
219  [
220  'hello \'\'this\'\' is <noinclude>foo</noinclude><includeonly>bar</includeonly>',
221  'hello \'\'this\'\' is bar',
222  ],
223  ];
224  }
225 
226  public static function dataGetRedirectTarget() {
227  return [
228  [ '#REDIRECT [[Test]]',
229  'Test',
230  ],
231  [ '#REDIRECT Test',
232  null,
233  ],
234  [ '* #REDIRECT [[Test]]',
235  null,
236  ],
237  ];
238  }
239 
240  public static function dataGetTextForSummary() {
241  return [
242  [ "hello\nworld.",
243  16,
244  'hello world.',
245  ],
246  [ 'hello world.',
247  8,
248  'hello...',
249  ],
250  [ '[[hello world]].',
251  8,
252  'hel...',
253  ],
254  ];
255  }
256 
257  public static function dataIsCountable() {
258  return [
259  [ '',
260  null,
261  'any',
262  true
263  ],
264  [ 'Foo',
265  null,
266  'any',
267  true
268  ],
269  [ 'Foo',
270  null,
271  'comma',
272  false
273  ],
274  [ 'Foo, bar',
275  null,
276  'comma',
277  true
278  ],
279  [ 'Foo',
280  null,
281  'link',
282  false
283  ],
284  [ 'Foo [[bar]]',
285  null,
286  'link',
287  true
288  ],
289  [ 'Foo',
290  true,
291  'link',
292  true
293  ],
294  [ 'Foo [[bar]]',
295  false,
296  'link',
297  false
298  ],
299  [ '#REDIRECT [[bar]]',
300  true,
301  'any',
302  false
303  ],
304  [ '#REDIRECT [[bar]]',
305  true,
306  'comma',
307  false
308  ],
309  [ '#REDIRECT [[bar]]',
310  true,
311  'link',
312  false
313  ],
314  ];
315  }
316 
320  public function testMatchMagicWord() {
321  $mw = MagicWord::get( "staticredirect" );
322 
323  $content = $this->newContent( "#REDIRECT [[FOO]]\n__STATICREDIRECT__" );
324  $this->assertTrue( $content->matchMagicWord( $mw ), "should have matched magic word" );
325 
326  $content = $this->newContent( "#REDIRECT [[FOO]]" );
327  $this->assertFalse(
328  $content->matchMagicWord( $mw ),
329  "should not have matched magic word"
330  );
331  }
332 
336  public function testUpdateRedirect() {
337  $target = Title::newFromText( "testUpdateRedirect_target" );
338 
339  // test with non-redirect page
340  $content = $this->newContent( "hello world." );
341  $newContent = $content->updateRedirect( $target );
342 
343  $this->assertTrue( $content->equals( $newContent ), "content should be unchanged" );
344 
345  // test with actual redirect
346  $content = $this->newContent( "#REDIRECT [[Someplace]]" );
347  $newContent = $content->updateRedirect( $target );
348 
349  $this->assertFalse( $content->equals( $newContent ), "content should have changed" );
350  $this->assertTrue( $newContent->isRedirect(), "new content should be a redirect" );
351 
352  $this->assertEquals(
353  $target->getFullText(),
354  $newContent->getRedirectTarget()->getFullText()
355  );
356  }
357 
361  public function testGetModel() {
362  $content = $this->newContent( "hello world." );
363 
364  $this->assertEquals( CONTENT_MODEL_WIKITEXT, $content->getModel() );
365  }
366 
370  public function testGetContentHandler() {
371  $content = $this->newContent( "hello world." );
372 
373  $this->assertEquals( CONTENT_MODEL_WIKITEXT, $content->getContentHandler()->getModelID() );
374  }
375 
376  public function testRedirectParserOption() {
377  $title = Title::newFromText( 'testRedirectParserOption' );
378 
379  // Set up hook and its reporting variables
380  $wikitext = null;
381  $redirectTarget = null;
382  $this->mergeMwGlobalArrayValue( 'wgHooks', [
383  'InternalParseBeforeLinks' => [
384  function ( &$parser, &$text, &$stripState ) use ( &$wikitext, &$redirectTarget ) {
385  $wikitext = $text;
386  $redirectTarget = $parser->getOptions()->getRedirectTarget();
387  }
388  ]
389  ] );
390 
391  // Test with non-redirect page
392  $wikitext = false;
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'
400  );
401  $this->assertEquals( null, $redirectTarget, 'Redirect seen in hook was not null' );
402  $this->assertEquals( $title, $options->getRedirectTarget(),
403  'ParserOptions\' redirectTarget was changed'
404  );
405 
406  // Test with a redirect page
407  $wikitext = false;
408  $redirectTarget = false;
409  $content = $this->newContent(
410  "#REDIRECT [[TestRedirectParserOption/redir]]\nhello redirect."
411  );
412  $options = $content->getContentHandler()->makeParserOptions( 'canonical' );
413  $content->getParserOutput( $title, null, $options );
414  $this->assertEquals(
415  'hello redirect.',
416  $wikitext,
417  'Wikitext passed to hook was not as expected'
418  );
419  $this->assertNotEquals(
420  null,
421  $redirectTarget,
422  'Redirect seen in hook was null' );
423  $this->assertEquals(
424  'TestRedirectParserOption/redir',
425  $redirectTarget->getFullText(),
426  'Redirect seen in hook was not the expected title'
427  );
428  $this->assertEquals(
429  null,
430  $options->getRedirectTarget(),
431  'ParserOptions\' redirectTarget was changed'
432  );
433  }
434 
435  public static function dataEquals() {
436  return [
437  [ new WikitextContent( "hallo" ), null, false ],
438  [ new WikitextContent( "hallo" ), new WikitextContent( "hallo" ), true ],
439  [ new WikitextContent( "hallo" ), new JavaScriptContent( "hallo" ), false ],
440  [ new WikitextContent( "hallo" ), new TextContent( "hallo" ), false ],
441  [ new WikitextContent( "hallo" ), new WikitextContent( "HALLO" ), false ],
442  ];
443  }
444 
445  public static function dataGetDeletionUpdates() {
446  return [
447  [ "WikitextContentTest_testGetSecondaryDataUpdates_1",
448  CONTENT_MODEL_WIKITEXT, "hello ''world''\n",
449  [ 'LinksDeletionUpdate' => [] ]
450  ],
451  [ "WikitextContentTest_testGetSecondaryDataUpdates_2",
452  CONTENT_MODEL_WIKITEXT, "hello [[world test 21344]]\n",
453  [ 'LinksDeletionUpdate' => [] ]
454  ],
455  // @todo more...?
456  ];
457  }
458 }
WikitextContentTest\testGetSecondaryDataUpdates
testGetSecondaryDataUpdates( $title, $model, $text, $expectedStuff)
dataGetSecondaryDataUpdates Database WikitextContent::getSecondaryDataUpdates
Definition: WikitextContentTest.php:69
ParserOptions
Set options of the Parser.
Definition: ParserOptions.php:33
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:265
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:189
is
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like please read the documentation for except in special pages derived from QueryPage It s a common pitfall for new developers to submit code containing SQL queries which examine huge numbers of rows Remember that COUNT * is(N), counting rows in atable is like counting beans in a bucket.------------------------------------------------------------------------ Replication------------------------------------------------------------------------The largest installation of MediaWiki, Wikimedia, uses a large set ofslave MySQL servers replicating writes made to a master MySQL server. Itis important to understand the issues associated with this setup if youwant to write code destined for Wikipedia.It 's often the case that the best algorithm to use for a given taskdepends on whether or not replication is in use. Due to our unabashedWikipedia-centrism, we often just use the replication-friendly version, but if you like, you can use wfGetLB() ->getServerCount() > 1 tocheck to see if replication is in use.===Lag===Lag primarily occurs when large write queries are sent to the master.Writes on the master are executed in parallel, but they are executed inserial when they are replicated to the slaves. The master writes thequery to the binlog when the transaction is committed. The slaves pollthe binlog and start executing the query as soon as it appears. They canservice reads while they are performing a write query, but will not readanything more from the binlog and thus will perform no more writes. Thismeans that if the write query runs for a long time, the slaves will lagbehind the master for the time it takes for the write query to complete.Lag can be exacerbated by high read load. MediaWiki 's load balancer willstop sending reads to a slave when it is lagged by more than 30 seconds.If the load ratios are set incorrectly, or if there is too much loadgenerally, this may lead to a slave permanently hovering around 30seconds lag.If all slaves are lagged by more than 30 seconds, MediaWiki will stopwriting to the database. All edits and other write operations will berefused, with an error returned to the user. This gives the slaves achance to catch up. Before we had this mechanism, the slaves wouldregularly lag by several minutes, making review of recent editsdifficult.In addition to this, MediaWiki attempts to ensure that the user seesevents occurring on the wiki in chronological order. A few seconds of lagcan be tolerated, as long as the user sees a consistent picture fromsubsequent requests. This is done by saving the master binlog positionin the session, and then at the start of each request, waiting for theslave to catch up to that position before doing any reads from it. Ifthis wait times out, reads are allowed anyway, but the request isconsidered to be in "lagged slave mode". Lagged slave mode can bechecked by calling wfGetLB() ->getLaggedSlaveMode(). The onlypractical consequence at present is a warning displayed in the pagefooter.===Lag avoidance===To avoid excessive lag, queries which write large numbers of rows shouldbe split up, generally to write one row at a time. Multi-row INSERT ...SELECT queries are the worst offenders should be avoided altogether.Instead do the select first and then the insert.===Working with lag===Despite our best efforts, it 's not practical to guarantee a low-lagenvironment. Lag will usually be less than one second, but mayoccasionally be up to 30 seconds. For scalability, it 's very importantto keep load on the master low, so simply sending all your queries tothe master is not the answer. So when you have a genuine need forup-to-date data, the following approach is advised:1) Do a quick query to the master for a sequence number or timestamp 2) Run the full query on the slave and check if it matches the data you gotfrom the master 3) If it doesn 't, run the full query on the masterTo avoid swamping the master every time the slaves lag, use of thisapproach should be kept to a minimum. In most cases you should just readfrom the slave and let the user deal with the delay.------------------------------------------------------------------------ Lock contention------------------------------------------------------------------------Due to the high write rate on Wikipedia(and some other wikis), MediaWiki developers need to be very careful to structure their writesto avoid long-lasting locks. By default, MediaWiki opens a transactionat the first query, and commits it before the output is sent. Locks willbe held from the time when the query is done until the commit. So youcan reduce lock time by doing as much processing as possible before youdo your write queries.Often this approach is not good enough, and it becomes necessary toenclose small groups of queries in their own transaction. Use thefollowing syntax:$dbw=wfGetDB(DB_MASTER
WikitextContentTest\dataGetSecondaryDataUpdates
static dataGetSecondaryDataUpdates()
Definition: WikitextContentTest.php:38
TextContentTest
ContentHandler Database ^— needed, because we do need the database to test link updates.
Definition: TextContentTest.php:8
link
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
Definition: hooks.txt:2929
CONTENT_MODEL_WIKITEXT
const CONTENT_MODEL_WIKITEXT
Definition: Defines.php:233
php
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
Definition: injection.txt:35
WikitextContentTest\newContent
newContent( $text)
Definition: WikitextContentTest.php:22
WikitextContentTest\$sections
static $sections
Definition: WikitextContentTest.php:10
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:120
$content
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup 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
Definition: hooks.txt:1049
$page
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
Definition: hooks.txt:2536
in
null for the wiki Added in
Definition: hooks.txt:1572
not
if not
Definition: COPYING.txt:307
MediaWikiTestCase\getDefaultWikitextNS
getDefaultWikitextNS()
Returns the ID of a namespace that defaults to Wikitext.
Definition: MediaWikiTestCase.php:1639
WikitextContent
Content object for wiki text pages.
Definition: WikitextContent.php:33
WikitextContentTest\dataEquals
static dataEquals()
Definition: WikitextContentTest.php:435
hook
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
Definition: hooks.txt:23
ContentHandler\makeContent
static makeContent( $text, Title $title=null, $modelId=null, $format=null)
Convenience function for creating a Content object from a given textual representation.
Definition: ContentHandler.php:129
JavaScriptContent
Content for JavaScript pages.
Definition: JavaScriptContent.php:33
any
they could even be mouse clicks or menu items whatever suits your program You should also get your if any
Definition: COPYING.txt:326
$value
$value
Definition: styleTest.css.php:45
WikitextContentTest\testRedirectParserOption
testRedirectParserOption()
Definition: WikitextContentTest.php:376
WikitextContentTest\dataGetDeletionUpdates
static dataGetDeletionUpdates()
Definition: WikitextContentTest.php:445
TextContent
Content object implementation for representing flat text.
Definition: TextContent.php:35
WikitextContentTest\dataGetParserOutput
static dataGetParserOutput()
Definition: WikitextContentTest.php:26
as
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
Definition: distributors.txt:9
true
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
Definition: hooks.txt:1956
seen
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
Definition: globals.txt:25
WikitextContentTest
ContentHandler.
Definition: WikitextContentTest.php:9
$options
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup 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
Definition: hooks.txt:1049