MediaWiki  1.29.1
WikitextStructureTest.php
Go to the documentation of this file.
1 <?php
2 
4 
5  private function getMockTitle() {
6  return Title::newFromText( "TestTitle" );
7  }
8 
14  private function getParserOutput( $text ) {
15  $content = new WikitextContent( $text );
16  return $content->getParserOutput( $this->getMockTitle() );
17  }
18 
24  private function getStructure( $text ) {
25  return new WikiTextStructure( $this->getParserOutput( $text ) );
26  }
27 
28  public function testHeadings() {
29  $text = <<<END
30 Some text here
31 == Heading one ==
32 Some text
33 ==== heading two ====
34 More text
35 === Applicability of the strict mass-energy equivalence formula, ''E'' = ''mc''<sup>2</sup> ===
36 and more text
37 == Wikitext '''in''' [[Heading]] and also <b>html</b> ==
38 more text
39 ==== See also ====
40 * Also things to see!
41 END;
42  $struct = $this->getStructure( $text );
43  $headings = $struct->headings();
44  $this->assertCount( 4, $headings );
45  $this->assertContains( "Heading one", $headings );
46  $this->assertContains( "heading two", $headings );
47  $this->assertContains( "Applicability of the strict mass-energy equivalence formula, E = mc2",
48  $headings );
49  $this->assertContains( "Wikitext in Heading and also html", $headings );
50  }
51 
52  public function testDefaultSort() {
53  $text = <<<END
54 Louise Michel
55 == Heading one ==
56 Some text
57 ==== See also ====
58 * Also things to see!
59 {{DEFAULTSORT:Michel, Louise}}
60 END;
61  $struct = $this->getStructure( $text );
62  $this->assertEquals( "Michel, Louise", $struct->getDefaultSort() );
63  }
64 
65  public function testHeadingsFirst() {
66  $text = <<<END
67 == Heading one ==
68 Some text
69 ==== heading two ====
70 END;
71  $struct = $this->getStructure( $text );
72  $headings = $struct->headings();
73  $this->assertCount( 2, $headings );
74  $this->assertContains( "Heading one", $headings );
75  $this->assertContains( "heading two", $headings );
76  }
77 
78  public function testHeadingsNone() {
79  $text = "This text is completely devoid of headings.";
80  $struct = $this->getStructure( $text );
81  $headings = $struct->headings();
82  $this->assertArrayEquals( [], $headings );
83  }
84 
85  public function testTexts() {
86  $text = <<<END
87 Opening text is opening.
88 == Then comes header ==
89 Then we got more<br>text
90 === And more headers ===
91 {| class="wikitable"
92 |-
93 ! Header table
94 |-
95 | row in table
96 |-
97 | another row in table
98 |}
99 END;
100  $struct = $this->getStructure( $text );
101  $this->assertEquals( "Opening text is opening.", $struct->getOpeningText() );
102  $this->assertEquals( "Opening text is opening. Then we got more text",
103  $struct->getMainText() );
104  $this->assertEquals( [ "Header table row in table another row in table" ],
105  $struct->getAuxiliaryText() );
106  }
107 }
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
MediaWikiTestCase\assertArrayEquals
assertArrayEquals(array $expected, array $actual, $ordered=false, $named=false)
Assert that two arrays are equal.
Definition: MediaWikiTestCase.php:1498
Also
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two distribute and or modify the software Also
Definition: COPYING.txt:43
WikitextStructureTest\testHeadingsNone
testHeadingsNone()
Definition: WikitextStructureTest.php:78
WikitextStructureTest\getParserOutput
getParserOutput( $text)
Get parser output for Wiki text.
Definition: WikitextStructureTest.php:14
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
text
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition: design.txt:12
WikitextStructureTest\getMockTitle
getMockTitle()
Definition: WikitextStructureTest.php:5
WikitextStructureTest\getStructure
getStructure( $text)
Get WikitextStructure for given text.
Definition: WikitextStructureTest.php:24
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
table
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global then executing the whole list after the page is displayed We don t do anything smart like collating updates to the same table or such because the list is almost always going to have just one item on if so it s not worth the trouble Since there is a job queue in the jobs table
Definition: deferred.txt:11
$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
in
null for the wiki Added in
Definition: hooks.txt:1572
WikitextContent
Content object for wiki text pages.
Definition: WikitextContent.php:33
WikitextStructureTest\testDefaultSort
testDefaultSort()
Definition: WikitextStructureTest.php:52
WikitextStructureTest\testHeadingsFirst
testHeadingsFirst()
Definition: WikitextStructureTest.php:65
see
Some information about database access in MediaWiki By Tim January Database layout For information about the MediaWiki database such as a description of the tables and their please see
Definition: database.txt:2
MediaWikiLangTestCase
Base class that store and restore the Language objects.
Definition: MediaWikiLangTestCase.php:6
WikitextStructureTest\testTexts
testTexts()
Definition: WikitextStructureTest.php:85
and
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
things
magicword txt Magic Words are some phrases used in the wikitext They are used for two things
Definition: magicword.txt:4
of
globals txt Globals are evil The original MediaWiki code relied on globals for processing context far too often MediaWiki development since then has been a story of slowly moving context out of global variables and into objects Storing processing context in object member variables allows those objects to be reused in a much more flexible way Consider the elegance of
Definition: globals.txt:10
WikiTextStructure
Class allowing to explore structure of parsed wikitext.
Definition: WikiTextStructure.php:8
WikitextStructureTest
Definition: WikitextStructureTest.php:3
headers
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add headers
Definition: design.txt:12
WikitextStructureTest\testHeadings
testHeadings()
Definition: WikitextStructureTest.php:28