Set wgMetaNamespace on TitleTest.php
[lhc/web/wiklou.git] / tests / phpunit / includes / TitleTest.php
1 <?php
2
3 /**
4 * @group Title
5 */
6 class TitleTest extends MediaWikiTestCase {
7 protected function setUp() {
8 parent::setUp();
9
10 $this->setMwGlobals( array(
11 'wgLanguageCode' => 'en',
12 'wgContLang' => Language::factory( 'en' ),
13 // User language
14 'wgLang' => Language::factory( 'en' ),
15 'wgAllowUserJs' => false,
16 'wgDefaultLanguageVariant' => false,
17 'wgMetaNamespace' => 'Project',
18 ) );
19 }
20
21 /**
22 * @covers Title::legalChars
23 */
24 public function testLegalChars() {
25 $titlechars = Title::legalChars();
26
27 foreach ( range( 1, 255 ) as $num ) {
28 $chr = chr( $num );
29 if ( strpos( "#[]{}<>|", $chr ) !== false || preg_match( "/[\\x00-\\x1f\\x7f]/", $chr ) ) {
30 $this->assertFalse(
31 (bool)preg_match( "/[$titlechars]/", $chr ),
32 "chr($num) = $chr is not a valid titlechar"
33 );
34 } else {
35 $this->assertTrue(
36 (bool)preg_match( "/[$titlechars]/", $chr ),
37 "chr($num) = $chr is a valid titlechar"
38 );
39 }
40 }
41 }
42
43 public static function provideValidSecureAndSplit() {
44 return array(
45 array( 'Sandbox' ),
46 array( 'A "B"' ),
47 array( 'A \'B\'' ),
48 array( '.com' ),
49 array( '~' ),
50 array( '#' ),
51 array( '"' ),
52 array( '\'' ),
53 array( 'Talk:Sandbox' ),
54 array( 'Talk:Foo:Sandbox' ),
55 array( 'File:Example.svg' ),
56 array( 'File_talk:Example.svg' ),
57 array( 'Foo/.../Sandbox' ),
58 array( 'Sandbox/...' ),
59 array( 'A~~' ),
60 array( ':A' ),
61 // Length is 256 total, but only title part matters
62 array( 'Category:' . str_repeat( 'x', 248 ) ),
63 array( str_repeat( 'x', 252 ) ),
64 // interwiki prefix
65 array( 'localtestiw: #anchor' ),
66 array( 'localtestiw:' ),
67 array( 'localtestiw:foo' ),
68 array( 'localtestiw: foo # anchor' ),
69 array( 'localtestiw: Talk: Sandbox # anchor' ),
70 array( 'remotetestiw:' ),
71 array( 'remotetestiw: Talk: # anchor' ),
72 array( 'remotetestiw: #bar' ),
73 array( 'remotetestiw: Talk:' ),
74 array( 'remotetestiw: Talk: Foo' ),
75 array( 'localtestiw:remotetestiw:' ),
76 array( 'localtestiw:remotetestiw:foo' )
77 );
78 }
79
80 public static function provideInvalidSecureAndSplit() {
81 return array(
82 array( '' ),
83 array( ':' ),
84 array( '__ __' ),
85 array( ' __ ' ),
86 // Bad characters forbidden regardless of wgLegalTitleChars
87 array( 'A [ B' ),
88 array( 'A ] B' ),
89 array( 'A { B' ),
90 array( 'A } B' ),
91 array( 'A < B' ),
92 array( 'A > B' ),
93 array( 'A | B' ),
94 // URL encoding
95 array( 'A%20B' ),
96 array( 'A%23B' ),
97 array( 'A%2523B' ),
98 // XML/HTML character entity references
99 // Note: Commented out because they are not marked invalid by the PHP test as
100 // Title::newFromText runs Sanitizer::decodeCharReferencesAndNormalize first.
101 //'A &eacute; B',
102 //'A &#233; B',
103 //'A &#x00E9; B',
104 // Subject of NS_TALK does not roundtrip to NS_MAIN
105 array( 'Talk:File:Example.svg' ),
106 // Directory navigation
107 array( '.' ),
108 array( '..' ),
109 array( './Sandbox' ),
110 array( '../Sandbox' ),
111 array( 'Foo/./Sandbox' ),
112 array( 'Foo/../Sandbox' ),
113 array( 'Sandbox/.' ),
114 array( 'Sandbox/..' ),
115 // Tilde
116 array( 'A ~~~ Name' ),
117 array( 'A ~~~~ Signature' ),
118 array( 'A ~~~~~ Timestamp' ),
119 array( str_repeat( 'x', 256 ) ),
120 // Namespace prefix without actual title
121 array( 'Talk:' ),
122 array( 'Talk:#' ),
123 array( 'Category: ' ),
124 array( 'Category: #bar' ),
125 // interwiki prefix
126 array( 'localtestiw: Talk: # anchor' ),
127 array( 'localtestiw: Talk:' )
128 );
129 }
130
131 private function secureAndSplitGlobals() {
132 $this->setMwGlobals( array(
133 'wgLocalInterwikis' => array( 'localtestiw' ),
134 'wgHooks' => array(
135 'InterwikiLoadPrefix' => array(
136 function ( $prefix, &$data ) {
137 if ( $prefix === 'localtestiw' ) {
138 $data = array( 'iw_url' => 'localtestiw' );
139 } elseif ( $prefix === 'remotetestiw' ) {
140 $data = array( 'iw_url' => 'remotetestiw' );
141 }
142 return false;
143 }
144 )
145 )
146 ));
147 }
148
149 /**
150 * See also mediawiki.Title.test.js
151 * @covers Title::secureAndSplit
152 * @dataProvider provideValidSecureAndSplit
153 * @note This mainly tests MediaWikiTitleCodec::parseTitle().
154 */
155 public function testSecureAndSplitValid( $text ) {
156 $this->secureAndSplitGlobals();
157 $this->assertInstanceOf( 'Title', Title::newFromText( $text ), "Valid: $text" );
158 }
159
160 /**
161 * See also mediawiki.Title.test.js
162 * @covers Title::secureAndSplit
163 * @dataProvider provideInvalidSecureAndSplit
164 * @note This mainly tests MediaWikiTitleCodec::parseTitle().
165 */
166 public function testSecureAndSplitInvalid( $text ) {
167 $this->secureAndSplitGlobals();
168 $this->assertNull( Title::newFromText( $text ), "Invalid: $text" );
169 }
170
171 public static function provideConvertByteClassToUnicodeClass() {
172 return array(
173 array(
174 ' %!"$&\'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF+',
175 ' %!"$&\'()*,\\-./0-9:;=?@A-Z\\\\\\^_`a-z~+\\u0080-\\uFFFF',
176 ),
177 array(
178 'QWERTYf-\\xFF+',
179 'QWERTYf-\\x7F+\\u0080-\\uFFFF',
180 ),
181 array(
182 'QWERTY\\x66-\\xFD+',
183 'QWERTYf-\\x7F+\\u0080-\\uFFFF',
184 ),
185 array(
186 'QWERTYf-y+',
187 'QWERTYf-y+',
188 ),
189 array(
190 'QWERTYf-\\x80+',
191 'QWERTYf-\\x7F+\\u0080-\\uFFFF',
192 ),
193 array(
194 'QWERTY\\x66-\\x80+\\x23',
195 'QWERTYf-\\x7F+#\\u0080-\\uFFFF',
196 ),
197 array(
198 'QWERTY\\x66-\\x80+\\xD3',
199 'QWERTYf-\\x7F+\\u0080-\\uFFFF',
200 ),
201 array(
202 '\\\\\\x99',
203 '\\\\\\u0080-\\uFFFF',
204 ),
205 array(
206 '-\\x99',
207 '\\-\\u0080-\\uFFFF',
208 ),
209 array(
210 'QWERTY\\-\\x99',
211 'QWERTY\\-\\u0080-\\uFFFF',
212 ),
213 array(
214 '\\\\x99',
215 '\\\\x99',
216 ),
217 array(
218 'A-\\x9F',
219 'A-\\x7F\\u0080-\\uFFFF',
220 ),
221 array(
222 '\\x66-\\x77QWERTY\\x88-\\x91FXZ',
223 'f-wQWERTYFXZ\\u0080-\\uFFFF',
224 ),
225 array(
226 '\\x66-\\x99QWERTY\\xAA-\\xEEFXZ',
227 'f-\\x7FQWERTYFXZ\\u0080-\\uFFFF',
228 ),
229 );
230 }
231
232 /**
233 * @dataProvider provideConvertByteClassToUnicodeClass
234 * @covers Title::convertByteClassToUnicodeClass
235 */
236 public function testConvertByteClassToUnicodeClass( $byteClass, $unicodeClass ) {
237 $this->assertEquals( $unicodeClass, Title::convertByteClassToUnicodeClass( $byteClass ) );
238 }
239
240 /**
241 * @dataProvider provideSpecialNamesWithAndWithoutParameter
242 * @covers Title::fixSpecialName
243 */
244 public function testFixSpecialNameRetainsParameter( $text, $expectedParam ) {
245 $title = Title::newFromText( $text );
246 $fixed = $title->fixSpecialName();
247 $stuff = explode( '/', $fixed->getDBkey(), 2 );
248 if ( count( $stuff ) == 2 ) {
249 $par = $stuff[1];
250 } else {
251 $par = null;
252 }
253 $this->assertEquals(
254 $expectedParam,
255 $par,
256 "Bug 31100 regression check: Title->fixSpecialName() should preserve parameter"
257 );
258 }
259
260 public static function provideSpecialNamesWithAndWithoutParameter() {
261 return array(
262 array( 'Special:Version', null ),
263 array( 'Special:Version/', '' ),
264 array( 'Special:Version/param', 'param' ),
265 );
266 }
267
268 /**
269 * Auth-less test of Title::isValidMoveOperation
270 *
271 * @group Database
272 * @param string $source
273 * @param string $target
274 * @param array|string|bool $expected Required error
275 * @dataProvider provideTestIsValidMoveOperation
276 * @covers Title::isValidMoveOperation
277 * @covers Title::validateFileMoveOperation
278 */
279 public function testIsValidMoveOperation( $source, $target, $expected ) {
280 $this->setMwGlobals( 'wgContentHandlerUseDB', false );
281 $title = Title::newFromText( $source );
282 $nt = Title::newFromText( $target );
283 $errors = $title->isValidMoveOperation( $nt, false );
284 if ( $expected === true ) {
285 $this->assertTrue( $errors );
286 } else {
287 $errors = $this->flattenErrorsArray( $errors );
288 foreach ( (array)$expected as $error ) {
289 $this->assertContains( $error, $errors );
290 }
291 }
292 }
293
294 public static function provideTestIsValidMoveOperation() {
295 return array(
296 // for Title::isValidMoveOperation
297 array( 'Some page', '', 'badtitletext' ),
298 array( 'Test', 'Test', 'selfmove' ),
299 array( 'Special:FooBar', 'Test', 'immobile-source-namespace' ),
300 array( 'Test', 'Special:FooBar', 'immobile-target-namespace' ),
301 array( 'MediaWiki:Common.js', 'Help:Some wikitext page', 'bad-target-model' ),
302 array( 'Page', 'File:Test.jpg', 'nonfile-cannot-move-to-file' ),
303 // for Title::validateFileMoveOperation
304 array( 'File:Test.jpg', 'Page', 'imagenocrossnamespace' ),
305 );
306 }
307
308 /**
309 * Auth-less test of Title::userCan
310 *
311 * @param array $whitelistRegexp
312 * @param string $source
313 * @param string $action
314 * @param array|string|bool $expected Required error
315 *
316 * @covers Title::checkReadPermissions
317 * @dataProvider dataWgWhitelistReadRegexp
318 */
319 public function testWgWhitelistReadRegexp( $whitelistRegexp, $source, $action, $expected ) {
320 // $wgWhitelistReadRegexp must be an array. Since the provided test cases
321 // usually have only one regex, it is more concise to write the lonely regex
322 // as a string. Thus we cast to an array() to honor $wgWhitelistReadRegexp
323 // type requisite.
324 if ( is_string( $whitelistRegexp ) ) {
325 $whitelistRegexp = array( $whitelistRegexp );
326 }
327
328 $title = Title::newFromDBkey( $source );
329
330 global $wgGroupPermissions;
331 $oldPermissions = $wgGroupPermissions;
332 // Disallow all so we can ensure our regex works
333 $wgGroupPermissions = array();
334 $wgGroupPermissions['*']['read'] = false;
335
336 global $wgWhitelistRead;
337 $oldWhitelist = $wgWhitelistRead;
338 // Undo any LocalSettings explicite whitelists so they won't cause a
339 // failing test to succeed. Set it to some random non sense just
340 // to make sure we properly test Title::checkReadPermissions()
341 $wgWhitelistRead = array( 'some random non sense title' );
342
343 global $wgWhitelistReadRegexp;
344 $oldWhitelistRegexp = $wgWhitelistReadRegexp;
345 $wgWhitelistReadRegexp = $whitelistRegexp;
346
347 // Just use $wgUser which in test is a user object for '127.0.0.1'
348 global $wgUser;
349 // Invalidate user rights cache to take in account $wgGroupPermissions
350 // change above.
351 $wgUser->clearInstanceCache();
352 $errors = $title->userCan( $action, $wgUser );
353
354 // Restore globals
355 $wgGroupPermissions = $oldPermissions;
356 $wgWhitelistRead = $oldWhitelist;
357 $wgWhitelistReadRegexp = $oldWhitelistRegexp;
358
359 if ( is_bool( $expected ) ) {
360 # Forge the assertion message depending on the assertion expectation
361 $allowableness = $expected
362 ? " should be allowed"
363 : " should NOT be allowed";
364 $this->assertEquals(
365 $expected,
366 $errors,
367 "User action '$action' on [[$source]] $allowableness."
368 );
369 } else {
370 $errors = $this->flattenErrorsArray( $errors );
371 foreach ( (array)$expected as $error ) {
372 $this->assertContains( $error, $errors );
373 }
374 }
375 }
376
377 /**
378 * Provides test parameter values for testWgWhitelistReadRegexp()
379 */
380 public function dataWgWhitelistReadRegexp() {
381 $ALLOWED = true;
382 $DISALLOWED = false;
383
384 return array(
385 // Everything, if this doesn't work, we're really in trouble
386 array( '/.*/', 'Main_Page', 'read', $ALLOWED ),
387 array( '/.*/', 'Main_Page', 'edit', $DISALLOWED ),
388
389 // We validate against the title name, not the db key
390 array( '/^Main_Page$/', 'Main_Page', 'read', $DISALLOWED ),
391 // Main page
392 array( '/^Main/', 'Main_Page', 'read', $ALLOWED ),
393 array( '/^Main.*/', 'Main_Page', 'read', $ALLOWED ),
394 // With spaces
395 array( '/Mic\sCheck/', 'Mic Check', 'read', $ALLOWED ),
396 // Unicode multibyte
397 // ...without unicode modifier
398 array( '/Unicode Test . Yes/', 'Unicode Test Ñ Yes', 'read', $DISALLOWED ),
399 // ...with unicode modifier
400 array( '/Unicode Test . Yes/u', 'Unicode Test Ñ Yes', 'read', $ALLOWED ),
401 // Case insensitive
402 array( '/MiC ChEcK/', 'mic check', 'read', $DISALLOWED ),
403 array( '/MiC ChEcK/i', 'mic check', 'read', $ALLOWED ),
404
405 // From DefaultSettings.php:
406 array( "@^UsEr.*@i", 'User is banned', 'read', $ALLOWED ),
407 array( "@^UsEr.*@i", 'User:John Doe', 'read', $ALLOWED ),
408
409 // With namespaces:
410 array( '/^Special:NewPages$/', 'Special:NewPages', 'read', $ALLOWED ),
411 array( null, 'Special:Newpages', 'read', $DISALLOWED ),
412
413 );
414 }
415
416 public function flattenErrorsArray( $errors ) {
417 $result = array();
418 foreach ( $errors as $error ) {
419 $result[] = $error[0];
420 }
421
422 return $result;
423 }
424
425 /**
426 * @dataProvider provideGetPageViewLanguage
427 * @covers Title::getPageViewLanguage
428 */
429 public function testGetPageViewLanguage( $expected, $titleText, $contLang,
430 $lang, $variant, $msg = ''
431 ) {
432 // Setup environnement for this test
433 $this->setMwGlobals( array(
434 'wgLanguageCode' => $contLang,
435 'wgContLang' => Language::factory( $contLang ),
436 'wgLang' => Language::factory( $lang ),
437 'wgDefaultLanguageVariant' => $variant,
438 'wgAllowUserJs' => true,
439 ) );
440
441 $title = Title::newFromText( $titleText );
442 $this->assertInstanceOf( 'Title', $title,
443 "Test must be passed a valid title text, you gave '$titleText'"
444 );
445 $this->assertEquals( $expected,
446 $title->getPageViewLanguage()->getCode(),
447 $msg
448 );
449 }
450
451 public static function provideGetPageViewLanguage() {
452 # Format:
453 # - expected
454 # - Title name
455 # - wgContLang (expected in most case)
456 # - wgLang (on some specific pages)
457 # - wgDefaultLanguageVariant
458 # - Optional message
459 return array(
460 array( 'fr', 'Help:I_need_somebody', 'fr', 'fr', false ),
461 array( 'es', 'Help:I_need_somebody', 'es', 'zh-tw', false ),
462 array( 'zh', 'Help:I_need_somebody', 'zh', 'zh-tw', false ),
463
464 array( 'es', 'Help:I_need_somebody', 'es', 'zh-tw', 'zh-cn' ),
465 array( 'es', 'MediaWiki:About', 'es', 'zh-tw', 'zh-cn' ),
466 array( 'es', 'MediaWiki:About/', 'es', 'zh-tw', 'zh-cn' ),
467 array( 'de', 'MediaWiki:About/de', 'es', 'zh-tw', 'zh-cn' ),
468 array( 'en', 'MediaWiki:Common.js', 'es', 'zh-tw', 'zh-cn' ),
469 array( 'en', 'MediaWiki:Common.css', 'es', 'zh-tw', 'zh-cn' ),
470 array( 'en', 'User:JohnDoe/Common.js', 'es', 'zh-tw', 'zh-cn' ),
471 array( 'en', 'User:JohnDoe/Monobook.css', 'es', 'zh-tw', 'zh-cn' ),
472
473 array( 'zh-cn', 'Help:I_need_somebody', 'zh', 'zh-tw', 'zh-cn' ),
474 array( 'zh', 'MediaWiki:About', 'zh', 'zh-tw', 'zh-cn' ),
475 array( 'zh', 'MediaWiki:About/', 'zh', 'zh-tw', 'zh-cn' ),
476 array( 'de', 'MediaWiki:About/de', 'zh', 'zh-tw', 'zh-cn' ),
477 array( 'zh-cn', 'MediaWiki:About/zh-cn', 'zh', 'zh-tw', 'zh-cn' ),
478 array( 'zh-tw', 'MediaWiki:About/zh-tw', 'zh', 'zh-tw', 'zh-cn' ),
479 array( 'en', 'MediaWiki:Common.js', 'zh', 'zh-tw', 'zh-cn' ),
480 array( 'en', 'MediaWiki:Common.css', 'zh', 'zh-tw', 'zh-cn' ),
481 array( 'en', 'User:JohnDoe/Common.js', 'zh', 'zh-tw', 'zh-cn' ),
482 array( 'en', 'User:JohnDoe/Monobook.css', 'zh', 'zh-tw', 'zh-cn' ),
483
484 array( 'zh-tw', 'Special:NewPages', 'es', 'zh-tw', 'zh-cn' ),
485 array( 'zh-tw', 'Special:NewPages', 'zh', 'zh-tw', 'zh-cn' ),
486
487 );
488 }
489
490 /**
491 * @dataProvider provideBaseTitleCases
492 * @covers Title::getBaseText
493 */
494 public function testGetBaseText( $title, $expected, $msg = '' ) {
495 $title = Title::newFromText( $title );
496 $this->assertEquals( $expected,
497 $title->getBaseText(),
498 $msg
499 );
500 }
501
502 public static function provideBaseTitleCases() {
503 return array(
504 # Title, expected base, optional message
505 array( 'User:John_Doe/subOne/subTwo', 'John Doe/subOne' ),
506 array( 'User:Foo/Bar/Baz', 'Foo/Bar' ),
507 );
508 }
509
510 /**
511 * @dataProvider provideRootTitleCases
512 * @covers Title::getRootText
513 */
514 public function testGetRootText( $title, $expected, $msg = '' ) {
515 $title = Title::newFromText( $title );
516 $this->assertEquals( $expected,
517 $title->getRootText(),
518 $msg
519 );
520 }
521
522 public static function provideRootTitleCases() {
523 return array(
524 # Title, expected base, optional message
525 array( 'User:John_Doe/subOne/subTwo', 'John Doe' ),
526 array( 'User:Foo/Bar/Baz', 'Foo' ),
527 );
528 }
529
530 /**
531 * @todo Handle $wgNamespacesWithSubpages cases
532 * @dataProvider provideSubpageTitleCases
533 * @covers Title::getSubpageText
534 */
535 public function testGetSubpageText( $title, $expected, $msg = '' ) {
536 $title = Title::newFromText( $title );
537 $this->assertEquals( $expected,
538 $title->getSubpageText(),
539 $msg
540 );
541 }
542
543 public static function provideSubpageTitleCases() {
544 return array(
545 # Title, expected base, optional message
546 array( 'User:John_Doe/subOne/subTwo', 'subTwo' ),
547 array( 'User:John_Doe/subOne', 'subOne' ),
548 );
549 }
550
551 public static function provideNewFromTitleValue() {
552 return array(
553 array( new TitleValue( NS_MAIN, 'Foo' ) ),
554 array( new TitleValue( NS_MAIN, 'Foo', 'bar' ) ),
555 array( new TitleValue( NS_USER, 'Hansi_Maier' ) ),
556 );
557 }
558
559 /**
560 * @dataProvider provideNewFromTitleValue
561 */
562 public function testNewFromTitleValue( TitleValue $value ) {
563 $title = Title::newFromTitleValue( $value );
564
565 $dbkey = str_replace( ' ', '_', $value->getText() );
566 $this->assertEquals( $dbkey, $title->getDBkey() );
567 $this->assertEquals( $value->getNamespace(), $title->getNamespace() );
568 $this->assertEquals( $value->getFragment(), $title->getFragment() );
569 }
570
571 public static function provideGetTitleValue() {
572 return array(
573 array( 'Foo' ),
574 array( 'Foo#bar' ),
575 array( 'User:Hansi_Maier' ),
576 );
577 }
578
579 /**
580 * @dataProvider provideGetTitleValue
581 */
582 public function testGetTitleValue( $text ) {
583 $title = Title::newFromText( $text );
584 $value = $title->getTitleValue();
585
586 $dbkey = str_replace( ' ', '_', $value->getText() );
587 $this->assertEquals( $title->getDBkey(), $dbkey );
588 $this->assertEquals( $title->getNamespace(), $value->getNamespace() );
589 $this->assertEquals( $title->getFragment(), $value->getFragment() );
590 }
591
592 public static function provideGetFragment() {
593 return array(
594 array( 'Foo', '' ),
595 array( 'Foo#bar', 'bar' ),
596 array( 'Foo#bär', 'bär' ),
597
598 // Inner whitespace is normalized
599 array( 'Foo#bar_bar', 'bar bar' ),
600 array( 'Foo#bar bar', 'bar bar' ),
601 array( 'Foo#bar bar', 'bar bar' ),
602
603 // Leading whitespace is kept, trailing whitespace is trimmed.
604 // XXX: Is this really want we want?
605 array( 'Foo#_bar_bar_', ' bar bar' ),
606 array( 'Foo# bar bar ', ' bar bar' ),
607 );
608 }
609
610 /**
611 * @dataProvider provideGetFragment
612 *
613 * @param string $full
614 * @param string $fragment
615 */
616 public function testGetFragment( $full, $fragment ) {
617 $title = Title::newFromText( $full );
618 $this->assertEquals( $fragment, $title->getFragment() );
619 }
620
621 /**
622 * @covers Title::isAlwaysKnown
623 * @dataProvider provideIsAlwaysKnown
624 * @param string $page
625 * @param bool $isKnown
626 */
627 public function testIsAlwaysKnown( $page, $isKnown ) {
628 $title = Title::newFromText( $page );
629 $this->assertEquals( $isKnown, $title->isAlwaysKnown() );
630 }
631
632 public static function provideIsAlwaysKnown() {
633 return array(
634 array( 'Some nonexistent page', false ),
635 array( 'UTPage', false ),
636 array( '#test', true ),
637 array( 'Special:BlankPage', true ),
638 array( 'Special:SomeNonexistentSpecialPage', false ),
639 array( 'MediaWiki:Parentheses', true ),
640 array( 'MediaWiki:Some nonexistent message', false ),
641 );
642 }
643
644 /**
645 * @covers Title::isAlwaysKnown
646 */
647 public function testIsAlwaysKnownOnInterwiki() {
648 $title = Title::makeTitle( NS_MAIN, 'Interwiki link', '', 'externalwiki' );
649 $this->assertTrue( $title->isAlwaysKnown() );
650 }
651 }