MediaWiki REL1_31
TitleMethodsTest.php
Go to the documentation of this file.
1<?php
2
11
12 protected function setUp() {
14
15 parent::setUp();
16
18 'wgExtraNamespaces',
19 [
20 12302 => 'TEST-JS',
21 12303 => 'TEST-JS_TALK',
22 ]
23 );
24
26 'wgNamespaceContentModels',
27 [
29 ]
30 );
31
32 MWNamespace::clearCaches();
33 $wgContLang->resetNamespaces(); # reset namespace cache
34 }
35
36 protected function tearDown() {
38
39 parent::tearDown();
40
41 MWNamespace::clearCaches();
42 $wgContLang->resetNamespaces(); # reset namespace cache
43 }
44
45 public static function provideEquals() {
46 return [
47 [ 'Main Page', 'Main Page', true ],
48 [ 'Main Page', 'Not The Main Page', false ],
49 [ 'Main Page', 'Project:Main Page', false ],
50 [ 'File:Example.png', 'Image:Example.png', true ],
51 [ 'Special:Version', 'Special:Version', true ],
52 [ 'Special:Version', 'Special:Recentchanges', false ],
53 [ 'Special:Version', 'Main Page', false ],
54 ];
55 }
56
61 public function testEquals( $titleA, $titleB, $expectedBool ) {
62 $titleA = Title::newFromText( $titleA );
63 $titleB = Title::newFromText( $titleB );
64
65 $this->assertEquals( $expectedBool, $titleA->equals( $titleB ) );
66 $this->assertEquals( $expectedBool, $titleB->equals( $titleA ) );
67 }
68
69 public static function provideInNamespace() {
70 return [
71 [ 'Main Page', NS_MAIN, true ],
72 [ 'Main Page', NS_TALK, false ],
73 [ 'Main Page', NS_USER, false ],
74 [ 'User:Foo', NS_USER, true ],
75 [ 'User:Foo', NS_USER_TALK, false ],
76 [ 'User:Foo', NS_TEMPLATE, false ],
77 [ 'User_talk:Foo', NS_USER_TALK, true ],
78 [ 'User_talk:Foo', NS_USER, false ],
79 ];
80 }
81
86 public function testInNamespace( $title, $ns, $expectedBool ) {
87 $title = Title::newFromText( $title );
88 $this->assertEquals( $expectedBool, $title->inNamespace( $ns ) );
89 }
90
94 public function testInNamespaces() {
95 $mainpage = Title::newFromText( 'Main Page' );
96 $this->assertTrue( $mainpage->inNamespaces( NS_MAIN, NS_USER ) );
97 $this->assertTrue( $mainpage->inNamespaces( [ NS_MAIN, NS_USER ] ) );
98 $this->assertTrue( $mainpage->inNamespaces( [ NS_USER, NS_MAIN ] ) );
99 $this->assertFalse( $mainpage->inNamespaces( [ NS_PROJECT, NS_TEMPLATE ] ) );
100 }
101
102 public static function provideHasSubjectNamespace() {
103 return [
104 [ 'Main Page', NS_MAIN, true ],
105 [ 'Main Page', NS_TALK, true ],
106 [ 'Main Page', NS_USER, false ],
107 [ 'User:Foo', NS_USER, true ],
108 [ 'User:Foo', NS_USER_TALK, true ],
109 [ 'User:Foo', NS_TEMPLATE, false ],
110 [ 'User_talk:Foo', NS_USER_TALK, true ],
111 [ 'User_talk:Foo', NS_USER, true ],
112 ];
113 }
114
119 public function testHasSubjectNamespace( $title, $ns, $expectedBool ) {
120 $title = Title::newFromText( $title );
121 $this->assertEquals( $expectedBool, $title->hasSubjectNamespace( $ns ) );
122 }
123
124 public function dataGetContentModel() {
125 return [
126 [ 'Help:Foo', CONTENT_MODEL_WIKITEXT ],
127 [ 'Help:Foo.js', CONTENT_MODEL_WIKITEXT ],
128 [ 'Help:Foo/bar.js', CONTENT_MODEL_WIKITEXT ],
129 [ 'User:Foo', CONTENT_MODEL_WIKITEXT ],
130 [ 'User:Foo.js', CONTENT_MODEL_WIKITEXT ],
131 [ 'User:Foo/bar.js', CONTENT_MODEL_JAVASCRIPT ],
132 [ 'User:Foo/bar.css', CONTENT_MODEL_CSS ],
133 [ 'User talk:Foo/bar.css', CONTENT_MODEL_WIKITEXT ],
134 [ 'User:Foo/bar.js.xxx', CONTENT_MODEL_WIKITEXT ],
135 [ 'User:Foo/bar.xxx', CONTENT_MODEL_WIKITEXT ],
136 [ 'MediaWiki:Foo.js', CONTENT_MODEL_JAVASCRIPT ],
137 [ 'MediaWiki:Foo.css', CONTENT_MODEL_CSS ],
138 [ 'MediaWiki:Foo/bar.css', CONTENT_MODEL_CSS ],
139 [ 'MediaWiki:Foo.JS', CONTENT_MODEL_WIKITEXT ],
140 [ 'MediaWiki:Foo.CSS', CONTENT_MODEL_WIKITEXT ],
141 [ 'MediaWiki:Foo.css.xxx', CONTENT_MODEL_WIKITEXT ],
142 [ 'TEST-JS:Foo', CONTENT_MODEL_JAVASCRIPT ],
143 [ 'TEST-JS:Foo.js', CONTENT_MODEL_JAVASCRIPT ],
144 [ 'TEST-JS:Foo/bar.js', CONTENT_MODEL_JAVASCRIPT ],
145 [ 'TEST-JS_TALK:Foo.js', CONTENT_MODEL_WIKITEXT ],
146 ];
147 }
148
153 public function testGetContentModel( $title, $expectedModelId ) {
154 $title = Title::newFromText( $title );
155 $this->assertEquals( $expectedModelId, $title->getContentModel() );
156 }
157
162 public function testHasContentModel( $title, $expectedModelId ) {
163 $title = Title::newFromText( $title );
164 $this->assertTrue( $title->hasContentModel( $expectedModelId ) );
165 }
166
167 public static function provideIsSiteConfigPage() {
168 return [
169 [ 'Help:Foo', false ],
170 [ 'Help:Foo.js', false ],
171 [ 'Help:Foo/bar.js', false ],
172 [ 'User:Foo', false ],
173 [ 'User:Foo.js', false ],
174 [ 'User:Foo/bar.js', false ],
175 [ 'User:Foo/bar.json', false ],
176 [ 'User:Foo/bar.css', false ],
177 [ 'User:Foo/bar.JS', false ],
178 [ 'User:Foo/bar.JSON', false ],
179 [ 'User:Foo/bar.CSS', false ],
180 [ 'User talk:Foo/bar.css', false ],
181 [ 'User:Foo/bar.js.xxx', false ],
182 [ 'User:Foo/bar.xxx', false ],
183 [ 'MediaWiki:Foo.js', true ],
184 [ 'MediaWiki:Foo.json', true ],
185 [ 'MediaWiki:Foo.css', true ],
186 [ 'MediaWiki:Foo.JS', false ],
187 [ 'MediaWiki:Foo.JSON', false ],
188 [ 'MediaWiki:Foo.CSS', false ],
189 [ 'MediaWiki:Foo/bar.css', true ],
190 [ 'MediaWiki:Foo.css.xxx', false ],
191 [ 'TEST-JS:Foo', false ],
192 [ 'TEST-JS:Foo.js', false ],
193 ];
194 }
195
200 public function testSiteConfigPage( $title, $expectedBool ) {
201 $title = Title::newFromText( $title );
202 $this->assertEquals( $expectedBool, $title->isSiteConfigPage() );
203 }
204
205 public static function provideIsUserConfigPage() {
206 return [
207 [ 'Help:Foo', false ],
208 [ 'Help:Foo.js', false ],
209 [ 'Help:Foo/bar.js', false ],
210 [ 'User:Foo', false ],
211 [ 'User:Foo.js', false ],
212 [ 'User:Foo/bar.js', true ],
213 [ 'User:Foo/bar.JS', false ],
214 [ 'User:Foo/bar.json', true ],
215 [ 'User:Foo/bar.JSON', false ],
216 [ 'User:Foo/bar.css', true ],
217 [ 'User:Foo/bar.CSS', false ],
218 [ 'User talk:Foo/bar.css', false ],
219 [ 'User:Foo/bar.js.xxx', false ],
220 [ 'User:Foo/bar.xxx', false ],
221 [ 'MediaWiki:Foo.js', false ],
222 [ 'MediaWiki:Foo.json', false ],
223 [ 'MediaWiki:Foo.css', false ],
224 [ 'MediaWiki:Foo.JS', false ],
225 [ 'MediaWiki:Foo.JSON', false ],
226 [ 'MediaWiki:Foo.CSS', false ],
227 [ 'MediaWiki:Foo.css.xxx', false ],
228 [ 'TEST-JS:Foo', false ],
229 [ 'TEST-JS:Foo.js', false ],
230 ];
231 }
232
237 public function testIsUserConfigPage( $title, $expectedBool ) {
238 $title = Title::newFromText( $title );
239 $this->assertEquals( $expectedBool, $title->isUserConfigPage() );
240 }
241
242 public static function provideIsUserCssConfigPage() {
243 return [
244 [ 'Help:Foo', false ],
245 [ 'Help:Foo.css', false ],
246 [ 'User:Foo', false ],
247 [ 'User:Foo.js', false ],
248 [ 'User:Foo.json', false ],
249 [ 'User:Foo.css', false ],
250 [ 'User:Foo/bar.js', false ],
251 [ 'User:Foo/bar.json', false ],
252 [ 'User:Foo/bar.css', true ],
253 ];
254 }
255
260 public function testIsUserCssConfigPage( $title, $expectedBool ) {
261 $title = Title::newFromText( $title );
262 $this->assertEquals( $expectedBool, $title->isUserCssConfigPage() );
263 }
264
265 public static function provideIsUserJsConfigPage() {
266 return [
267 [ 'Help:Foo', false ],
268 [ 'Help:Foo.css', false ],
269 [ 'User:Foo', false ],
270 [ 'User:Foo.js', false ],
271 [ 'User:Foo.json', false ],
272 [ 'User:Foo.css', false ],
273 [ 'User:Foo/bar.js', true ],
274 [ 'User:Foo/bar.json', false ],
275 [ 'User:Foo/bar.css', false ],
276 ];
277 }
278
283 public function testIsUserJsConfigPage( $title, $expectedBool ) {
284 $title = Title::newFromText( $title );
285 $this->assertEquals( $expectedBool, $title->isUserJsConfigPage() );
286 }
287
288 public static function provideIsWikitextPage() {
289 return [
290 [ 'Help:Foo', true ],
291 [ 'Help:Foo.js', true ],
292 [ 'Help:Foo/bar.js', true ],
293 [ 'User:Foo', true ],
294 [ 'User:Foo.js', true ],
295 [ 'User:Foo/bar.js', false ],
296 [ 'User:Foo/bar.json', false ],
297 [ 'User:Foo/bar.css', false ],
298 [ 'User talk:Foo/bar.css', true ],
299 [ 'User:Foo/bar.js.xxx', true ],
300 [ 'User:Foo/bar.xxx', true ],
301 [ 'MediaWiki:Foo.js', false ],
302 [ 'User:Foo/bar.JS', true ],
303 [ 'User:Foo/bar.JSON', true ],
304 [ 'User:Foo/bar.CSS', true ],
305 [ 'MediaWiki:Foo.json', false ],
306 [ 'MediaWiki:Foo.css', false ],
307 [ 'MediaWiki:Foo.JS', true ],
308 [ 'MediaWiki:Foo.JSON', true ],
309 [ 'MediaWiki:Foo.CSS', true ],
310 [ 'MediaWiki:Foo.css.xxx', true ],
311 [ 'TEST-JS:Foo', false ],
312 [ 'TEST-JS:Foo.js', false ],
313 ];
314 }
315
320 public function testIsWikitextPage( $title, $expectedBool ) {
321 $title = Title::newFromText( $title );
322 $this->assertEquals( $expectedBool, $title->isWikitextPage() );
323 }
324
325 public static function provideGetOtherPage() {
326 return [
327 [ 'Main Page', 'Talk:Main Page' ],
328 [ 'Talk:Main Page', 'Main Page' ],
329 [ 'Help:Main Page', 'Help talk:Main Page' ],
330 [ 'Help talk:Main Page', 'Help:Main Page' ],
331 [ 'Special:FooBar', null ],
332 [ 'Media:File.jpg', null ],
333 ];
334 }
335
343 public function testGetOtherPage( $text, $expected ) {
344 if ( $expected === null ) {
345 $this->setExpectedException( MWException::class );
346 }
347
348 $title = Title::newFromText( $text );
349 $this->assertEquals( $expected, $title->getOtherPage()->getPrefixedText() );
350 }
351
355 public function testClearCaches() {
356 $linkCache = LinkCache::singleton();
357
358 $title1 = Title::newFromText( 'Foo' );
359 $linkCache->addGoodLinkObj( 23, $title1 );
360
361 Title::clearCaches();
362
363 $title2 = Title::newFromText( 'Foo' );
364 $this->assertNotSame( $title1, $title2, 'title cache should be empty' );
365 $this->assertEquals( 0, $linkCache->getGoodLinkID( 'Foo' ), 'link cache should be empty' );
366 }
367}
Base class that store and restore the Language objects.
mergeMwGlobalArrayValue( $name, $values)
Merges the given values into a MW global array variable.
ContentHandler Database.
testEquals( $titleA, $titleB, $expectedBool)
provideEquals Title::equals
testGetContentModel( $title, $expectedModelId)
dataGetContentModel Title::getContentModel
static provideIsUserJsConfigPage()
static provideHasSubjectNamespace()
testIsUserJsConfigPage( $title, $expectedBool)
provideIsUserJsConfigPage Title::isUserJsConfigPage
testHasContentModel( $title, $expectedModelId)
dataGetContentModel Title::hasContentModel
static provideIsSiteConfigPage()
testIsWikitextPage( $title, $expectedBool)
provideIsWikitextPage Title::isWikitextPage
testSiteConfigPage( $title, $expectedBool)
provideIsSiteConfigPage Title::isSiteConfigPage
testClearCaches()
Title::clearCaches.
static provideIsUserCssConfigPage()
testIsUserConfigPage( $title, $expectedBool)
provideIsUserConfigPage Title::isUserConfigPage
testIsUserCssConfigPage( $title, $expectedBool)
provideIsUserCssConfigPage Title::isUserCssConfigPage
testInNamespaces()
Title::inNamespaces.
static provideIsUserConfigPage()
testHasSubjectNamespace( $title, $ns, $expectedBool)
provideHasSubjectNamespace Title::hasSubjectNamespace
testGetOtherPage( $text, $expected)
provideGetOtherpage Title::getOtherPage
testInNamespace( $title, $ns, $expectedBool)
provideInNamespace Title::inNamespace
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition design.txt:57
when a variable name is used in a function
Definition design.txt:94
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
const NS_USER
Definition Defines.php:76
const CONTENT_MODEL_CSS
Definition Defines.php:247
const NS_MAIN
Definition Defines.php:74
const NS_TEMPLATE
Definition Defines.php:84
const CONTENT_MODEL_WIKITEXT
Definition Defines.php:245
const NS_TALK
Definition Defines.php:75
const NS_USER_TALK
Definition Defines.php:77
const NS_PROJECT
Definition Defines.php:78
const CONTENT_MODEL_JAVASCRIPT
Definition Defines.php:246
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:964
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:2006
processing should stop and the error should be shown to the user * false
Definition hooks.txt:187
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
you have access to all of the normal MediaWiki so you can get a DB use the cache