MediaWiki  1.33.0
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
33 Some text here
34 == Heading one ==
35 Some text
36 ==== heading two ====
37 More text
38 === Applicability of the strict mass-energy equivalence formula, ''E'' = ''mc''<sup>2</sup> ===
39 and more text
40 == Wikitext '''in''' [[Heading]] and also <b>html</b> ==
41 more text
42 ==== See also ====
43 * Also things to see!
44 END;
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
57 Louise Michel
58 == Heading one ==
59 Some text
60 ==== See also ====
61 * Also things to see!
62 {{DEFAULTSORT:Michel, Louise}}
63 END;
64  $struct = $this->getStructure( $text );
65  $this->assertEquals( "Michel, Louise", $struct->getDefaultSort() );
66  }
67 
68  public function testHeadingsFirst() {
69  $text = <<<END
70 == Heading one ==
71 Some text
72 ==== heading two ====
73 END;
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
90 Opening text is opening.
91 == Then comes header ==
92 Then 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 |}
102 END;
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 }
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:306
MediaWikiTestCase\assertArrayEquals
assertArrayEquals(array $expected, array $actual, $ordered=false, $named=false)
Assert that two arrays are equal.
Definition: MediaWikiTestCase.php:2070
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:81
WikitextStructureTest\getParserOutput
getParserOutput( $text)
Get parser output for Wiki text.
Definition: WikitextStructureTest.php:17
WikitextStructureTest\getMockTitle
getMockTitle()
Definition: WikitextStructureTest.php:8
WikitextStructureTest\getStructure
getStructure( $text)
Get WikitextStructure for given text.
Definition: WikitextStructureTest.php:27
is
This document provides an overview of the usage of PageUpdater and that is
Definition: pageupdater.txt:3
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
in
null for the wiki Added in
Definition: hooks.txt:1588
WikitextContent
Content object for wiki text pages.
Definition: WikitextContent.php:36
WikitextStructureTest\testDefaultSort
testDefaultSort()
Definition: WikitextStructureTest.php:55
WikitextStructureTest\testHeadingsFirst
testHeadingsFirst()
Definition: WikitextStructureTest.php:68
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:8
text
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
Definition: All_system_messages.txt:1267
WikitextStructureTest\testTexts
testTexts()
Definition: WikitextStructureTest.php:88
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
$content
$content
Definition: pageupdater.txt:72
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\testPreservesWordSpacing
testPreservesWordSpacing()
Definition: WikitextStructureTest.php:111
WikitextStructureTest
WikiTextStructure.
Definition: WikitextStructureTest.php:6
WikitextStructureTest\testHeadings
testHeadings()
Definition: WikitextStructureTest.php:31