2 // mw.Title relies on these three config vars
3 // Restore them after each test run
5 wgFormattedNamespaces: {
24 // testing custom / localized namespace
28 /*jshint camelcase: false */
51 /* testing custom / alias */
53 antarctic_waterfowl: 100
55 wgCaseSensitiveNamespaces: []
58 QUnit.module( 'mediawiki.Title', QUnit.newMwEnvironment( { config: config } ) );
60 QUnit.test( 'Transformation', 8, function ( assert ) {
63 title = new mw.Title( 'File:quux pif.jpg' );
64 assert.equal( title.getName(), 'Quux_pif' );
66 title = new mw.Title( 'File:Glarg_foo_glang.jpg' );
67 assert.equal( title.getNameText(), 'Glarg foo glang' );
69 title = new mw.Title( 'User:ABC.DEF' );
70 assert.equal( title.toText(), 'User:ABC.DEF' );
71 assert.equal( title.getNamespaceId(), 2 );
72 assert.equal( title.getNamespacePrefix(), 'User:' );
74 title = new mw.Title( 'uSEr:hAshAr' );
75 assert.equal( title.toText(), 'User:HAshAr' );
76 assert.equal( title.getNamespaceId(), 2 );
78 title = new mw.Title( ' MediaWiki: Foo bar .js ' );
79 // Don't ask why, it's the way the backend works. One space is kept of each set
80 assert.equal( title.getName(), 'Foo_bar_.js', 'Merge multiple spaces to a single space.' );
83 QUnit.test( 'Main text for filename', 8, function ( assert ) {
84 var title = new mw.Title( 'File:foo_bar.JPG' );
86 assert.equal( title.getNamespaceId(), 6 );
87 assert.equal( title.getNamespacePrefix(), 'File:' );
88 assert.equal( title.getName(), 'Foo_bar' );
89 assert.equal( title.getNameText(), 'Foo bar' );
90 assert.equal( title.getMain(), 'Foo_bar.JPG' );
91 assert.equal( title.getMainText(), 'Foo bar.JPG' );
92 assert.equal( title.getExtension(), 'JPG' );
93 assert.equal( title.getDotExtension(), '.JPG' );
96 QUnit.test( 'Namespace detection and conversion', 6, function ( assert ) {
99 title = new mw.Title( 'something.PDF', 6 );
100 assert.equal( title.toString(), 'File:Something.PDF' );
102 title = new mw.Title( 'NeilK', 3 );
103 assert.equal( title.toString(), 'User_talk:NeilK' );
104 assert.equal( title.toText(), 'User talk:NeilK' );
106 title = new mw.Title( 'Frobisher', 100 );
107 assert.equal( title.toString(), 'Penguins:Frobisher' );
109 title = new mw.Title( 'antarctic_waterfowl:flightless_yet_cute.jpg' );
110 assert.equal( title.toString(), 'Penguins:Flightless_yet_cute.jpg' );
112 title = new mw.Title( 'Penguins:flightless_yet_cute.jpg' );
113 assert.equal( title.toString(), 'Penguins:Flightless_yet_cute.jpg' );
116 QUnit.test( 'Throw error on invalid title', 1, function ( assert ) {
117 assert.throws( function () {
118 return new mw.Title( '' );
119 }, 'Throw error on empty string' );
122 QUnit.test( 'Case-sensivity', 3, function ( assert ) {
126 mw.config.set( 'wgCaseSensitiveNamespaces', [] );
128 title = new mw.Title( 'article' );
129 assert.equal( title.toString(), 'Article', 'Default config: No sensitive namespaces by default. First-letter becomes uppercase' );
131 // $wgCapitalLinks = false;
132 mw.config.set( 'wgCaseSensitiveNamespaces', [0, -2, 1, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15] );
134 title = new mw.Title( 'article' );
135 assert.equal( title.toString(), 'article', '$wgCapitalLinks=false: Article namespace is sensitive, first-letter case stays lowercase' );
137 title = new mw.Title( 'john', 2 );
138 assert.equal( title.toString(), 'User:John', '$wgCapitalLinks=false: User namespace is insensitive, first-letter becomes uppercase' );
141 QUnit.test( 'toString / toText', 2, function ( assert ) {
142 var title = new mw.Title( 'Some random page' );
144 assert.equal( title.toString(), title.getPrefixedDb() );
145 assert.equal( title.toText(), title.getPrefixedText() );
148 QUnit.test( 'getExtension', 7, function ( assert ) {
149 function extTest( pagename, ext, description ) {
150 var title = new mw.Title( pagename );
151 assert.equal( title.getExtension(), ext, description || pagename );
154 extTest( 'MediaWiki:Vector.js', 'js' );
155 extTest( 'User:Example/common.css', 'css' );
156 extTest( 'File:Example.longextension', 'longextension', 'Extension parsing not limited (bug 36151)' );
157 extTest( 'Example/information.json', 'json', 'Extension parsing not restricted from any namespace' );
158 extTest( 'Foo.', null, 'Trailing dot is not an extension' );
159 extTest( 'Foo..', null, 'Trailing dots are not an extension' );
160 extTest( 'Foo.a.', null, 'Page name with dots and ending in a dot does not have an extension' );
162 // @broken: Throws an exception
163 // extTest( '.NET', null, 'Leading dot is (or is not?) an extension' );
166 QUnit.test( 'exists', 3, function ( assert ) {
169 // Empty registry, checks default to null
171 title = new mw.Title( 'Some random page', 4 );
172 assert.strictEqual( title.exists(), null, 'Return null with empty existance registry' );
174 // Basic registry, checks default to boolean
175 mw.Title.exist.set( ['Does_exist', 'User_talk:NeilK', 'Wikipedia:Sandbox_rules'], true );
176 mw.Title.exist.set( ['Does_not_exist', 'User:John', 'Foobar'], false );
178 title = new mw.Title( 'Project:Sandbox rules' );
179 assert.assertTrue( title.exists(), 'Return true for page titles marked as existing' );
180 title = new mw.Title( 'Foobar' );
181 assert.assertFalse( title.exists(), 'Return false for page titles marked as nonexistent' );
185 QUnit.test( 'getUrl', 2, function ( assert ) {
189 mw.config.set( 'wgArticlePath', '/wiki/$1' );
191 title = new mw.Title( 'Foobar' );
192 assert.equal( title.getUrl(), '/wiki/Foobar', 'Basic functionally, toString passing to wikiGetlink' );
194 title = new mw.Title( 'John Doe', 3 );
195 assert.equal( title.getUrl(), '/wiki/User_talk:John_Doe', 'Escaping in title and namespace for urls' );