2 var repeat = function ( input, multiplier ) {
3 return new Array( multiplier + 1 ).join( input );
6 // See also TitleTest.php#testSecureAndSplit
18 'File_talk:Example.svg',
23 // Length is 256 total, but only title part matters
24 'Category:' + repeat( 'x', 248 ),
32 // Bad characters forbidden regardless of wgLegalTitleChars
46 // XML/HTML character entity references
47 // Note: The ones with # are commented out as those are interpreted as fragment and
48 // as such end up being valid.
52 // Subject of NS_TALK does not roundtrip to NS_MAIN
53 'Talk:File:Example.svg',
54 // Directory navigation
68 // Extension separation is a js invention, for length
69 // purposes it is part of the title
70 repeat( 'x', 252 ) + '.json',
71 // Namespace prefix without actual title
78 QUnit.module( 'mediawiki.Title', QUnit.newMwEnvironment( {
79 // mw.Title relies on these three config vars
80 // Restore them after each test run
82 wgFormattedNamespaces: {
101 // testing custom / localized namespace
104 // jscs: disable requireCamelCaseOrUpperCaseIdentifiers
128 // Testing custom namespaces and aliases
130 antarctic_waterfowl: 100
132 // jscs: enable requireCamelCaseOrUpperCaseIdentifiers
133 wgCaseSensitiveNamespaces: []
137 QUnit.test( 'constructor', cases.invalid.length, function ( assert ) {
139 for ( i = 0; i < cases.valid.length; i++ ) {
140 title = new mw.Title( cases.valid[ i ] );
142 for ( i = 0; i < cases.invalid.length; i++ ) {
143 /*jshint loopfunc:true */
144 title = cases.invalid[ i ];
145 assert.throws( function () {
146 return new mw.Title( title );
147 }, cases.invalid[ i ] );
151 QUnit.test( 'newFromText', cases.valid.length + cases.invalid.length, function ( assert ) {
153 for ( i = 0; i < cases.valid.length; i++ ) {
155 $.type( mw.Title.newFromText( cases.valid[ i ] ) ),
160 for ( i = 0; i < cases.invalid.length; i++ ) {
162 $.type( mw.Title.newFromText( cases.invalid[ i ] ) ),
169 QUnit.test( 'makeTitle', 6, function ( assert ) {
170 var cases, i, title, expected,
176 [ NS_TEMPLATE, 'Foo', 'Template:Foo' ],
177 [ NS_TEMPLATE, 'Category:Foo', 'Template:Category:Foo' ],
178 [ NS_TEMPLATE, 'Template:Foo', 'Template:Template:Foo' ],
179 [ NS_TALK, 'Help:Foo', null ],
180 [ NS_TEMPLATE, '<', null ],
181 [ NS_MAIN, 'Help:Foo', 'Help:Foo' ]
184 for ( i = 0; i < cases.length; i++ ) {
185 title = mw.Title.makeTitle( cases[ i ][ 0 ], cases[ i ][ 1 ] );
186 expected = cases[ i ][ 2 ];
187 if ( expected === null ) {
188 assert.strictEqual( title, expected );
190 assert.strictEqual( title.getPrefixedText(), expected );
195 QUnit.test( 'Basic parsing', 21, function ( assert ) {
197 title = new mw.Title( 'File:Foo_bar.JPG' );
199 assert.equal( title.getNamespaceId(), 6 );
200 assert.equal( title.getNamespacePrefix(), 'File:' );
201 assert.equal( title.getName(), 'Foo_bar' );
202 assert.equal( title.getNameText(), 'Foo bar' );
203 assert.equal( title.getExtension(), 'JPG' );
204 assert.equal( title.getDotExtension(), '.JPG' );
205 assert.equal( title.getMain(), 'Foo_bar.JPG' );
206 assert.equal( title.getMainText(), 'Foo bar.JPG' );
207 assert.equal( title.getPrefixedDb(), 'File:Foo_bar.JPG' );
208 assert.equal( title.getPrefixedText(), 'File:Foo bar.JPG' );
210 title = new mw.Title( 'Foo#bar' );
211 assert.equal( title.getPrefixedText(), 'Foo' );
212 assert.equal( title.getFragment(), 'bar' );
214 title = new mw.Title( '.foo' );
215 assert.equal( title.getPrefixedText(), '.foo' );
216 assert.equal( title.getName(), '' );
217 assert.equal( title.getNameText(), '' );
218 assert.equal( title.getExtension(), 'foo' );
219 assert.equal( title.getDotExtension(), '.foo' );
220 assert.equal( title.getMain(), '.foo' );
221 assert.equal( title.getMainText(), '.foo' );
222 assert.equal( title.getPrefixedDb(), '.foo' );
223 assert.equal( title.getPrefixedText(), '.foo' );
226 QUnit.test( 'Transformation', 12, function ( assert ) {
229 title = new mw.Title( 'File:quux pif.jpg' );
230 assert.equal( title.getNameText(), 'Quux pif', 'First character of title' );
232 title = new mw.Title( 'File:Glarg_foo_glang.jpg' );
233 assert.equal( title.getNameText(), 'Glarg foo glang', 'Underscores' );
235 title = new mw.Title( 'User:ABC.DEF' );
236 assert.equal( title.toText(), 'User:ABC.DEF', 'Round trip text' );
237 assert.equal( title.getNamespaceId(), 2, 'Parse canonical namespace prefix' );
239 title = new mw.Title( 'Image:quux pix.jpg' );
240 assert.equal( title.getNamespacePrefix(), 'File:', 'Transform alias to canonical namespace' );
242 title = new mw.Title( 'uSEr:hAshAr' );
243 assert.equal( title.toText(), 'User:HAshAr' );
244 assert.equal( title.getNamespaceId(), 2, 'Case-insensitive namespace prefix' );
246 title = new mw.Title( 'Foo \u00A0\u1680\u180E\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u2028\u2029\u202F\u205F\u3000 bar' );
247 assert.equal( title.getMain(), 'Foo_bar', 'Merge multiple types of whitespace/underscores into a single underscore' );
249 title = new mw.Title( 'Foo\u200E\u200F\u202A\u202B\u202C\u202D\u202Ebar' );
250 assert.equal( title.getMain(), 'Foobar', 'Strip Unicode bidi override characters' );
252 // Regression test: Previously it would only detect an extension if there is no space after it
253 title = new mw.Title( 'Example.js ' );
254 assert.equal( title.getExtension(), 'js', 'Space after an extension is stripped' );
256 title = new mw.Title( 'Example#foo' );
257 assert.equal( title.getFragment(), 'foo', 'Fragment' );
259 title = new mw.Title( 'Example#_foo_bar baz_' );
260 assert.equal( title.getFragment(), ' foo bar baz', 'Fragment' );
263 QUnit.test( 'Namespace detection and conversion', 10, function ( assert ) {
266 title = new mw.Title( 'File:User:Example' );
267 assert.equal( title.getNamespaceId(), 6, 'Titles can contain namespace prefixes, which are otherwise ignored' );
269 title = new mw.Title( 'Example', 6 );
270 assert.equal( title.getNamespaceId(), 6, 'Default namespace passed is used' );
272 title = new mw.Title( 'User:Example', 6 );
273 assert.equal( title.getNamespaceId(), 2, 'Included namespace prefix overrides the given default' );
275 title = new mw.Title( ':Example', 6 );
276 assert.equal( title.getNamespaceId(), 0, 'Colon forces main namespace' );
278 title = new mw.Title( 'something.PDF', 6 );
279 assert.equal( title.toString(), 'File:Something.PDF' );
281 title = new mw.Title( 'NeilK', 3 );
282 assert.equal( title.toString(), 'User_talk:NeilK' );
283 assert.equal( title.toText(), 'User talk:NeilK' );
285 title = new mw.Title( 'Frobisher', 100 );
286 assert.equal( title.toString(), 'Penguins:Frobisher' );
288 title = new mw.Title( 'antarctic_waterfowl:flightless_yet_cute.jpg' );
289 assert.equal( title.toString(), 'Penguins:Flightless_yet_cute.jpg' );
291 title = new mw.Title( 'Penguins:flightless_yet_cute.jpg' );
292 assert.equal( title.toString(), 'Penguins:Flightless_yet_cute.jpg' );
295 QUnit.test( 'Throw error on invalid title', 1, function ( assert ) {
296 assert.throws( function () {
297 return new mw.Title( '' );
298 }, 'Throw error on empty string' );
301 QUnit.test( 'Case-sensivity', 5, function ( assert ) {
305 mw.config.set( 'wgCaseSensitiveNamespaces', [] );
307 title = new mw.Title( 'article' );
308 assert.equal( title.toString(), 'Article', 'Default config: No sensitive namespaces by default. First-letter becomes uppercase' );
310 title = new mw.Title( 'ß' );
311 assert.equal( title.toString(), 'ß', 'Uppercasing matches PHP behaviour (ß -> ß, not SS)' );
313 title = new mw.Title( 'dž (digraph)' );
314 assert.equal( title.toString(), 'Dž_(digraph)', 'Uppercasing matches PHP behaviour (dž -> Dž, not DŽ)' );
316 // $wgCapitalLinks = false;
317 mw.config.set( 'wgCaseSensitiveNamespaces', [ 0, -2, 1, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15 ] );
319 title = new mw.Title( 'article' );
320 assert.equal( title.toString(), 'article', '$wgCapitalLinks=false: Article namespace is sensitive, first-letter case stays lowercase' );
322 title = new mw.Title( 'john', 2 );
323 assert.equal( title.toString(), 'User:John', '$wgCapitalLinks=false: User namespace is insensitive, first-letter becomes uppercase' );
326 QUnit.test( 'toString / toText', 2, function ( assert ) {
327 var title = new mw.Title( 'Some random page' );
329 assert.equal( title.toString(), title.getPrefixedDb() );
330 assert.equal( title.toText(), title.getPrefixedText() );
333 QUnit.test( 'getExtension', 7, function ( assert ) {
334 function extTest( pagename, ext, description ) {
335 var title = new mw.Title( pagename );
336 assert.equal( title.getExtension(), ext, description || pagename );
339 extTest( 'MediaWiki:Vector.js', 'js' );
340 extTest( 'User:Example/common.css', 'css' );
341 extTest( 'File:Example.longextension', 'longextension', 'Extension parsing not limited (bug 36151)' );
342 extTest( 'Example/information.json', 'json', 'Extension parsing not restricted from any namespace' );
343 extTest( 'Foo.', null, 'Trailing dot is not an extension' );
344 extTest( 'Foo..', null, 'Trailing dots are not an extension' );
345 extTest( 'Foo.a.', null, 'Page name with dots and ending in a dot does not have an extension' );
347 // @broken: Throws an exception
348 // extTest( '.NET', null, 'Leading dot is (or is not?) an extension' );
351 QUnit.test( 'exists', 3, function ( assert ) {
354 // Empty registry, checks default to null
356 title = new mw.Title( 'Some random page', 4 );
357 assert.strictEqual( title.exists(), null, 'Return null with empty existance registry' );
359 // Basic registry, checks default to boolean
360 mw.Title.exist.set( [ 'Does_exist', 'User_talk:NeilK', 'Wikipedia:Sandbox_rules' ], true );
361 mw.Title.exist.set( [ 'Does_not_exist', 'User:John', 'Foobar' ], false );
363 title = new mw.Title( 'Project:Sandbox rules' );
364 assert.assertTrue( title.exists(), 'Return true for page titles marked as existing' );
365 title = new mw.Title( 'Foobar' );
366 assert.assertFalse( title.exists(), 'Return false for page titles marked as nonexistent' );
370 QUnit.test( 'getUrl', 4, function ( assert ) {
373 wgScript: '/w/index.php',
374 wgArticlePath: '/wiki/$1'
377 title = new mw.Title( 'Foobar' );
378 assert.equal( title.getUrl(), '/wiki/Foobar', 'Basic functionality, getUrl uses mw.util.getUrl' );
379 assert.equal( title.getUrl( { action: 'edit' } ), '/w/index.php?title=Foobar&action=edit', 'Basic functionality, \'params\' parameter' );
381 title = new mw.Title( 'John Doe', 3 );
382 assert.equal( title.getUrl(), '/wiki/User_talk:John_Doe', 'Escaping in title and namespace for urls' );
384 title = new mw.Title( 'John Cena#And_His_Name_Is', 3 );
385 assert.equal( title.getUrl( { meme: true } ), '/w/index.php?title=User_talk:John_Cena&meme=true#And_His_Name_Is', 'title with fragment and query parameter' );
388 QUnit.test( 'newFromImg', 44, function ( assert ) {
389 var title, i, thisCase, prefix,
392 url: '//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Princess_Alexandra_of_Denmark_%28later_Queen_Alexandra%2C_wife_of_Edward_VII%29_with_her_two_eldest_sons%2C_Prince_Albert_Victor_%28Eddy%29_and_George_Frederick_Ernest_Albert_%28later_George_V%29.jpg/939px-thumbnail.jpg',
393 typeOfUrl: 'Hashed thumb with shortened path',
394 nameText: 'Princess Alexandra of Denmark (later Queen Alexandra, wife of Edward VII) with her two eldest sons, Prince Albert Victor (Eddy) and George Frederick Ernest Albert (later George V)',
395 prefixedText: 'File:Princess Alexandra of Denmark (later Queen Alexandra, wife of Edward VII) with her two eldest sons, Prince Albert Victor (Eddy) and George Frederick Ernest Albert (later George V).jpg'
399 url: '//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Princess_Alexandra_of_Denmark_%28later_Queen_Alexandra%2C_wife_of_Edward_VII%29_with_her_two_eldest_sons%2C_Prince_Albert_Victor_%28Eddy%29_and_George_Frederick_Ernest_Albert_%28later_George_V%29.jpg/939px-ki708pr1r6g2dl5lbhvwdqxenhait13.jpg',
400 typeOfUrl: 'Hashed thumb with sha1-ed path',
401 nameText: 'Princess Alexandra of Denmark (later Queen Alexandra, wife of Edward VII) with her two eldest sons, Prince Albert Victor (Eddy) and George Frederick Ernest Albert (later George V)',
402 prefixedText: 'File:Princess Alexandra of Denmark (later Queen Alexandra, wife of Edward VII) with her two eldest sons, Prince Albert Victor (Eddy) and George Frederick Ernest Albert (later George V).jpg'
406 url: '/wiki/images/thumb/9/91/Anticlockwise_heliotrope%27s.jpg/99px-Anticlockwise_heliotrope%27s.jpg',
407 typeOfUrl: 'Normal hashed directory thumbnail',
408 nameText: 'Anticlockwise heliotrope\'s',
409 prefixedText: 'File:Anticlockwise heliotrope\'s.jpg'
413 url: '/wiki/images/thumb/8/80/Wikipedia-logo-v2.svg/langde-150px-Wikipedia-logo-v2.svg.png',
414 typeOfUrl: 'Normal hashed directory thumbnail with complex thumbnail parameters',
415 nameText: 'Wikipedia-logo-v2',
416 prefixedText: 'File:Wikipedia-logo-v2.svg'
420 url: '//upload.wikimedia.org/wikipedia/commons/thumb/8/80/Wikipedia-logo-v2.svg/150px-Wikipedia-logo-v2.svg.png',
421 typeOfUrl: 'Commons thumbnail',
422 nameText: 'Wikipedia-logo-v2',
423 prefixedText: 'File:Wikipedia-logo-v2.svg'
427 url: '/wiki/images/9/91/Anticlockwise_heliotrope%27s.jpg',
428 typeOfUrl: 'Full image',
429 nameText: 'Anticlockwise heliotrope\'s',
430 prefixedText: 'File:Anticlockwise heliotrope\'s.jpg'
434 url: 'http://localhost/thumb.php?f=Stuffless_Figaro%27s.jpg&width=180',
435 typeOfUrl: 'thumb.php-based thumbnail',
436 nameText: 'Stuffless Figaro\'s',
437 prefixedText: 'File:Stuffless Figaro\'s.jpg'
441 url: '/wikipedia/commons/thumb/Wikipedia-logo-v2.svg/150px-Wikipedia-logo-v2.svg.png',
442 typeOfUrl: 'Commons unhashed thumbnail',
443 nameText: 'Wikipedia-logo-v2',
444 prefixedText: 'File:Wikipedia-logo-v2.svg'
448 url: '/wikipedia/commons/thumb/Wikipedia-logo-v2.svg/langde-150px-Wikipedia-logo-v2.svg.png',
449 typeOfUrl: 'Commons unhashed thumbnail with complex thumbnail parameters',
450 nameText: 'Wikipedia-logo-v2',
451 prefixedText: 'File:Wikipedia-logo-v2.svg'
455 url: '/wiki/images/Anticlockwise_heliotrope%27s.jpg',
456 typeOfUrl: 'Unhashed local file',
457 nameText: 'Anticlockwise heliotrope\'s',
458 prefixedText: 'File:Anticlockwise heliotrope\'s.jpg'
463 typeOfUrl: 'Empty string'
468 typeOfUrl: 'String with only alphabet characters'
472 url: 'foobar.foobar',
473 typeOfUrl: 'Not a file path'
477 url: '/a/a0/blah blah blah',
478 typeOfUrl: 'Space characters'
482 for ( i = 0; i < cases.length; i++ ) {
483 thisCase = cases[ i ];
484 title = mw.Title.newFromImg( { src: thisCase.url } );
486 if ( thisCase.nameText !== undefined ) {
487 prefix = '[' + thisCase.typeOfUrl + ' URL' + '] ';
489 assert.notStrictEqual( title, null, prefix + 'Parses successfully' );
490 assert.equal( title.getNameText(), thisCase.nameText, prefix + 'Filename matches original' );
491 assert.equal( title.getPrefixedText(), thisCase.prefixedText, prefix + 'File page title matches original' );
492 assert.equal( title.getNamespaceId(), 6, prefix + 'Namespace ID matches File namespace' );
494 assert.strictEqual( title, null, thisCase.typeOfUrl + ', should not produce an mw.Title object' );
499 QUnit.test( 'getRelativeText', 5, function ( assert ) {
500 var i, thisCase, title,
505 expectedResult: ':Asd'
510 expectedResult: 'Dfg'
513 text: 'Template:Ghj',
515 expectedResult: 'Template:Ghj'
525 expectedResult: 'User:Hi'
529 for ( i = 0; i < cases.length; i++ ) {
530 thisCase = cases[ i ];
532 title = mw.Title.newFromText( thisCase.text );
533 assert.equal( title.getRelativeText( thisCase.relativeTo ), thisCase.expectedResult );
537 QUnit.test( 'normalizeExtension', 5, function ( assert ) {
538 var extension, i, thisCase, prefix,
543 description: 'Extension already in canonical form'
548 description: 'Extension lowercased in canonical form'
553 description: 'Extension changed in canonical form'
558 description: 'Extension lowercased and changed in canonical form'
563 description: 'Extension invalid and discarded'
567 for ( i = 0; i < cases.length; i++ ) {
568 thisCase = cases[ i ];
569 extension = mw.Title.normalizeExtension( thisCase.extension );
571 prefix = '[' + thisCase.description + '] ';
572 assert.equal( extension, thisCase.expected, prefix + 'Extension as expected' );
576 QUnit.test( 'newFromUserInput', 12, function ( assert ) {
577 var title, i, thisCase, prefix,
580 title: 'DCS0001557854455.JPG',
581 expected: 'DCS0001557854455.JPG',
582 description: 'Title in normal namespace without anything invalid but with "file extension"'
585 title: 'MediaWiki:Msg-awesome',
586 expected: 'MediaWiki:Msg-awesome',
587 description: 'Full title (page in MediaWiki namespace) supplied as string'
590 title: 'The/Mw/Sound.flac',
591 defaultNamespace: -2,
592 expected: 'Media:The-Mw-Sound.flac',
593 description: 'Page in Media-namespace without explicit options'
596 title: 'File:The/Mw/Sound.kml',
601 expected: 'File:The/Mw/Sound.kml',
602 description: 'Page in File-namespace without explicit options'
605 title: 'File:Foo.JPEG',
606 expected: 'File:Foo.JPEG',
607 description: 'Page in File-namespace with non-canonical extension'
610 title: 'File:Foo.JPEG ',
611 expected: 'File:Foo.JPEG',
612 description: 'Page in File-namespace with trailing whitespace'
616 for ( i = 0; i < cases.length; i++ ) {
617 thisCase = cases[ i ];
618 title = mw.Title.newFromUserInput( thisCase.title, thisCase.defaultNamespace, thisCase.options );
620 if ( thisCase.expected !== undefined ) {
621 prefix = '[' + thisCase.description + '] ';
623 assert.notStrictEqual( title, null, prefix + 'Parses successfully' );
624 assert.equal( title.toText(), thisCase.expected, prefix + 'Title as expected' );
626 assert.strictEqual( title, null, thisCase.description + ', should not produce an mw.Title object' );
631 QUnit.test( 'newFromFileName', 54, function ( assert ) {
632 var title, i, thisCase, prefix,
635 fileName: 'DCS0001557854455.JPG',
636 typeOfName: 'Standard camera output',
637 nameText: 'DCS0001557854455',
638 prefixedText: 'File:DCS0001557854455.JPG'
641 fileName: 'File:Sample.png',
642 typeOfName: 'Carrying namespace',
643 nameText: 'File-Sample',
644 prefixedText: 'File:File-Sample.png'
647 fileName: 'Treppe 2222 Test upload.jpg',
648 typeOfName: 'File name with spaces in it and lower case file extension',
649 nameText: 'Treppe 2222 Test upload',
650 prefixedText: 'File:Treppe 2222 Test upload.jpg'
653 fileName: 'I contain a \ttab.jpg',
654 typeOfName: 'Name containing a tab character',
655 nameText: 'I contain a tab',
656 prefixedText: 'File:I contain a tab.jpg'
659 fileName: 'I_contain multiple__ ___ _underscores.jpg',
660 typeOfName: 'Name containing multiple underscores',
661 nameText: 'I contain multiple underscores',
662 prefixedText: 'File:I contain multiple underscores.jpg'
665 fileName: 'I like ~~~~~~~~es.jpg',
666 typeOfName: 'Name containing more than three consecutive tilde characters',
667 nameText: 'I like ~~es',
668 prefixedText: 'File:I like ~~es.jpg'
671 fileName: 'BI\u200EDI.jpg',
672 typeOfName: 'Name containing BIDI overrides',
674 prefixedText: 'File:BIDI.jpg'
677 fileName: '100%ab progress.jpg',
678 typeOfName: 'File name with URL encoding',
679 nameText: '100% ab progress',
680 prefixedText: 'File:100% ab progress.jpg'
683 fileName: '<([>]):/#.jpg',
684 typeOfName: 'File name with characters not permitted in titles that are replaced',
685 nameText: '((()))---',
686 prefixedText: 'File:((()))---.jpg'
689 fileName: 'spaces\u0009\u2000\u200A\u200Bx.djvu',
690 typeOfName: 'File name with different kind of spaces',
691 nameText: 'Spaces \u200Bx',
692 prefixedText: 'File:Spaces \u200Bx.djvu'
695 fileName: 'dot.dot.dot.dot.dotdot',
696 typeOfName: 'File name with a lot of dots',
697 nameText: 'Dot.dot.dot.dot',
698 prefixedText: 'File:Dot.dot.dot.dot.dotdot'
701 fileName: 'dot. dot ._dot',
702 typeOfName: 'File name with multiple dots and spaces',
703 nameText: 'Dot. dot',
704 prefixedText: 'File:Dot. dot. dot'
707 fileName: '𠜎𠜱𠝹𠱓𠱸𠲖𠳏𠳕𠴕𠵼𠵿𠸎𠸏𠹷𠺝𠺢𠻗𠻹𠻺𠼭𠼮𠽌𠾴𠾼𠿪𡁜𡁯𡁵𡁶𡁻𡃁𡃉𡇙𢃇𢞵𢫕𢭃𢯊𢱑𢱕𢳂𠻹𠻺𠼭𠼮𠽌𠾴𠾼𠿪𡁜𡁯𡁵𡁶𡁻𡃁𡃉𡇙𢃇𢞵𢫕𢭃𢯊𢱑𢱕𢳂.png',
708 typeOfName: 'File name longer than 240 bytes',
709 nameText: '𠜎𠜱𠝹𠱓𠱸𠲖𠳏𠳕𠴕𠵼𠵿𠸎𠸏𠹷𠺝𠺢𠻗𠻹𠻺𠼭𠼮𠽌𠾴𠾼𠿪𡁜𡁯𡁵𡁶𡁻𡃁𡃉𡇙𢃇𢞵𢫕𢭃𢯊𢱑𢱕𢳂𠻹𠻺𠼭𠼮𠽌𠾴𠾼𠿪𡁜𡁯𡁵𡁶𡁻𡃁𡃉𡇙𢃇𢞵',
710 prefixedText: 'File:𠜎𠜱𠝹𠱓𠱸𠲖𠳏𠳕𠴕𠵼𠵿𠸎𠸏𠹷𠺝𠺢𠻗𠻹𠻺𠼭𠼮𠽌𠾴𠾼𠿪𡁜𡁯𡁵𡁶𡁻𡃁𡃉𡇙𢃇𢞵𢫕𢭃𢯊𢱑𢱕𢳂𠻹𠻺𠼭𠼮𠽌𠾴𠾼𠿪𡁜𡁯𡁵𡁶𡁻𡃁𡃉𡇙𢃇𢞵.png'
714 typeOfName: 'Empty string'
718 typeOfName: 'String with only alphabet characters'
722 for ( i = 0; i < cases.length; i++ ) {
723 thisCase = cases[ i ];
724 title = mw.Title.newFromFileName( thisCase.fileName );
726 if ( thisCase.nameText !== undefined ) {
727 prefix = '[' + thisCase.typeOfName + '] ';
729 assert.notStrictEqual( title, null, prefix + 'Parses successfully' );
730 assert.equal( title.getNameText(), thisCase.nameText, prefix + 'Filename matches original' );
731 assert.equal( title.getPrefixedText(), thisCase.prefixedText, prefix + 'File page title matches original' );
732 assert.equal( title.getNamespaceId(), 6, prefix + 'Namespace ID matches File namespace' );
734 assert.strictEqual( title, null, thisCase.typeOfName + ', should not produce an mw.Title object' );
739 }( mediaWiki, jQuery ) );