MediaWiki  1.33.0
TitleMethodsTest.php
Go to the documentation of this file.
1 <?php
2 
5 
14 
15  protected function setUp() {
16  parent::setUp();
17 
19  'wgExtraNamespaces',
20  [
21  12302 => 'TEST-JS',
22  12303 => 'TEST-JS_TALK',
23  ]
24  );
25 
27  'wgNamespaceContentModels',
28  [
29  12302 => CONTENT_MODEL_JAVASCRIPT,
30  ]
31  );
32  }
33 
34  public static function provideInNamespace() {
35  return [
36  [ 'Main Page', NS_MAIN, true ],
37  [ 'Main Page', NS_TALK, false ],
38  [ 'Main Page', NS_USER, false ],
39  [ 'User:Foo', NS_USER, true ],
40  [ 'User:Foo', NS_USER_TALK, false ],
41  [ 'User:Foo', NS_TEMPLATE, false ],
42  [ 'User_talk:Foo', NS_USER_TALK, true ],
43  [ 'User_talk:Foo', NS_USER, false ],
44  ];
45  }
46 
51  public function testInNamespace( $title, $ns, $expectedBool ) {
53  $this->assertEquals( $expectedBool, $title->inNamespace( $ns ) );
54  }
55 
59  public function testInNamespaces() {
60  $mainpage = Title::newFromText( 'Main Page' );
61  $this->assertTrue( $mainpage->inNamespaces( NS_MAIN, NS_USER ) );
62  $this->assertTrue( $mainpage->inNamespaces( [ NS_MAIN, NS_USER ] ) );
63  $this->assertTrue( $mainpage->inNamespaces( [ NS_USER, NS_MAIN ] ) );
64  $this->assertFalse( $mainpage->inNamespaces( [ NS_PROJECT, NS_TEMPLATE ] ) );
65  }
66 
67  public static function provideHasSubjectNamespace() {
68  return [
69  [ 'Main Page', NS_MAIN, true ],
70  [ 'Main Page', NS_TALK, true ],
71  [ 'Main Page', NS_USER, false ],
72  [ 'User:Foo', NS_USER, true ],
73  [ 'User:Foo', NS_USER_TALK, true ],
74  [ 'User:Foo', NS_TEMPLATE, false ],
75  [ 'User_talk:Foo', NS_USER_TALK, true ],
76  [ 'User_talk:Foo', NS_USER, true ],
77  ];
78  }
79 
84  public function testHasSubjectNamespace( $title, $ns, $expectedBool ) {
86  $this->assertEquals( $expectedBool, $title->hasSubjectNamespace( $ns ) );
87  }
88 
89  public function dataGetContentModel() {
90  return [
91  [ 'Help:Foo', CONTENT_MODEL_WIKITEXT ],
92  [ 'Help:Foo.js', CONTENT_MODEL_WIKITEXT ],
93  [ 'Help:Foo/bar.js', CONTENT_MODEL_WIKITEXT ],
94  [ 'User:Foo', CONTENT_MODEL_WIKITEXT ],
95  [ 'User:Foo.js', CONTENT_MODEL_WIKITEXT ],
96  [ 'User:Foo/bar.js', CONTENT_MODEL_JAVASCRIPT ],
97  [ 'User:Foo/bar.css', CONTENT_MODEL_CSS ],
98  [ 'User talk:Foo/bar.css', CONTENT_MODEL_WIKITEXT ],
99  [ 'User:Foo/bar.js.xxx', CONTENT_MODEL_WIKITEXT ],
100  [ 'User:Foo/bar.xxx', CONTENT_MODEL_WIKITEXT ],
101  [ 'MediaWiki:Foo.js', CONTENT_MODEL_JAVASCRIPT ],
102  [ 'MediaWiki:Foo.css', CONTENT_MODEL_CSS ],
103  [ 'MediaWiki:Foo/bar.css', CONTENT_MODEL_CSS ],
104  [ 'MediaWiki:Foo.JS', CONTENT_MODEL_WIKITEXT ],
105  [ 'MediaWiki:Foo.CSS', CONTENT_MODEL_WIKITEXT ],
106  [ 'MediaWiki:Foo.css.xxx', CONTENT_MODEL_WIKITEXT ],
107  [ 'TEST-JS:Foo', CONTENT_MODEL_JAVASCRIPT ],
108  [ 'TEST-JS:Foo.js', CONTENT_MODEL_JAVASCRIPT ],
109  [ 'TEST-JS:Foo/bar.js', CONTENT_MODEL_JAVASCRIPT ],
110  [ 'TEST-JS_TALK:Foo.js', CONTENT_MODEL_WIKITEXT ],
111  ];
112  }
113 
118  public function testGetContentModel( $title, $expectedModelId ) {
120  $this->assertEquals( $expectedModelId, $title->getContentModel() );
121  }
122 
127  public function testHasContentModel( $title, $expectedModelId ) {
129  $this->assertTrue( $title->hasContentModel( $expectedModelId ) );
130  }
131 
132  public static function provideIsSiteConfigPage() {
133  return [
134  [ 'Help:Foo', false ],
135  [ 'Help:Foo.js', false ],
136  [ 'Help:Foo/bar.js', false ],
137  [ 'User:Foo', false ],
138  [ 'User:Foo.js', false ],
139  [ 'User:Foo/bar.js', false ],
140  [ 'User:Foo/bar.json', false ],
141  [ 'User:Foo/bar.css', false ],
142  [ 'User:Foo/bar.JS', false ],
143  [ 'User:Foo/bar.JSON', false ],
144  [ 'User:Foo/bar.CSS', false ],
145  [ 'User talk:Foo/bar.css', false ],
146  [ 'User:Foo/bar.js.xxx', false ],
147  [ 'User:Foo/bar.xxx', false ],
148  [ 'MediaWiki:Foo.js', true ],
149  [ 'MediaWiki:Foo.json', true ],
150  [ 'MediaWiki:Foo.css', true ],
151  [ 'MediaWiki:Foo.JS', false ],
152  [ 'MediaWiki:Foo.JSON', false ],
153  [ 'MediaWiki:Foo.CSS', false ],
154  [ 'MediaWiki:Foo/bar.css', true ],
155  [ 'MediaWiki:Foo.css.xxx', false ],
156  [ 'TEST-JS:Foo', false ],
157  [ 'TEST-JS:Foo.js', false ],
158  ];
159  }
160 
165  public function testSiteConfigPage( $title, $expectedBool ) {
167  $this->assertEquals( $expectedBool, $title->isSiteConfigPage() );
168  }
169 
170  public static function provideIsUserConfigPage() {
171  return [
172  [ 'Help:Foo', false ],
173  [ 'Help:Foo.js', false ],
174  [ 'Help:Foo/bar.js', false ],
175  [ 'User:Foo', false ],
176  [ 'User:Foo.js', false ],
177  [ 'User:Foo/bar.js', true ],
178  [ 'User:Foo/bar.JS', false ],
179  [ 'User:Foo/bar.json', true ],
180  [ 'User:Foo/bar.JSON', false ],
181  [ 'User:Foo/bar.css', true ],
182  [ 'User:Foo/bar.CSS', false ],
183  [ 'User talk:Foo/bar.css', false ],
184  [ 'User:Foo/bar.js.xxx', false ],
185  [ 'User:Foo/bar.xxx', false ],
186  [ 'MediaWiki:Foo.js', false ],
187  [ 'MediaWiki:Foo.json', false ],
188  [ 'MediaWiki:Foo.css', false ],
189  [ 'MediaWiki:Foo.JS', false ],
190  [ 'MediaWiki:Foo.JSON', false ],
191  [ 'MediaWiki:Foo.CSS', false ],
192  [ 'MediaWiki:Foo.css.xxx', false ],
193  [ 'TEST-JS:Foo', false ],
194  [ 'TEST-JS:Foo.js', false ],
195  ];
196  }
197 
202  public function testIsUserConfigPage( $title, $expectedBool ) {
204  $this->assertEquals( $expectedBool, $title->isUserConfigPage() );
205  }
206 
207  public static function provideIsUserCssConfigPage() {
208  return [
209  [ 'Help:Foo', false ],
210  [ 'Help:Foo.css', false ],
211  [ 'User:Foo', false ],
212  [ 'User:Foo.js', false ],
213  [ 'User:Foo.json', false ],
214  [ 'User:Foo.css', false ],
215  [ 'User:Foo/bar.js', false ],
216  [ 'User:Foo/bar.json', false ],
217  [ 'User:Foo/bar.css', true ],
218  ];
219  }
220 
225  public function testIsUserCssConfigPage( $title, $expectedBool ) {
227  $this->assertEquals( $expectedBool, $title->isUserCssConfigPage() );
228  }
229 
230  public static function provideIsUserJsConfigPage() {
231  return [
232  [ 'Help:Foo', false ],
233  [ 'Help:Foo.css', false ],
234  [ 'User:Foo', false ],
235  [ 'User:Foo.js', false ],
236  [ 'User:Foo.json', false ],
237  [ 'User:Foo.css', false ],
238  [ 'User:Foo/bar.js', true ],
239  [ 'User:Foo/bar.json', false ],
240  [ 'User:Foo/bar.css', false ],
241  ];
242  }
243 
248  public function testIsUserJsConfigPage( $title, $expectedBool ) {
250  $this->assertEquals( $expectedBool, $title->isUserJsConfigPage() );
251  }
252 
253  public static function provideIsWikitextPage() {
254  return [
255  [ 'Help:Foo', true ],
256  [ 'Help:Foo.js', true ],
257  [ 'Help:Foo/bar.js', true ],
258  [ 'User:Foo', true ],
259  [ 'User:Foo.js', true ],
260  [ 'User:Foo/bar.js', false ],
261  [ 'User:Foo/bar.json', false ],
262  [ 'User:Foo/bar.css', false ],
263  [ 'User talk:Foo/bar.css', true ],
264  [ 'User:Foo/bar.js.xxx', true ],
265  [ 'User:Foo/bar.xxx', true ],
266  [ 'MediaWiki:Foo.js', false ],
267  [ 'User:Foo/bar.JS', true ],
268  [ 'User:Foo/bar.JSON', true ],
269  [ 'User:Foo/bar.CSS', true ],
270  [ 'MediaWiki:Foo.json', false ],
271  [ 'MediaWiki:Foo.css', false ],
272  [ 'MediaWiki:Foo.JS', true ],
273  [ 'MediaWiki:Foo.JSON', true ],
274  [ 'MediaWiki:Foo.CSS', true ],
275  [ 'MediaWiki:Foo.css.xxx', true ],
276  [ 'TEST-JS:Foo', false ],
277  [ 'TEST-JS:Foo.js', false ],
278  ];
279  }
280 
285  public function testIsWikitextPage( $title, $expectedBool ) {
287  $this->assertEquals( $expectedBool, $title->isWikitextPage() );
288  }
289 
290  public static function provideGetOtherPage() {
291  return [
292  [ 'Main Page', 'Talk:Main Page' ],
293  [ 'Talk:Main Page', 'Main Page' ],
294  [ 'Help:Main Page', 'Help talk:Main Page' ],
295  [ 'Help talk:Main Page', 'Help:Main Page' ],
296  [ 'Special:FooBar', null ],
297  [ 'Media:File.jpg', null ],
298  ];
299  }
300 
308  public function testGetOtherPage( $text, $expected ) {
309  if ( $expected === null ) {
310  $this->setExpectedException( MWException::class );
311  }
312 
313  $title = Title::newFromText( $text );
314  $this->assertEquals( $expected, $title->getOtherPage()->getPrefixedText() );
315  }
316 
320  public function testClearCaches() {
321  $linkCache = MediaWikiServices::getInstance()->getLinkCache();
322 
323  $title1 = Title::newFromText( 'Foo' );
324  $linkCache->addGoodLinkObj( 23, $title1 );
325 
327 
328  $title2 = Title::newFromText( 'Foo' );
329  $this->assertNotSame( $title1, $title2, 'title cache should be empty' );
330  $this->assertEquals( 0, $linkCache->getGoodLinkID( 'Foo' ), 'link cache should be empty' );
331  }
332 
333  public function provideGetLinkURL() {
334  yield 'Simple' => [
335  '/wiki/Goats',
336  NS_MAIN,
337  'Goats'
338  ];
339 
340  yield 'Fragment' => [
341  '/wiki/Goats#Goatificatiön',
342  NS_MAIN,
343  'Goats',
344  'Goatificatiön'
345  ];
346 
347  yield 'Unknown interwiki with fragment' => [
348  'https://xx.wiki.test/wiki/xyzzy:Goats#Goatificatiön',
349  NS_MAIN,
350  'Goats',
351  'Goatificatiön',
352  'xyzzy'
353  ];
354 
355  yield 'Interwiki with fragment' => [
356  'https://acme.test/Goats#Goatificati.C3.B6n',
357  NS_MAIN,
358  'Goats',
359  'Goatificatiön',
360  'acme'
361  ];
362 
363  yield 'Interwiki with query' => [
364  'https://acme.test/Goats?a=1&b=blank+blank#Goatificati.C3.B6n',
365  NS_MAIN,
366  'Goats',
367  'Goatificatiön',
368  'acme',
369  [
370  'a' => 1,
371  'b' => 'blank blank'
372  ]
373  ];
374 
375  yield 'Local interwiki with fragment' => [
376  'https://yy.wiki.test/wiki/Goats#Goatificatiön',
377  NS_MAIN,
378  'Goats',
379  'Goatificatiön',
380  'yy'
381  ];
382  }
383 
392  public function testGetLinkURL(
393  $expected,
394  $ns,
395  $title,
396  $fragment = '',
397  $interwiki = '',
398  $query = '',
399  $query2 = false,
400  $proto = false
401  ) {
402  $this->setMwGlobals( [
403  'wgServer' => 'https://xx.wiki.test',
404  'wgArticlePath' => '/wiki/$1',
405  'wgExternalInterwikiFragmentMode' => 'legacy',
406  'wgFragmentMode' => [ 'html5', 'legacy' ]
407  ] );
408 
409  $interwikiLookup = $this->getMock( InterwikiLookup::class );
410 
411  $interwikiLookup->method( 'fetch' )
412  ->willReturnCallback( function ( $interwiki ) {
413  switch ( $interwiki ) {
414  case '':
415  return null;
416  case 'acme':
417  return new Interwiki(
418  'acme',
419  'https://acme.test/$1'
420  );
421  case 'yy':
422  return new Interwiki(
423  'yy',
424  'https://yy.wiki.test/wiki/$1',
425  '/w/api.php',
426  'yywiki',
427  true
428  );
429  default:
430  return false;
431  }
432  } );
433 
434  $this->setService( 'InterwikiLookup', $interwikiLookup );
435 
436  $title = Title::makeTitle( $ns, $title, $fragment, $interwiki );
437  $this->assertSame( $expected, $title->getLinkURL( $query, $query2, $proto ) );
438  }
439 
440  function tearDown() {
442  parent::tearDown();
443  }
444 }
TitleMethodsTest\testHasSubjectNamespace
testHasSubjectNamespace( $title, $ns, $expectedBool)
provideHasSubjectNamespace Title::hasSubjectNamespace
Definition: TitleMethodsTest.php:84
TitleMethodsTest\testClearCaches
testClearCaches()
Title::clearCaches.
Definition: TitleMethodsTest.php:320
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
TitleMethodsTest\provideGetOtherPage
static provideGetOtherPage()
Definition: TitleMethodsTest.php:290
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
MediaWikiTestCase\mergeMwGlobalArrayValue
mergeMwGlobalArrayValue( $name, $values)
Merges the given values into a MW global array variable.
Definition: MediaWikiTestCase.php:904
TitleMethodsTest\provideIsUserCssConfigPage
static provideIsUserCssConfigPage()
Definition: TitleMethodsTest.php:207
TitleMethodsTest\testHasContentModel
testHasContentModel( $title, $expectedModelId)
dataGetContentModel Title::hasContentModel
Definition: TitleMethodsTest.php:127
Title\clearCaches
static clearCaches()
Text form (spaces not underscores) of the main part.
Definition: Title.php:3095
TitleMethodsTest\provideIsWikitextPage
static provideIsWikitextPage()
Definition: TitleMethodsTest.php:253
CONTENT_MODEL_CSS
const CONTENT_MODEL_CSS
Definition: Defines.php:237
NS_TEMPLATE
const NS_TEMPLATE
Definition: Defines.php:74
TitleMethodsTest\provideIsUserConfigPage
static provideIsUserConfigPage()
Definition: TitleMethodsTest.php:170
TitleMethodsTest\provideIsUserJsConfigPage
static provideIsUserJsConfigPage()
Definition: TitleMethodsTest.php:230
TitleMethodsTest\testInNamespaces
testInNamespaces()
Title::inNamespaces.
Definition: TitleMethodsTest.php:59
CONTENT_MODEL_WIKITEXT
const CONTENT_MODEL_WIKITEXT
Definition: Defines.php:235
TitleMethodsTest
ContentHandler Database.
Definition: TitleMethodsTest.php:13
TitleMethodsTest\testIsWikitextPage
testIsWikitextPage( $title, $expectedBool)
provideIsWikitextPage Title::isWikitextPage
Definition: TitleMethodsTest.php:285
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
TitleMethodsTest\provideIsSiteConfigPage
static provideIsSiteConfigPage()
Definition: TitleMethodsTest.php:132
NS_MAIN
const NS_MAIN
Definition: Defines.php:64
$query
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1588
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:925
NS_PROJECT
const NS_PROJECT
Definition: Defines.php:68
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Sets a global, maintaining a stashed version of the previous global to be restored in tearDown.
Definition: MediaWikiTestCase.php:709
MediaWiki\Interwiki\InterwikiLookup
Service interface for looking up Interwiki records.
Definition: InterwikiLookup.php:31
TitleMethodsTest\testGetOtherPage
testGetOtherPage( $text, $expected)
provideGetOtherpage Title::getOtherPage
Definition: TitleMethodsTest.php:308
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:576
TitleMethodsTest\testGetContentModel
testGetContentModel( $title, $expectedModelId)
dataGetContentModel Title::getContentModel
Definition: TitleMethodsTest.php:118
null
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
Definition: hooks.txt:780
TitleMethodsTest\testIsUserJsConfigPage
testIsUserJsConfigPage( $title, $expectedBool)
provideIsUserJsConfigPage Title::isUserJsConfigPage
Definition: TitleMethodsTest.php:248
TitleMethodsTest\tearDown
tearDown()
Definition: TitleMethodsTest.php:440
NS_USER_TALK
const NS_USER_TALK
Definition: Defines.php:67
TitleMethodsTest\testGetLinkURL
testGetLinkURL( $expected, $ns, $title, $fragment='', $interwiki='', $query='', $query2=false, $proto=false)
provideGetLinkURL
Definition: TitleMethodsTest.php:392
TitleMethodsTest\provideHasSubjectNamespace
static provideHasSubjectNamespace()
Definition: TitleMethodsTest.php:67
TitleMethodsTest\provideInNamespace
static provideInNamespace()
Definition: TitleMethodsTest.php:34
MediaWikiLangTestCase
Base class that store and restore the Language objects.
Definition: MediaWikiLangTestCase.php:8
TitleMethodsTest\dataGetContentModel
dataGetContentModel()
Definition: TitleMethodsTest.php:89
TitleMethodsTest\provideGetLinkURL
provideGetLinkURL()
Definition: TitleMethodsTest.php:333
TitleMethodsTest\setUp
setUp()
Definition: TitleMethodsTest.php:15
TitleMethodsTest\testIsUserCssConfigPage
testIsUserCssConfigPage( $title, $expectedBool)
provideIsUserCssConfigPage Title::isUserCssConfigPage
Definition: TitleMethodsTest.php:225
Interwiki
Value object for representing interwiki records.
Definition: Interwiki.php:27
NS_USER
const NS_USER
Definition: Defines.php:66
TitleMethodsTest\testSiteConfigPage
testSiteConfigPage( $title, $expectedBool)
provideIsSiteConfigPage Title::isSiteConfigPage
Definition: TitleMethodsTest.php:165
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:1985
NS_TALK
const NS_TALK
Definition: Defines.php:65
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
CONTENT_MODEL_JAVASCRIPT
const CONTENT_MODEL_JAVASCRIPT
Definition: Defines.php:236
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
TitleMethodsTest\testInNamespace
testInNamespace( $title, $ns, $expectedBool)
provideInNamespace Title::inNamespace
Definition: TitleMethodsTest.php:51
MediaWikiTestCase\setService
setService( $name, $object)
Sets a service, maintaining a stashed version of the previous service to be restored in tearDown.
Definition: MediaWikiTestCase.php:649
TitleMethodsTest\testIsUserConfigPage
testIsUserConfigPage( $title, $expectedBool)
provideIsUserConfigPage Title::isUserConfigPage
Definition: TitleMethodsTest.php:202