MediaWiki REL1_33
WikitextStructureTest.php
Go to the documentation of this file.
1<?php
2
7
8 private function getMockTitle() {
9 return Title::newFromText( "TestTitle" );
10 }
11
17 private function getParserOutput( $text ) {
18 $content = new WikitextContent( $text );
19 return $content->getParserOutput( $this->getMockTitle() );
20 }
21
27 private function getStructure( $text ) {
28 return new WikiTextStructure( $this->getParserOutput( $text ) );
29 }
30
31 public function testHeadings() {
32 $text = <<<END
33Some text here
34== Heading one ==
35Some text
36==== heading two ====
37More text
38=== Applicability of the strict mass-energy equivalence formula, ''E'' = ''mc''<sup>2</sup> ===
39and more text
40== Wikitext '''in''' [[Heading]] and also <b>html</b> ==
41more text
42==== See also ====
43* Also things to see!
44END;
45 $struct = $this->getStructure( $text );
46 $headings = $struct->headings();
47 $this->assertCount( 4, $headings );
48 $this->assertContains( "Heading one", $headings );
49 $this->assertContains( "heading two", $headings );
50 $this->assertContains( "Applicability of the strict mass-energy equivalence formula, E = mc2",
51 $headings );
52 $this->assertContains( "Wikitext in Heading and also html", $headings );
53 }
54
55 public function testDefaultSort() {
56 $text = <<<END
57Louise Michel
58== Heading one ==
59Some text
60==== See also ====
61* Also things to see!
62{{DEFAULTSORT:Michel, Louise}}
63END;
64 $struct = $this->getStructure( $text );
65 $this->assertEquals( "Michel, Louise", $struct->getDefaultSort() );
66 }
67
68 public function testHeadingsFirst() {
69 $text = <<<END
70== Heading one ==
71Some text
72==== heading two ====
73END;
74 $struct = $this->getStructure( $text );
75 $headings = $struct->headings();
76 $this->assertCount( 2, $headings );
77 $this->assertContains( "Heading one", $headings );
78 $this->assertContains( "heading two", $headings );
79 }
80
81 public function testHeadingsNone() {
82 $text = "This text is completely devoid of headings.";
83 $struct = $this->getStructure( $text );
84 $headings = $struct->headings();
85 $this->assertArrayEquals( [], $headings );
86 }
87
88 public function testTexts() {
89 $text = <<<END
90Opening text is opening.
91== Then comes header ==
92Then we got more<br>text
93=== And more headers ===
94{| class="wikitable"
95|-
96! Header table
97|-
98| row in table
99|-
100| another row in table
101|}
102END;
103 $struct = $this->getStructure( $text );
104 $this->assertEquals( "Opening text is opening.", $struct->getOpeningText() );
105 $this->assertEquals( "Opening text is opening. Then we got more text",
106 $struct->getMainText() );
107 $this->assertEquals( [ "Header table row in table another row in table" ],
108 $struct->getAuxiliaryText() );
109 }
110
111 public function testPreservesWordSpacing() {
112 $text = "<dd><dl>foo</dl><dl>bar</dl></dd><p>baz</p>";
113 $struct = $this->getStructure( $text );
114 $this->assertEquals( "foo bar baz", $struct->getMainText() );
115 }
116}
and(b) You must cause any modified files to carry prominent notices stating that You changed the files
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
Base class that store and restore the Language objects.
assertArrayEquals(array $expected, array $actual, $ordered=false, $named=false)
Assert that two arrays are equal.
Class allowing to explore structure of parsed wikitext.
Content object for wiki text pages.
getParserOutput( $text)
Get parser output for Wiki text.
getStructure( $text)
Get WikitextStructure for given text.
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:18
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:16
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
database rows
Definition globals.txt:10
null for the local wiki Added in
Definition hooks.txt:1588
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:37
magicword txt Magic Words are some phrases used in the wikitext They are used for two things
Definition magicword.txt:4
$content
This document provides an overview of the usage of PageUpdater and that is