2 QUnit
.module( 'mediawiki.Uri', QUnit
.newMwEnvironment( {
4 this.mwUriOrg
= mw
.Uri
;
5 mw
.Uri
= mw
.UriRelative( 'http://example.org/w/index.php' );
7 teardown: function () {
8 mw
.Uri
= this.mwUriOrg
;
13 $.each( [true, false], function ( i
, strictMode
) {
14 QUnit
.test( 'Basic construction and properties (' + ( strictMode
? '' : 'non-' ) + 'strict mode)', 2, function ( assert
) {
16 uriString
= 'http://www.ietf.org/rfc/rfc2396.txt';
17 uri
= new mw
.Uri( uriString
, {
18 strictMode
: strictMode
23 protocol
: uri
.protocol
,
28 fragment
: uri
.fragment
33 path
: '/rfc/rfc2396.txt',
37 'basic object properties'
42 userInfo
: uri
.getUserInfo(),
43 authority
: uri
.getAuthority(),
44 hostPort
: uri
.getHostPort(),
45 queryString
: uri
.getQueryString(),
46 relativePath
: uri
.getRelativePath(),
47 toString
: uri
.toString()
51 authority
: 'www.ietf.org',
52 hostPort
: 'www.ietf.org',
54 relativePath
: '/rfc/rfc2396.txt',
57 'construct composite components of URI on request'
62 QUnit
.test( 'Constructor( String[, Object ] )', 10, function ( assert
) {
65 uri
= new mw
.Uri( 'http://www.example.com/dir/?m=foo&m=bar&n=1', {
69 // Strict comparison to assert that numerical values stay strings
70 assert
.strictEqual( uri
.query
.n
, '1', 'Simple parameter with overrideKeys:true' );
71 assert
.strictEqual( uri
.query
.m
, 'bar', 'Last key overrides earlier keys with overrideKeys:true' );
73 uri
= new mw
.Uri( 'http://www.example.com/dir/?m=foo&m=bar&n=1', {
77 assert
.strictEqual( uri
.query
.n
, '1', 'Simple parameter with overrideKeys:false' );
78 assert
.strictEqual( uri
.query
.m
[0], 'foo', 'Order of multi-value parameters with overrideKeys:true' );
79 assert
.strictEqual( uri
.query
.m
[1], 'bar', 'Order of multi-value parameters with overrideKeys:true' );
80 assert
.strictEqual( uri
.query
.m
.length
, 2, 'Number of mult-value field is correct' );
82 uri
= new mw
.Uri( 'ftp://usr:pwd@192.0.2.16/' );
86 protocol
: uri
.protocol
,
88 password
: uri
.password
,
93 fragment
: uri
.fragment
105 'Parse an ftp URI correctly with user and password'
110 return new mw
.Uri( 'glaswegian penguins' );
113 return e
.message
=== 'Bad constructor arguments';
115 'throw error on non-URI as argument to constructor'
120 return new mw
.Uri( 'foo.com/bar/baz', {
125 return e
.message
=== 'Bad constructor arguments';
127 'throw error on URI without protocol or // or leading / in strict mode'
130 uri
= new mw
.Uri( 'foo.com/bar/baz', {
133 assert
.equal( uri
.toString(), 'http://foo.com/bar/baz', 'normalize URI without protocol or // in loose mode' );
136 QUnit
.test( 'Constructor( Object )', 3, function ( assert
) {
137 var uri
= new mw
.Uri( {
139 host
: 'www.foo.local',
142 assert
.equal( uri
.toString(), 'http://www.foo.local/this', 'Basic properties' );
146 host
: 'www.foo.local',
148 query
: { hi
: 'there' },
151 assert
.equal( uri
.toString(), 'http://www.foo.local/this?hi=there#blah', 'More complex properties' );
157 host
: 'www.foo.local'
161 return e
.message
=== 'Bad constructor arguments';
163 'Construction failed when missing required properties'
167 QUnit
.test( 'Constructor( empty )', 4, function ( assert
) {
168 var testuri
, MyUri
, uri
;
170 testuri
= 'http://example.org/w/index.php';
171 MyUri
= mw
.UriRelative( testuri
);
174 assert
.equal( uri
.toString(), testuri
, 'no arguments' );
176 uri
= new MyUri( undefined );
177 assert
.equal( uri
.toString(), testuri
, 'undefined' );
179 uri
= new MyUri( null );
180 assert
.equal( uri
.toString(), testuri
, 'null' );
182 uri
= new MyUri( '' );
183 assert
.equal( uri
.toString(), testuri
, 'empty string' );
186 QUnit
.test( 'Properties', 8, function ( assert
) {
189 uriBase
= new mw
.Uri( 'http://en.wiki.local/w/api.php' );
191 uri
= uriBase
.clone();
192 uri
.fragment
= 'frag';
193 assert
.equal( uri
.toString(), 'http://en.wiki.local/w/api.php#frag', 'add a fragment' );
195 uri
= uriBase
.clone();
196 uri
.host
= 'fr.wiki.local';
198 assert
.equal( uri
.toString(), 'http://fr.wiki.local:8080/w/api.php', 'change host and port' );
200 uri
= uriBase
.clone();
201 uri
.query
.foo
= 'bar';
202 assert
.equal( uri
.toString(), 'http://en.wiki.local/w/api.php?foo=bar', 'add query arguments' );
204 delete uri
.query
.foo
;
205 assert
.equal( uri
.toString(), 'http://en.wiki.local/w/api.php', 'delete query arguments' );
207 uri
= uriBase
.clone();
208 uri
.query
.foo
= 'bar';
209 assert
.equal( uri
.toString(), 'http://en.wiki.local/w/api.php?foo=bar', 'extend query arguments' );
214 assert
.ok( uri
.toString().indexOf( 'foo=quux' ) >= 0, 'extend query arguments' );
215 assert
.ok( uri
.toString().indexOf( 'foo=bar' ) === -1, 'extend query arguments' );
216 assert
.ok( uri
.toString().indexOf( 'pif=paf' ) >= 0, 'extend query arguments' );
219 QUnit
.test( '.getQueryString()', 2, function ( assert
) {
220 var uri
= new mw
.Uri( 'http://www.google.com/?q=uri' );
224 protocol
: uri
.protocol
,
229 fragment
: uri
.fragment
,
230 queryString
: uri
.getQueryString()
234 host
: 'www.google.com',
241 'basic object properties'
244 uri
= new mw
.Uri( 'https://example.org/mw/index.php?title=Sandbox/7&other=Sandbox/7&foo' );
246 uri
.getQueryString(),
247 'title=Sandbox/7&other=Sandbox%2F7&foo',
248 'title parameter is escaped the wiki-way'
253 QUnit
.test( '.clone()', 6, function ( assert
) {
256 original
= new mw
.Uri( 'http://foo.example.org/index.php?one=1&two=2' );
257 clone
= original
.clone();
259 assert
.deepEqual( clone
, original
, 'clone has equivalent properties' );
260 assert
.equal( original
.toString(), clone
.toString(), 'toString matches original' );
262 assert
.notStrictEqual( clone
, original
, 'clone is a different object when compared by reference' );
264 clone
.host
= 'bar.example.org';
265 assert
.notEqual( original
.host
, clone
.host
, 'manipulating clone did not effect original' );
266 assert
.notEqual( original
.toString(), clone
.toString(), 'Stringified url no longer matches original' );
268 clone
.query
.three
= 3;
272 { 'one': '1', 'two': '2' },
273 'Properties is deep cloned (bug 37708)'
277 QUnit
.test( '.toString() after query manipulation', 8, function ( assert
) {
280 uri
= new mw
.Uri( 'http://www.example.com/dir/?m=foo&m=bar&n=1', {
284 uri
.query
.n
= [ 'x', 'y', 'z' ];
286 // Verify parts and total length instead of entire string because order
287 // of iteration can vary.
288 assert
.ok( uri
.toString().indexOf( 'm=bar' ), 'toString preserves other values' );
289 assert
.ok( uri
.toString().indexOf( 'n=x&n=y&n=z' ), 'toString parameter includes all values of an array query parameter' );
290 assert
.equal( uri
.toString().length
, 'http://www.example.com/dir/?m=bar&n=x&n=y&n=z'.length
, 'toString matches expected string' );
292 uri
= new mw
.Uri( 'http://www.example.com/dir/?m=foo&m=bar&n=1', {
296 // Change query values
297 uri
.query
.n
= [ 'x', 'y', 'z' ];
299 // Verify parts and total length instead of entire string because order
300 // of iteration can vary.
301 assert
.ok( uri
.toString().indexOf( 'm=foo&m=bar' ) >= 0, 'toString preserves other values' );
302 assert
.ok( uri
.toString().indexOf( 'n=x&n=y&n=z' ) >= 0, 'toString parameter includes all values of an array query parameter' );
303 assert
.equal( uri
.toString().length
, 'http://www.example.com/dir/?m=foo&m=bar&n=x&n=y&n=z'.length
, 'toString matches expected string' );
305 // Remove query values
306 uri
.query
.m
.splice( 0, 1 );
309 assert
.equal( uri
.toString(), 'http://www.example.com/dir/?m=bar', 'deletion properties' );
311 // Remove more query values, leaving an empty array
312 uri
.query
.m
.splice( 0, 1 );
313 assert
.equal( uri
.toString(), 'http://www.example.com/dir/', 'empty array value is ommitted' );
316 QUnit
.test( 'Advanced URL', 11, function ( assert
) {
317 var uri
, queryString
, relativePath
;
319 uri
= new mw
.Uri( 'http://auth@www.example.com:81/dir/dir.2/index.htm?q1=0&&test1&test2=value+%28escaped%29#top' );
323 protocol
: uri
.protocol
,
325 password
: uri
.password
,
330 fragment
: uri
.fragment
336 host
: 'www.example.com',
338 path
: '/dir/dir.2/index.htm',
339 query
: { q1
: '0', test1
: null, test2
: 'value (escaped)' },
342 'basic object properties'
345 assert
.equal( uri
.getUserInfo(), 'auth', 'user info' );
347 assert
.equal( uri
.getAuthority(), 'auth@www.example.com:81', 'authority equal to auth@hostport' );
349 assert
.equal( uri
.getHostPort(), 'www.example.com:81', 'hostport equal to host:port' );
351 queryString
= uri
.getQueryString();
352 assert
.ok( queryString
.indexOf( 'q1=0' ) >= 0, 'query param with numbers' );
353 assert
.ok( queryString
.indexOf( 'test1' ) >= 0, 'query param with null value is included' );
354 assert
.ok( queryString
.indexOf( 'test1=' ) === -1, 'query param with null value does not generate equals sign' );
355 assert
.ok( queryString
.indexOf( 'test2=value+%28escaped%29' ) >= 0, 'query param is url escaped' );
357 relativePath
= uri
.getRelativePath();
358 assert
.ok( relativePath
.indexOf( uri
.path
) >= 0, 'path in relative path' );
359 assert
.ok( relativePath
.indexOf( uri
.getQueryString() ) >= 0, 'query string in relative path' );
360 assert
.ok( relativePath
.indexOf( uri
.fragment
) >= 0, 'fragement in relative path' );
363 QUnit
.test( 'Parse a uri with an @ symbol in the path and query', 1, function ( assert
) {
364 var uri
= new mw
.Uri( 'http://www.example.com/test@test?x=@uri&y@=uri&z@=@' );
368 protocol
: uri
.protocol
,
370 password
: uri
.password
,
375 fragment
: uri
.fragment
,
376 queryString
: uri
.getQueryString()
382 host
: 'www.example.com',
385 query
: { x
: '@uri', 'y@': 'uri', 'z@': '@' },
387 queryString
: 'x=%40uri&y%40=uri&z%40=%40'
389 'basic object properties'
393 QUnit
.test( 'Handle protocol-relative URLs', 5, function ( assert
) {
396 UriRel
= mw
.UriRelative( 'glork://en.wiki.local/foo.php' );
398 uri
= new UriRel( '//en.wiki.local/w/api.php' );
399 assert
.equal( uri
.protocol
, 'glork', 'create protocol-relative URLs with same protocol as document' );
401 uri
= new UriRel( '/foo.com' );
402 assert
.equal( uri
.toString(), 'glork://en.wiki.local/foo.com', 'handle absolute paths by supplying protocol and host from document in loose mode' );
404 uri
= new UriRel( 'http:/foo.com' );
405 assert
.equal( uri
.toString(), 'http://en.wiki.local/foo.com', 'handle absolute paths by supplying host from document in loose mode' );
407 uri
= new UriRel( '/foo.com', true );
408 assert
.equal( uri
.toString(), 'glork://en.wiki.local/foo.com', 'handle absolute paths by supplying protocol and host from document in strict mode' );
410 uri
= new UriRel( 'http:/foo.com', true );
411 assert
.equal( uri
.toString(), 'http://en.wiki.local/foo.com', 'handle absolute paths by supplying host from document in strict mode' );
414 QUnit
.test( 'bug 35658', 2, function ( assert
) {
415 var testProtocol
, testServer
, testPort
, testPath
, UriClass
, uri
, href
;
417 testProtocol
= 'https://';
418 testServer
= 'foo.example.org';
422 UriClass
= mw
.UriRelative( testProtocol
+ testServer
+ '/some/path/index.html' );
423 uri
= new UriClass( testPath
);
424 href
= uri
.toString();
425 assert
.equal( href
, testProtocol
+ testServer
+ testPath
, 'Root-relative URL gets host & protocol supplied' );
427 UriClass
= mw
.UriRelative( testProtocol
+ testServer
+ ':' + testPort
+ '/some/path.php' );
428 uri
= new UriClass( testPath
);
429 href
= uri
.toString();
430 assert
.equal( href
, testProtocol
+ testServer
+ ':' + testPort
+ testPath
, 'Root-relative URL gets host, protocol, and port supplied' );
433 }( mediaWiki
, jQuery
) );