@ -7,251 +7,273 @@ var url = require('url'),
// URLs to parse, and expected data
// URLs to parse, and expected data
// { url : parsed }
// { url : parsed }
var parseTests = {
var parseTests = {
"//some_path" : {
'//some_path' : {
"href" : "//some_path" ,
'href' : '//some_path' ,
"pathname" : "//some_path"
'pathname' : '//some_path'
} ,
} ,
"http://www.narwhaljs.org/blog/categories?id=news" : {
'http://www.narwhaljs.org/blog/categories?id=news' : {
"href" : "http://www.narwhaljs.org/blog/categories?id=news" ,
'href' : 'http://www.narwhaljs.org/blog/categories?id=news' ,
"protocol" : "http:" ,
'protocol' : 'http:' ,
"host" : "www.narwhaljs.org" ,
'host' : 'www.narwhaljs.org' ,
"hostname" : "www.narwhaljs.org" ,
'hostname' : 'www.narwhaljs.org' ,
"search" : "?id=news" ,
'search' : '?id=news' ,
"query" : "id=news" ,
'query' : 'id=news' ,
"pathname" : "/blog/categories"
'pathname' : '/blog/categories'
} ,
} ,
"http://mt0.google.com/vt/lyrs=m@114&hl=en&src=api&x=2&y=2&z=3&s=" : {
'http://mt0.google.com/vt/lyrs=m@114&hl=en&src=api&x=2&y=2&z=3&s=' : {
"href" : "http://mt0.google.com/vt/lyrs=m@114&hl=en&src=api&x=2&y=2&z=3&s=" ,
'href' : 'http://mt0.google.com/vt/lyrs=m@114&hl=en&src=api&x=2&y=2&z=3&s=' ,
"protocol" : "http:" ,
'protocol' : 'http:' ,
"host" : "mt0.google.com" ,
'host' : 'mt0.google.com' ,
"hostname" : "mt0.google.com" ,
'hostname' : 'mt0.google.com' ,
"pathname" : "/vt/lyrs=m@114&hl=en&src=api&x=2&y=2&z=3&s="
'pathname' : '/vt/lyrs=m@114&hl=en&src=api&x=2&y=2&z=3&s='
} ,
} ,
"http://mt0.google.com/vt/lyrs=m@114???&hl=en&src=api&x=2&y=2&z=3&s=" : {
'http://mt0.google.com/vt/lyrs=m@114???&hl=en&src=api&x=2&y=2&z=3&s=' : {
"href" : "http://mt0.google.com/vt/lyrs=m@114???&hl=en&src=api&x=2&y=2&z=3&s=" ,
'href' : 'http://mt0.google.com/vt/lyrs=m@114???&hl=en&src=api&x=2&y=2&z=3&s=' ,
"protocol" : "http:" ,
'protocol' : 'http:' ,
"host" : "mt0.google.com" ,
'host' : 'mt0.google.com' ,
"hostname" : "mt0.google.com" ,
'hostname' : 'mt0.google.com' ,
"search" : "???&hl=en&src=api&x=2&y=2&z=3&s=" ,
'search' : '???&hl=en&src=api&x=2&y=2&z=3&s=' ,
"query" : "??&hl=en&src=api&x=2&y=2&z=3&s=" ,
'query' : '??&hl=en&src=api&x=2&y=2&z=3&s=' ,
"pathname" : "/vt/lyrs=m@114"
'pathname' : '/vt/lyrs=m@114'
} ,
} ,
" http://user:pass@mt0.google.com/vt/lyrs=m@114???&hl=en&src=api&x=2&y=2&z=3&s=" : {
' http://user:pass@mt0.google.com/vt/lyrs=m@114???&hl=en&src=api&x=2&y=2&z=3&s=' : {
"href" : " http://user:pass@mt0.google.com/vt/lyrs=m@114???&hl=en&src=api&x=2&y=2&z=3&s=" ,
'href' : ' http://user:pass@mt0.google.com/vt/lyrs=m@114???&hl=en&src=api&x=2&y=2&z=3&s=' ,
"protocol" : "http:" ,
'protocol' : 'http:' ,
"host" : "user:pass@mt0.google.com" ,
'host' : 'user:pass@mt0.google.com' ,
"auth" : "user:pass" ,
'auth' : 'user:pass' ,
"hostname" : "mt0.google.com" ,
'hostname' : 'mt0.google.com' ,
"search" : "???&hl=en&src=api&x=2&y=2&z=3&s=" ,
'search' : '???&hl=en&src=api&x=2&y=2&z=3&s=' ,
"query" : "??&hl=en&src=api&x=2&y=2&z=3&s=" ,
'query' : '??&hl=en&src=api&x=2&y=2&z=3&s=' ,
"pathname" : "/vt/lyrs=m@114"
'pathname' : '/vt/lyrs=m@114'
} ,
} ,
"file:///etc/passwd" : {
'file:///etc/passwd' : {
"href" : "file:///etc/passwd" ,
'href' : 'file:///etc/passwd' ,
"protocol" : "file:" ,
'protocol' : 'file:' ,
"pathname" : "///etc/passwd"
'pathname' : '///etc/passwd'
} ,
} ,
"file:///etc/node/" : {
'file:///etc/node/' : {
"href" : "file:///etc/node/" ,
'href' : 'file:///etc/node/' ,
"protocol" : "file:" ,
'protocol' : 'file:' ,
"pathname" : "///etc/node/"
'pathname' : '///etc/node/'
} ,
} ,
"http:/baz/../foo/bar" : {
'http:/baz/../foo/bar' : {
"href" : "http:/baz/../foo/bar" ,
'href' : 'http:/baz/../foo/bar' ,
"protocol" : "http:" ,
'protocol' : 'http:' ,
"pathname" : "/baz/../foo/bar"
'pathname' : '/baz/../foo/bar'
} ,
} ,
"http://user:pass@example.com:8000/foo/bar?baz=quux#frag" : {
'http://user:pass@example.com:8000/foo/bar?baz=quux#frag' : {
"href" : "http://user:pass@example.com:8000/foo/bar?baz=quux#frag" ,
'href' : 'http://user:pass@example.com:8000/foo/bar?baz=quux#frag' ,
"protocol" : "http:" ,
'protocol' : 'http:' ,
"host" : "user:pass@example.com:8000" ,
'host' : 'user:pass@example.com:8000' ,
"auth" : "user:pass" ,
'auth' : 'user:pass' ,
"port" : "8000" ,
'port' : '8000' ,
"hostname" : "example.com" ,
'hostname' : 'example.com' ,
"hash" : "#frag" ,
'hash' : '#frag' ,
"search" : "?baz=quux" ,
'search' : '?baz=quux' ,
"query" : "baz=quux" ,
'query' : 'baz=quux' ,
"pathname" : "/foo/bar"
'pathname' : '/foo/bar'
} ,
} ,
"//user:pass@example.com:8000/foo/bar?baz=quux#frag" : {
'//user:pass@example.com:8000/foo/bar?baz=quux#frag' : {
"href" : "//user:pass@example.com:8000/foo/bar?baz=quux#frag" ,
'href' : '//user:pass@example.com:8000/foo/bar?baz=quux#frag' ,
"host" : "user:pass@example.com:8000" ,
'host' : 'user:pass@example.com:8000' ,
"auth" : "user:pass" ,
'auth' : 'user:pass' ,
"port" : "8000" ,
'port' : '8000' ,
"hostname" : "example.com" ,
'hostname' : 'example.com' ,
"hash" : "#frag" ,
'hash' : '#frag' ,
"search" : "?baz=quux" ,
'search' : '?baz=quux' ,
"query" : "baz=quux" ,
'query' : 'baz=quux' ,
"pathname" : "/foo/bar"
'pathname' : '/foo/bar'
} ,
} ,
"http://example.com?foo=bar#frag" : {
'http://example.com?foo=bar#frag' : {
"href" : "http://example.com?foo=bar#frag" ,
'href' : 'http://example.com?foo=bar#frag' ,
"protocol" : "http:" ,
'protocol' : 'http:' ,
"host" : "example.com" ,
'host' : 'example.com' ,
"hostname" : "example.com" ,
'hostname' : 'example.com' ,
"hash" : "#frag" ,
'hash' : '#frag' ,
"search" : "?foo=bar" ,
'search' : '?foo=bar' ,
"query" : "foo=bar"
'query' : 'foo=bar'
} ,
} ,
"http://example.com?foo=@bar#frag" : {
'http://example.com?foo=@bar#frag' : {
"href" : "http://example.com?foo=@bar#frag" ,
'href' : 'http://example.com?foo=@bar#frag' ,
"protocol" : "http:" ,
'protocol' : 'http:' ,
"host" : "example.com" ,
'host' : 'example.com' ,
"hostname" : "example.com" ,
'hostname' : 'example.com' ,
"hash" : "#frag" ,
'hash' : '#frag' ,
"search" : "?foo=@bar" ,
'search' : '?foo=@bar' ,
"query" : "foo=@bar"
'query' : 'foo=@bar'
} ,
} ,
"http://example.com?foo=/bar/#frag" : {
'http://example.com?foo=/bar/#frag' : {
"href" : "http://example.com?foo=/bar/#frag" ,
'href' : 'http://example.com?foo=/bar/#frag' ,
"protocol" : "http:" ,
'protocol' : 'http:' ,
"host" : "example.com" ,
'host' : 'example.com' ,
"hostname" : "example.com" ,
'hostname' : 'example.com' ,
"hash" : "#frag" ,
'hash' : '#frag' ,
"search" : "?foo=/bar/" ,
'search' : '?foo=/bar/' ,
"query" : "foo=/bar/"
'query' : 'foo=/bar/'
} ,
} ,
"http://example.com?foo=?bar/#frag" : {
'http://example.com?foo=?bar/#frag' : {
"href" : "http://example.com?foo=?bar/#frag" ,
'href' : 'http://example.com?foo=?bar/#frag' ,
"protocol" : "http:" ,
'protocol' : 'http:' ,
"host" : "example.com" ,
'host' : 'example.com' ,
"hostname" : "example.com" ,
'hostname' : 'example.com' ,
"hash" : "#frag" ,
'hash' : '#frag' ,
"search" : "?foo=?bar/" ,
'search' : '?foo=?bar/' ,
"query" : "foo=?bar/"
'query' : 'foo=?bar/'
} ,
} ,
"http://example.com#frag=?bar/#frag" : {
'http://example.com#frag=?bar/#frag' : {
"href" : "http://example.com#frag=?bar/#frag" ,
'href' : 'http://example.com#frag=?bar/#frag' ,
"protocol" : "http:" ,
'protocol' : 'http:' ,
"host" : "example.com" ,
'host' : 'example.com' ,
"hostname" : "example.com" ,
'hostname' : 'example.com' ,
"hash" : "#frag=?bar/#frag"
'hash' : '#frag=?bar/#frag'
} ,
} ,
"/foo/bar?baz=quux#frag" : {
'/foo/bar?baz=quux#frag' : {
"href" : "/foo/bar?baz=quux#frag" ,
'href' : '/foo/bar?baz=quux#frag' ,
"hash" : "#frag" ,
'hash' : '#frag' ,
"search" : "?baz=quux" ,
'search' : '?baz=quux' ,
"query" : "baz=quux" ,
'query' : 'baz=quux' ,
"pathname" : "/foo/bar"
'pathname' : '/foo/bar'
} ,
} ,
"http:/foo/bar?baz=quux#frag" : {
'http:/foo/bar?baz=quux#frag' : {
"href" : "http:/foo/bar?baz=quux#frag" ,
'href' : 'http:/foo/bar?baz=quux#frag' ,
"protocol" : "http:" ,
'protocol' : 'http:' ,
"hash" : "#frag" ,
'hash' : '#frag' ,
"search" : "?baz=quux" ,
'search' : '?baz=quux' ,
"query" : "baz=quux" ,
'query' : 'baz=quux' ,
"pathname" : "/foo/bar"
'pathname' : '/foo/bar'
} ,
} ,
"mailto:foo@bar.com?subject=hello" : {
'mailto:foo@bar.com?subject=hello' : {
"href" : "mailto:foo@bar.com?subject=hello" ,
'href' : 'mailto:foo@bar.com?subject=hello' ,
"protocol" : "mailto:" ,
'protocol' : 'mailto:' ,
"host" : "foo@bar.com" ,
'host' : 'foo@bar.com' ,
"auth" : "foo" ,
'auth' : 'foo' ,
"hostname" : "bar.com" ,
'hostname' : 'bar.com' ,
"search" : "?subject=hello" ,
'search' : '?subject=hello' ,
"query" : "subject=hello"
'query' : 'subject=hello'
} ,
} ,
"javascript:alert('hello');" : {
'javascript:alert(\'hello\');' : {
"href" : "javascript:alert('hello');" ,
'href' : 'javascript:alert(\'hello\');' ,
"protocol" : "javascript:" ,
'protocol' : 'javascript:' ,
"host" : "alert('hello')" ,
'host' : 'alert(\'hello\')' ,
"hostname" : "alert('hello')" ,
'hostname' : 'alert(\'hello\')' ,
"pathname" : ";"
'pathname' : ';'
} ,
} ,
"xmpp:isaacschlueter@jabber.org" : {
'xmpp:isaacschlueter@jabber.org' : {
"href" : "xmpp:isaacschlueter@jabber.org" ,
'href' : 'xmpp:isaacschlueter@jabber.org' ,
"protocol" : "xmpp:" ,
'protocol' : 'xmpp:' ,
"host" : "isaacschlueter@jabber.org" ,
'host' : 'isaacschlueter@jabber.org' ,
"auth" : "isaacschlueter" ,
'auth' : 'isaacschlueter' ,
"hostname" : "jabber.org"
'hostname' : 'jabber.org'
}
}
} ;
} ;
for ( var u in parseTests ) {
for ( var u in parseTests ) {
var actual = url . parse ( u ) ,
var actual = url . parse ( u ) ,
expected = parseTests [ u ] ;
expected = parseTests [ u ] ;
for ( var i in expected ) {
for ( var i in expected ) {
var e = JSON . stringify ( expected [ i ] ) ,
var e = JSON . stringify ( expected [ i ] ) ,
a = JSON . stringify ( actual [ i ] ) ;
a = JSON . stringify ( actual [ i ] ) ;
assert . equal ( e , a , "parse(" + u + ")." + i + " == " + e + "\nactual: " + a ) ;
assert . equal ( e , a ,
'parse(' + u + ').' + i + ' == ' + e + '\nactual: ' + a ) ;
}
}
var expected = u ,
var expected = u ,
actual = url . format ( parseTests [ u ] ) ;
actual = url . format ( parseTests [ u ] ) ;
assert . equal ( expected , actual , "format(" + u + ") == " + u + "\nactual:" + actual ) ;
assert . equal ( expected , actual ,
'format(' + u + ') == ' + u + '\nactual:' + actual ) ;
}
}
var parseTestsWithQueryString = {
var parseTestsWithQueryString = {
"/foo/bar?baz=quux#frag" : {
'/foo/bar?baz=quux#frag' : {
"href" : "/foo/bar?baz=quux#frag" ,
'href' : '/foo/bar?baz=quux#frag' ,
"hash" : "#frag" ,
'hash' : '#frag' ,
"search" : "?baz=quux" ,
'search' : '?baz=quux' ,
"query" : {
'query' : {
"baz" : "quux"
'baz' : 'quux'
} ,
} ,
"pathname" : "/foo/bar"
'pathname' : '/foo/bar'
} ,
}
} ;
} ;
for ( var u in parseTestsWithQueryString ) {
for ( var u in parseTestsWithQueryString ) {
var actual = url . parse ( u , true ) ;
var actual = url . parse ( u , true ) ;
var expected = parseTestsWithQueryString [ u ] ;
var expected = parseTestsWithQueryString [ u ] ;
for ( var i in expected ) {
for ( var i in expected ) {
var e = JSON . stringify ( expected [ i ] ) ,
var e = JSON . stringify ( expected [ i ] ) ,
a = JSON . stringify ( actual [ i ] ) ;
a = JSON . stringify ( actual [ i ] ) ;
assert . equal ( e , a , "parse(" + u + ")." + i + " == " + e + "\nactual: " + a ) ;
assert . equal ( e , a ,
'parse(' + u + ').' + i + ' == ' + e + '\nactual: ' + a ) ;
}
}
}
}
// some extra formatting tests, just to verify that it'll format slightly wonky content to a valid url.
// some extra formatting tests, just to verify
// that it'll format slightly wonky content to a valid url.
var formatTests = {
var formatTests = {
"http://a.com/a/b/c?s#h" : {
'http://a.com/a/b/c?s#h' : {
"protocol" : "http" ,
'protocol' : 'http' ,
"host" : "a.com" ,
'host' : 'a.com' ,
"pathname" : "a/b/c" ,
'pathname' : 'a/b/c' ,
"hash" : "h" ,
'hash' : 'h' ,
"search" : "s"
'search' : 's'
} ,
} ,
"xmpp:isaacschlueter@jabber.org" : {
'xmpp:isaacschlueter@jabber.org' : {
"href" : "xmpp://isaacschlueter@jabber.org" ,
'href' : 'xmpp://isaacschlueter@jabber.org' ,
"protocol" : "xmpp:" ,
'protocol' : 'xmpp:' ,
"host" : "isaacschlueter@jabber.org" ,
'host' : 'isaacschlueter@jabber.org' ,
"auth" : "isaacschlueter" ,
'auth' : 'isaacschlueter' ,
"hostname" : "jabber.org"
'hostname' : 'jabber.org'
}
}
} ;
} ;
for ( var u in formatTests ) {
for ( var u in formatTests ) {
var actual = url . format ( formatTests [ u ] ) ;
var actual = url . format ( formatTests [ u ] ) ;
assert . equal ( actual , u , "wonky format(" + u + ") == " + u + "\nactual:" + actual ) ;
assert . equal ( actual , u ,
'wonky format(' + u + ') == ' + u + '\nactual:' + actual ) ;
}
}
[
/ *
// [from, path, expected]
[ from , path , expected ]
[ "/foo/bar/baz" , "quux" , "/foo/bar/quux" ] ,
* /
[ "/foo/bar/baz" , "quux/asdf" , "/foo/bar/quux/asdf" ] ,
var relativeTests = [
[ "/foo/bar/baz" , "quux/baz" , "/foo/bar/quux/baz" ] ,
[ '/foo/bar/baz' , 'quux' , '/foo/bar/quux' ] ,
[ "/foo/bar/baz" , "../quux/baz" , "/foo/quux/baz" ] ,
[ '/foo/bar/baz' , 'quux/asdf' , '/foo/bar/quux/asdf' ] ,
[ "/foo/bar/baz" , "/bar" , "/bar" ] ,
[ '/foo/bar/baz' , 'quux/baz' , '/foo/bar/quux/baz' ] ,
[ "/foo/bar/baz/" , "quux" , "/foo/bar/baz/quux" ] ,
[ '/foo/bar/baz' , '../quux/baz' , '/foo/quux/baz' ] ,
[ "/foo/bar/baz/" , "quux/baz" , "/foo/bar/baz/quux/baz" ] ,
[ '/foo/bar/baz' , '/bar' , '/bar' ] ,
[ "/foo/bar/baz" , "../../../../../../../../quux/baz" , "/quux/baz" ] ,
[ '/foo/bar/baz/' , 'quux' , '/foo/bar/baz/quux' ] ,
[ "/foo/bar/baz" , "../../../../../../../quux/baz" , "/quux/baz" ] ,
[ '/foo/bar/baz/' , 'quux/baz' , '/foo/bar/baz/quux/baz' ] ,
[ "foo/bar" , "../../../baz" , "../../baz" ] ,
[ '/foo/bar/baz' , '../../../../../../../../quux/baz' , '/quux/baz' ] ,
[ "foo/bar/" , "../../../baz" , "../baz" ] ,
[ '/foo/bar/baz' , '../../../../../../../quux/baz' , '/quux/baz' ] ,
[ "http://example.com/b//c//d;p?q#blarg" , "https:#hash2" , "https:///#hash2" ] ,
[ 'foo/bar' , '../../../baz' , '../../baz' ] ,
[ "http://example.com/b//c//d;p?q#blarg" , "https:/p/a/t/h?s#hash2" , "https://p/a/t/h?s#hash2" ] ,
[ 'foo/bar/' , '../../../baz' , '../baz' ] ,
[ "http://example.com/b//c//d;p?q#blarg" , "https://u:p@h.com/p/a/t/h?s#hash2" , "https://u:p@h.com/p/a/t/h?s#hash2" ] ,
[ 'http://example.com/b//c//d;p?q#blarg' , 'https:#hash2' , 'https:///#hash2' ] ,
[ "http://example.com/b//c//d;p?q#blarg" , "https:/a/b/c/d" , "https://a/b/c/d" ] ,
[ 'http://example.com/b//c//d;p?q#blarg' ,
[ "http://example.com/b//c//d;p?q#blarg" , "http:#hash2" , "http://example.com/b//c//d;p?q#hash2" ] ,
'https:/p/a/t/h?s#hash2' ,
[ "http://example.com/b//c//d;p?q#blarg" , "http:/p/a/t/h?s#hash2" , "http://example.com/p/a/t/h?s#hash2" ] ,
'https://p/a/t/h?s#hash2' ] ,
[ "http://example.com/b//c//d;p?q#blarg" , "http://u:p@h.com/p/a/t/h?s#hash2" , "http://u:p@h.com/p/a/t/h?s#hash2" ] ,
[ 'http://example.com/b//c//d;p?q#blarg' ,
[ "http://example.com/b//c//d;p?q#blarg" , "http:/a/b/c/d" , "http://example.com/a/b/c/d" ] ,
'https://u:p@h.com/p/a/t/h?s#hash2' ,
[ "/foo/bar/baz" , "/../etc/passwd" , "/etc/passwd" ]
'https://u:p@h.com/p/a/t/h?s#hash2' ] ,
] . forEach ( function ( relativeTest ) {
[ 'http://example.com/b//c//d;p?q#blarg' ,
'https:/a/b/c/d' ,
'https://a/b/c/d' ] ,
[ 'http://example.com/b//c//d;p?q#blarg' ,
'http:#hash2' ,
'http://example.com/b//c//d;p?q#hash2' ] ,
[ 'http://example.com/b//c//d;p?q#blarg' ,
'http:/p/a/t/h?s#hash2' ,
'http://example.com/p/a/t/h?s#hash2' ] ,
[ 'http://example.com/b//c//d;p?q#blarg' ,
'http://u:p@h.com/p/a/t/h?s#hash2' ,
'http://u:p@h.com/p/a/t/h?s#hash2' ] ,
[ 'http://example.com/b//c//d;p?q#blarg' ,
'http:/a/b/c/d' ,
'http://example.com/a/b/c/d' ] ,
[ '/foo/bar/baz' , '/../etc/passwd' , '/etc/passwd' ]
] ;
relativeTests . forEach ( function ( relativeTest ) {
var a = url . resolve ( relativeTest [ 0 ] , relativeTest [ 1 ] ) ,
var a = url . resolve ( relativeTest [ 0 ] , relativeTest [ 1 ] ) ,
e = relativeTest [ 2 ] ;
e = relativeTest [ 2 ] ;
assert . equal ( e , a ,
assert . equal ( e , a ,
"resolve(" + [ relativeTest [ 0 ] , relativeTest [ 1 ] ] + ") == " + e +
'resolve(' + [ relativeTest [ 0 ] , relativeTest [ 1 ] ] + ') == ' + e +
"\n actual=" + a ) ;
'\n actual=' + a ) ;
} ) ;
} ) ;
@ -273,50 +295,51 @@ var bases = [
] ;
] ;
//[to, from, result]
//[to, from, result]
[
var relativeTests2 = [
// http://lists.w3.org/Archives/Public/uri/2004Feb/0114.html
// http://lists.w3.org/Archives/Public/uri/2004Feb/0114.html
[ '../c' , 'foo:a/b' , 'foo:c' ] ,
[ '../c' , 'foo:a/b' , 'foo:c' ] ,
[ 'foo:.' , 'foo:a' , 'foo:' ] ,
[ 'foo:.' , 'foo:a' , 'foo:' ] ,
[ '/foo/../../../bar' , 'zz:abc' , 'zz:/bar' ] ,
[ '/foo/../../../bar' , 'zz:abc' , 'zz:/bar' ] ,
[ '/foo/../bar' , 'zz:abc' , 'zz:/bar' ] ,
[ '/foo/../bar' , 'zz:abc' , 'zz:/bar' ] ,
[ 'foo/../../../bar' , 'zz:abc' , 'zz:bar' ] , // @isaacs Disagree. Not how web browsers resolve this.
// @isaacs Disagree. Not how web browsers resolve this.
[ 'foo/../../../bar' , 'zz:abc' , 'zz:bar' ] ,
// ['foo/../../../bar', 'zz:abc', 'zz:../../bar'], // @isaacs Added
// ['foo/../../../bar', 'zz:abc', 'zz:../../bar'], // @isaacs Added
[ 'foo/../bar' , 'zz:abc' , 'zz:bar' ] ,
[ 'foo/../bar' , 'zz:abc' , 'zz:bar' ] ,
[ 'zz:.' , 'zz:abc' , 'zz:' ] ,
[ 'zz:.' , 'zz:abc' , 'zz:' ] ,
[ '/.' , bases [ 0 ] , 'http://a/' ] ,
[ '/.' , bases [ 0 ] , 'http://a/' ] ,
[ '/.foo' , bases [ 0 ] , 'http://a/.foo' ] ,
[ '/.foo' , bases [ 0 ] , 'http://a/.foo' ] ,
[ '.foo' , bases [ 0 ] , 'http://a/b/c/.foo' ] ,
[ '.foo' , bases [ 0 ] , 'http://a/b/c/.foo' ] ,
// http://gbiv.com/protocols/uri/test/rel_examples1.html
// http://gbiv.com/protocols/uri/test/rel_examples1.html
// examples from RFC 2396
// examples from RFC 2396
[ 'g:h' , bases [ 0 ] , 'g:h' ] ,
[ 'g:h' , bases [ 0 ] , 'g:h' ] ,
[ 'g' , bases [ 0 ] , 'http://a/b/c/g' ] ,
[ 'g' , bases [ 0 ] , 'http://a/b/c/g' ] ,
[ './g' , bases [ 0 ] , 'http://a/b/c/g' ] ,
[ './g' , bases [ 0 ] , 'http://a/b/c/g' ] ,
[ 'g/' , bases [ 0 ] , 'http://a/b/c/g/' ] ,
[ 'g/' , bases [ 0 ] , 'http://a/b/c/g/' ] ,
[ '/g' , bases [ 0 ] , 'http://a/g' ] ,
[ '/g' , bases [ 0 ] , 'http://a/g' ] ,
[ '//g' , bases [ 0 ] , 'http://g' ] ,
[ '//g' , bases [ 0 ] , 'http://g' ] ,
// changed with RFC 2396bis
// changed with RFC 2396bis
//('?y' , bases[0], 'http://a/b/c/d;p?y'],
//('?y', bases[0], 'http://a/b/c/d;p?y'],
[ '?y' , bases [ 0 ] , 'http://a/b/c/d;p?y' ] ,
[ '?y' , bases [ 0 ] , 'http://a/b/c/d;p?y' ] ,
[ 'g?y' , bases [ 0 ] , 'http://a/b/c/g?y' ] ,
[ 'g?y' , bases [ 0 ] , 'http://a/b/c/g?y' ] ,
// changed with RFC 2396bis
// changed with RFC 2396bis
//('#s' , bases[0], CURRENT_DOC_URI + '#s'],
//('#s', bases[0], CURRENT_DOC_URI + '#s'],
[ '#s' , bases [ 0 ] , 'http://a/b/c/d;p?q#s' ] ,
[ '#s' , bases [ 0 ] , 'http://a/b/c/d;p?q#s' ] ,
[ 'g#s' , bases [ 0 ] , 'http://a/b/c/g#s' ] ,
[ 'g#s' , bases [ 0 ] , 'http://a/b/c/g#s' ] ,
[ 'g?y#s' , bases [ 0 ] , 'http://a/b/c/g?y#s' ] ,
[ 'g?y#s' , bases [ 0 ] , 'http://a/b/c/g?y#s' ] ,
[ ';x' , bases [ 0 ] , 'http://a/b/c/;x' ] ,
[ ';x' , bases [ 0 ] , 'http://a/b/c/;x' ] ,
[ 'g;x' , bases [ 0 ] , 'http://a/b/c/g;x' ] ,
[ 'g;x' , bases [ 0 ] , 'http://a/b/c/g;x' ] ,
[ 'g;x?y#s' , bases [ 0 ] , 'http://a/b/c/g;x?y#s' ] ,
[ 'g;x?y#s' , bases [ 0 ] , 'http://a/b/c/g;x?y#s' ] ,
// changed with RFC 2396bis
// changed with RFC 2396bis
//('' , bases[0], CURRENT_DOC_URI],
//('', bases[0], CURRENT_DOC_URI],
[ '' , bases [ 0 ] , 'http://a/b/c/d;p?q' ] ,
[ '' , bases [ 0 ] , 'http://a/b/c/d;p?q' ] ,
[ '.' , bases [ 0 ] , 'http://a/b/c/' ] ,
[ '.' , bases [ 0 ] , 'http://a/b/c/' ] ,
[ './' , bases [ 0 ] , 'http://a/b/c/' ] ,
[ './' , bases [ 0 ] , 'http://a/b/c/' ] ,
[ '..' , bases [ 0 ] , 'http://a/b/' ] ,
[ '..' , bases [ 0 ] , 'http://a/b/' ] ,
[ '../' , bases [ 0 ] , 'http://a/b/' ] ,
[ '../' , bases [ 0 ] , 'http://a/b/' ] ,
[ '../g' , bases [ 0 ] , 'http://a/b/g' ] ,
[ '../g' , bases [ 0 ] , 'http://a/b/g' ] ,
[ '../..' , bases [ 0 ] , 'http://a/' ] ,
[ '../..' , bases [ 0 ] , 'http://a/' ] ,
[ '../../' , bases [ 0 ] , 'http://a/' ] ,
[ '../../' , bases [ 0 ] , 'http://a/' ] ,
[ '../../g' , bases [ 0 ] , 'http://a/g' ] ,
[ '../../g' , bases [ 0 ] , 'http://a/g' ] ,
[ '../../../g' , bases [ 0 ] , ( 'http://a/../g' , 'http://a/g' ) ] ,
[ '../../../g' , bases [ 0 ] , ( 'http://a/../g' , 'http://a/g' ) ] ,
[ '../../../../g' , bases [ 0 ] , ( 'http://a/../../g' , 'http://a/g' ) ] ,
[ '../../../../g' , bases [ 0 ] , ( 'http://a/../../g' , 'http://a/g' ) ] ,
@ -347,82 +370,85 @@ var bases = [
// http://gbiv.com/protocols/uri/test/rel_examples2.html
// http://gbiv.com/protocols/uri/test/rel_examples2.html
// slashes in base URI's query args
// slashes in base URI's query args
[ 'g' , bases [ 1 ] , 'http://a/b/c/g' ] ,
[ 'g' , bases [ 1 ] , 'http://a/b/c/g' ] ,
[ './g' , bases [ 1 ] , 'http://a/b/c/g' ] ,
[ './g' , bases [ 1 ] , 'http://a/b/c/g' ] ,
[ 'g/' , bases [ 1 ] , 'http://a/b/c/g/' ] ,
[ 'g/' , bases [ 1 ] , 'http://a/b/c/g/' ] ,
[ '/g' , bases [ 1 ] , 'http://a/g' ] ,
[ '/g' , bases [ 1 ] , 'http://a/g' ] ,
[ '//g' , bases [ 1 ] , 'http://g' ] ,
[ '//g' , bases [ 1 ] , 'http://g' ] ,
// changed in RFC 2396bis
// changed in RFC 2396bis
//('?y' , bases[1], 'http://a/b/c/?y'],
//('?y', bases[1], 'http://a/b/c/?y'],
[ '?y' , bases [ 1 ] , 'http://a/b/c/d;p?y' ] ,
[ '?y' , bases [ 1 ] , 'http://a/b/c/d;p?y' ] ,
[ 'g?y' , bases [ 1 ] , 'http://a/b/c/g?y' ] ,
[ 'g?y' , bases [ 1 ] , 'http://a/b/c/g?y' ] ,
[ 'g?y/./x' , bases [ 1 ] , 'http://a/b/c/g?y/./x' ] ,
[ 'g?y/./x' , bases [ 1 ] , 'http://a/b/c/g?y/./x' ] ,
[ 'g?y/../x' , bases [ 1 ] , 'http://a/b/c/g?y/../x' ] ,
[ 'g?y/../x' , bases [ 1 ] , 'http://a/b/c/g?y/../x' ] ,
[ 'g#s' , bases [ 1 ] , 'http://a/b/c/g#s' ] ,
[ 'g#s' , bases [ 1 ] , 'http://a/b/c/g#s' ] ,
[ 'g#s/./x' , bases [ 1 ] , 'http://a/b/c/g#s/./x' ] ,
[ 'g#s/./x' , bases [ 1 ] , 'http://a/b/c/g#s/./x' ] ,
[ 'g#s/../x' , bases [ 1 ] , 'http://a/b/c/g#s/../x' ] ,
[ 'g#s/../x' , bases [ 1 ] , 'http://a/b/c/g#s/../x' ] ,
[ './' , bases [ 1 ] , 'http://a/b/c/' ] ,
[ './' , bases [ 1 ] , 'http://a/b/c/' ] ,
[ '../' , bases [ 1 ] , 'http://a/b/' ] ,
[ '../' , bases [ 1 ] , 'http://a/b/' ] ,
[ '../g' , bases [ 1 ] , 'http://a/b/g' ] ,
[ '../g' , bases [ 1 ] , 'http://a/b/g' ] ,
[ '../../' , bases [ 1 ] , 'http://a/' ] ,
[ '../../' , bases [ 1 ] , 'http://a/' ] ,
[ '../../g' , bases [ 1 ] , 'http://a/g' ] ,
[ '../../g' , bases [ 1 ] , 'http://a/g' ] ,
// http://gbiv.com/protocols/uri/test/rel_examples3.html
// http://gbiv.com/protocols/uri/test/rel_examples3.html
// slashes in path params
// slashes in path params
// all of these changed in RFC 2396bis
// all of these changed in RFC 2396bis
[ 'g' , bases [ 2 ] , 'http://a/b/c/d;p=1/g' ] ,
[ 'g' , bases [ 2 ] , 'http://a/b/c/d;p=1/g' ] ,
[ './g' , bases [ 2 ] , 'http://a/b/c/d;p=1/g' ] ,
[ './g' , bases [ 2 ] , 'http://a/b/c/d;p=1/g' ] ,
[ 'g/' , bases [ 2 ] , 'http://a/b/c/d;p=1/g/' ] ,
[ 'g/' , bases [ 2 ] , 'http://a/b/c/d;p=1/g/' ] ,
[ 'g?y' , bases [ 2 ] , 'http://a/b/c/d;p=1/g?y' ] ,
[ 'g?y' , bases [ 2 ] , 'http://a/b/c/d;p=1/g?y' ] ,
[ ';x' , bases [ 2 ] , 'http://a/b/c/d;p=1/;x' ] ,
[ ';x' , bases [ 2 ] , 'http://a/b/c/d;p=1/;x' ] ,
[ 'g;x' , bases [ 2 ] , 'http://a/b/c/d;p=1/g;x' ] ,
[ 'g;x' , bases [ 2 ] , 'http://a/b/c/d;p=1/g;x' ] ,
[ 'g;x=1/./y' , bases [ 2 ] , 'http://a/b/c/d;p=1/g;x=1/y' ] ,
[ 'g;x=1/./y' , bases [ 2 ] , 'http://a/b/c/d;p=1/g;x=1/y' ] ,
[ 'g;x=1/../y' , bases [ 2 ] , 'http://a/b/c/d;p=1/y' ] ,
[ 'g;x=1/../y' , bases [ 2 ] , 'http://a/b/c/d;p=1/y' ] ,
[ './' , bases [ 2 ] , 'http://a/b/c/d;p=1/' ] ,
[ './' , bases [ 2 ] , 'http://a/b/c/d;p=1/' ] ,
[ '../' , bases [ 2 ] , 'http://a/b/c/' ] ,
[ '../' , bases [ 2 ] , 'http://a/b/c/' ] ,
[ '../g' , bases [ 2 ] , 'http://a/b/c/g' ] ,
[ '../g' , bases [ 2 ] , 'http://a/b/c/g' ] ,
[ '../../' , bases [ 2 ] , 'http://a/b/' ] ,
[ '../../' , bases [ 2 ] , 'http://a/b/' ] ,
[ '../../g' , bases [ 2 ] , 'http://a/b/g' ] ,
[ '../../g' , bases [ 2 ] , 'http://a/b/g' ] ,
// http://gbiv.com/protocols/uri/test/rel_examples4.html
// http://gbiv.com/protocols/uri/test/rel_examples4.html
// double and triple slash, unknown scheme
// double and triple slash, unknown scheme
[ 'g:h' , bases [ 3 ] , 'g:h' ] ,
[ 'g:h' , bases [ 3 ] , 'g:h' ] ,
[ 'g' , bases [ 3 ] , 'fred:///s//a/b/g' ] ,
[ 'g' , bases [ 3 ] , 'fred:///s//a/b/g' ] ,
[ './g' , bases [ 3 ] , 'fred:///s//a/b/g' ] ,
[ './g' , bases [ 3 ] , 'fred:///s//a/b/g' ] ,
[ 'g/' , bases [ 3 ] , 'fred:///s//a/b/g/' ] ,
[ 'g/' , bases [ 3 ] , 'fred:///s//a/b/g/' ] ,
[ '/g' , bases [ 3 ] , 'fred:///g' ] , // may change to fred:///s//a/g
[ '/g' , bases [ 3 ] , 'fred:///g' ] , // may change to fred:///s//a/g
[ '//g' , bases [ 3 ] , 'fred://g' ] , // may change to fred:///s//g
[ '//g' , bases [ 3 ] , 'fred://g' ] , // may change to fred:///s//g
[ '//g/x' , bases [ 3 ] , 'fred://g/x' ] , // may change to fred:///s//g/x
[ '//g/x' , bases [ 3 ] , 'fred://g/x' ] , // may change to fred:///s//g/x
[ '///g' , bases [ 3 ] , 'fred:///g' ] ,
[ '///g' , bases [ 3 ] , 'fred:///g' ] ,
[ './' , bases [ 3 ] , 'fred:///s//a/b/' ] ,
[ './' , bases [ 3 ] , 'fred:///s//a/b/' ] ,
[ '../' , bases [ 3 ] , 'fred:///s//a/' ] ,
[ '../' , bases [ 3 ] , 'fred:///s//a/' ] ,
[ '../g' , bases [ 3 ] , 'fred:///s//a/g' ] ,
[ '../g' , bases [ 3 ] , 'fred:///s//a/g' ] ,
[ '../../' , bases [ 3 ] , 'fred:///s//' ] ,
[ '../../' , bases [ 3 ] , 'fred:///s//' ] ,
[ '../../g' , bases [ 3 ] , 'fred:///s//g' ] ,
[ '../../g' , bases [ 3 ] , 'fred:///s//g' ] ,
[ '../../../g' , bases [ 3 ] , 'fred:///s/g' ] ,
[ '../../../g' , bases [ 3 ] , 'fred:///s/g' ] ,
[ '../../../../g' , bases [ 3 ] , 'fred:///g' ] , // may change to fred:///s//a/../../../g
// may change to fred:///s//a/../../../g
[ '../../../../g' , bases [ 3 ] , 'fred:///g' ] ,
// http://gbiv.com/protocols/uri/test/rel_examples5.html
// http://gbiv.com/protocols/uri/test/rel_examples5.html
// double and triple slash, well-known scheme
// double and triple slash, well-known scheme
[ 'g:h' , bases [ 4 ] , 'g:h' ] ,
[ 'g:h' , bases [ 4 ] , 'g:h' ] ,
[ 'g' , bases [ 4 ] , 'http:///s//a/b/g' ] ,
[ 'g' , bases [ 4 ] , 'http:///s//a/b/g' ] ,
[ './g' , bases [ 4 ] , 'http:///s//a/b/g' ] ,
[ './g' , bases [ 4 ] , 'http:///s//a/b/g' ] ,
[ 'g/' , bases [ 4 ] , 'http:///s//a/b/g/' ] ,
[ 'g/' , bases [ 4 ] , 'http:///s//a/b/g/' ] ,
[ '/g' , bases [ 4 ] , 'http:///g' ] , // may change to http:///s//a/g
[ '/g' , bases [ 4 ] , 'http:///g' ] , // may change to http:///s//a/g
[ '//g' , bases [ 4 ] , 'http://g' ] , // may change to http:///s//g
[ '//g' , bases [ 4 ] , 'http://g' ] , // may change to http:///s//g
[ '//g/x' , bases [ 4 ] , 'http://g/x' ] , // may change to http:///s//g/x
[ '//g/x' , bases [ 4 ] , 'http://g/x' ] , // may change to http:///s//g/x
[ '///g' , bases [ 4 ] , 'http:///g' ] ,
[ '///g' , bases [ 4 ] , 'http:///g' ] ,
[ './' , bases [ 4 ] , 'http:///s//a/b/' ] ,
[ './' , bases [ 4 ] , 'http:///s//a/b/' ] ,
[ '../' , bases [ 4 ] , 'http:///s//a/' ] ,
[ '../' , bases [ 4 ] , 'http:///s//a/' ] ,
[ '../g' , bases [ 4 ] , 'http:///s//a/g' ] ,
[ '../g' , bases [ 4 ] , 'http:///s//a/g' ] ,
[ '../../' , bases [ 4 ] , 'http:///s//' ] ,
[ '../../' , bases [ 4 ] , 'http:///s//' ] ,
[ '../../g' , bases [ 4 ] , 'http:///s//g' ] ,
[ '../../g' , bases [ 4 ] , 'http:///s//g' ] ,
[ '../../../g' , bases [ 4 ] , 'http:///s/g' ] , // may change to http:///s//a/../../g
// may change to http:///s//a/../../g
[ '../../../../g' , bases [ 4 ] , 'http:///g' ] , // may change to http:///s//a/../../../g
[ '../../../g' , bases [ 4 ] , 'http:///s/g' ] ,
// may change to http:///s//a/../../../g
[ '../../../../g' , bases [ 4 ] , 'http:///g' ] ,
// from Dan Connelly's tests in http://www.w3.org/2000/10/swap/uripath.py
// from Dan Connelly's tests in http://www.w3.org/2000/10/swap/uripath.py
[ "bar:abc" , "foo:xyz" , "bar:abc" ] ,
[ 'bar:abc' , 'foo:xyz' , 'bar:abc' ] ,
[ '../abc' , 'http://example/x/y/z' , 'http://example/x/abc' ] ,
[ '../abc' , 'http://example/x/y/z' , 'http://example/x/abc' ] ,
[ 'http://example/x/abc' , 'http://example2/x/y/z' , 'http://example/x/abc' ] ,
[ 'http://example/x/abc' , 'http://example2/x/y/z' , 'http://example/x/abc' ] ,
[ '../r' , 'http://ex/x/y/z' , 'http://ex/x/r' ] ,
[ '../r' , 'http://ex/x/y/z' , 'http://ex/x/r' ] ,
@ -434,7 +460,9 @@ var bases = [
[ '' , 'http://ex/x/y/' , 'http://ex/x/y/' ] ,
[ '' , 'http://ex/x/y/' , 'http://ex/x/y/' ] ,
[ '' , 'http://ex/x/y/pdq' , 'http://ex/x/y/pdq' ] ,
[ '' , 'http://ex/x/y/pdq' , 'http://ex/x/y/pdq' ] ,
[ 'z/' , 'http://ex/x/y/' , 'http://ex/x/y/z/' ] ,
[ 'z/' , 'http://ex/x/y/' , 'http://ex/x/y/z/' ] ,
[ '#Animal' , 'file:/swap/test/animal.rdf' , 'file:/swap/test/animal.rdf#Animal' ] ,
[ '#Animal' ,
'file:/swap/test/animal.rdf' ,
'file:/swap/test/animal.rdf#Animal' ] ,
[ '../abc' , 'file:/e/x/y/z' , 'file:/e/x/abc' ] ,
[ '../abc' , 'file:/e/x/y/z' , 'file:/e/x/abc' ] ,
[ '/example/x/abc' , 'file:/example2/x/y/z' , 'file:/example/x/abc' ] ,
[ '/example/x/abc' , 'file:/example2/x/y/z' , 'file:/example/x/abc' ] ,
[ '../r' , 'file:/ex/x/y/z' , 'file:/ex/x/r' ] ,
[ '../r' , 'file:/ex/x/y/z' , 'file:/ex/x/r' ] ,
@ -448,12 +476,16 @@ var bases = [
[ '' , 'file:/ex/x/y/' , 'file:/ex/x/y/' ] ,
[ '' , 'file:/ex/x/y/' , 'file:/ex/x/y/' ] ,
[ '' , 'file:/ex/x/y/pdq' , 'file:/ex/x/y/pdq' ] ,
[ '' , 'file:/ex/x/y/pdq' , 'file:/ex/x/y/pdq' ] ,
[ 'z/' , 'file:/ex/x/y/' , 'file:/ex/x/y/z/' ] ,
[ 'z/' , 'file:/ex/x/y/' , 'file:/ex/x/y/z/' ] ,
[ 'file://meetings.example.com/cal#m1' , 'file:/devel/WWW/2000/10/swap/test/reluri-1.n3' , 'file://meetings.example.com/cal#m1' ] ,
[ 'file://meetings.example.com/cal#m1' ,
[ 'file://meetings.example.com/cal#m1' , 'file:/home/connolly/w3ccvs/WWW/2000/10/swap/test/reluri-1.n3' , 'file://meetings.example.com/cal#m1' ] ,
'file:/devel/WWW/2000/10/swap/test/reluri-1.n3' ,
'file://meetings.example.com/cal#m1' ] ,
[ 'file://meetings.example.com/cal#m1' ,
'file:/home/connolly/w3ccvs/WWW/2000/10/swap/test/reluri-1.n3' ,
'file://meetings.example.com/cal#m1' ] ,
[ './#blort' , 'file:/some/dir/foo' , 'file:/some/dir/#blort' ] ,
[ './#blort' , 'file:/some/dir/foo' , 'file:/some/dir/#blort' ] ,
[ './#' , 'file:/some/dir/foo' , 'file:/some/dir/#' ] ,
[ './#' , 'file:/some/dir/foo' , 'file:/some/dir/#' ] ,
// Ryan Lee
// Ryan Lee
[ "./" , "http://example/x/abc.efg" , "http://example/x/" ] ,
[ './' , 'http://example/x/abc.efg' , 'http://example/x/' ] ,
// Graham Klyne's tests
// Graham Klyne's tests
@ -465,11 +497,15 @@ var bases = [
[ './p=q:r' , 'http://ex/x/y' , 'http://ex/x/p=q:r' ] ,
[ './p=q:r' , 'http://ex/x/y' , 'http://ex/x/p=q:r' ] ,
[ '?pp/rr' , 'http://ex/x/y?pp/qq' , 'http://ex/x/y?pp/rr' ] ,
[ '?pp/rr' , 'http://ex/x/y?pp/qq' , 'http://ex/x/y?pp/rr' ] ,
[ 'y/z' , 'http://ex/x/y?pp/qq' , 'http://ex/x/y/z' ] ,
[ 'y/z' , 'http://ex/x/y?pp/qq' , 'http://ex/x/y/z' ] ,
[ 'local/qual@domain.org#frag' , 'mailto:local' , 'mailto:local/qual@domain.org#frag' ] ,
[ 'local/qual@domain.org#frag' ,
[ 'more/qual2@domain2.org#frag' , 'mailto:local/qual1@domain1.org' , 'mailto:local/more/qual2@domain2.org#frag' ] ,
'mailto:local' ,
'mailto:local/qual@domain.org#frag' ] ,
[ 'more/qual2@domain2.org#frag' ,
'mailto:local/qual1@domain1.org' ,
'mailto:local/more/qual2@domain2.org#frag' ] ,
[ 'y?q' , 'http://ex/x/y?q' , 'http://ex/x/y?q' ] ,
[ 'y?q' , 'http://ex/x/y?q' , 'http://ex/x/y?q' ] ,
[ '/x/y?q' , 'http://ex?p' , 'http://ex/x/y?q' ] ,
[ '/x/y?q' , 'http://ex?p' , 'http://ex/x/y?q' ] ,
[ 'c/d' , 'foo:a/b' , 'foo:a/c/d' ] ,
[ 'c/d' , 'foo:a/b' , 'foo:a/c/d' ] ,
[ '/c/d' , 'foo:a/b' , 'foo:/c/d' ] ,
[ '/c/d' , 'foo:a/b' , 'foo:/c/d' ] ,
[ '' , 'foo:a/b?c#d' , 'foo:a/b?c' ] ,
[ '' , 'foo:a/b?c#d' , 'foo:a/b?c' ] ,
[ 'b/c' , 'foo:a' , 'foo:b/c' ] ,
[ 'b/c' , 'foo:a' , 'foo:b/c' ] ,
@ -494,8 +530,12 @@ var bases = [
// 70-77
// 70-77
[ 'local2@domain2' , 'mailto:local1@domain1?query1' , 'mailto:local2@domain2' ] ,
[ 'local2@domain2' , 'mailto:local1@domain1?query1' , 'mailto:local2@domain2' ] ,
[ 'local2@domain2?query2' , 'mailto:local1@domain1' , 'mailto:local2@domain2?query2' ] ,
[ 'local2@domain2?query2' ,
[ 'local2@domain2?query2' , 'mailto:local1@domain1?query1' , 'mailto:local2@domain2?query2' ] ,
'mailto:local1@domain1' ,
'mailto:local2@domain2?query2' ] ,
[ 'local2@domain2?query2' ,
'mailto:local1@domain1?query1' ,
'mailto:local2@domain2?query2' ] ,
[ '?query2' , 'mailto:local@domain?query1' , 'mailto:local@domain?query2' ] ,
[ '?query2' , 'mailto:local@domain?query1' , 'mailto:local@domain?query2' ] ,
[ 'local@domain?query2' , 'mailto:?query1' , 'mailto:local@domain?query2' ] ,
[ 'local@domain?query2' , 'mailto:?query1' , 'mailto:local@domain?query2' ] ,
[ '?query2' , 'mailto:local@domain?query1' , 'mailto:local@domain?query2' ] ,
[ '?query2' , 'mailto:local@domain?query1' , 'mailto:local@domain?query2' ] ,
@ -503,19 +543,26 @@ var bases = [
[ 'http://example/a/b#c/../d' , 'foo:bar' , 'http://example/a/b#c/../d' ] ,
[ 'http://example/a/b#c/../d' , 'foo:bar' , 'http://example/a/b#c/../d' ] ,
// 82-88
// 82-88
// ['http:this', 'http://example.org/base/uri', 'http:this'], // @isaacs Disagree. Not how browsers do it.
// @isaacs Disagree. Not how browsers do it.
[ 'http:this' , 'http://example.org/base/uri' , "http://example.org/base/this" ] , // @isaacs Added
// ['http:this', 'http://example.org/base/uri', 'http:this'],
// @isaacs Added
[ 'http:this' , 'http://example.org/base/uri' , 'http://example.org/base/this' ] ,
[ 'http:this' , 'http:base' , 'http:this' ] ,
[ 'http:this' , 'http:base' , 'http:this' ] ,
[ './/g' , 'f:/a' , 'f://g' ] ,
[ './/g' , 'f:/a' , 'f://g' ] ,
[ 'b/c//d/e' , 'f://example.org/base/a' , 'f://example.org/base/b/c//d/e' ] ,
[ 'b/c//d/e' , 'f://example.org/base/a' , 'f://example.org/base/b/c//d/e' ] ,
[ 'm2@example.ord/c2@example.org' , 'mid:m@example.ord/c@example.org' , 'mid:m@example.ord/m2@example.ord/c2@example.org' ] ,
[ 'm2@example.ord/c2@example.org' ,
[ 'mini1.xml' , 'file:///C:/DEV/Haskell/lib/HXmlToolbox-3.01/examples/' , 'file:///C:/DEV/Haskell/lib/HXmlToolbox-3.01/examples/mini1.xml' ] ,
'mid:m@example.ord/c@example.org' ,
'mid:m@example.ord/m2@example.ord/c2@example.org' ] ,
[ 'mini1.xml' ,
'file:///C:/DEV/Haskell/lib/HXmlToolbox-3.01/examples/' ,
'file:///C:/DEV/Haskell/lib/HXmlToolbox-3.01/examples/mini1.xml' ] ,
[ '../b/c' , 'foo:a/y/z' , 'foo:a/b/c' ]
[ '../b/c' , 'foo:a/y/z' , 'foo:a/b/c' ]
] . forEach ( function ( relativeTest ) {
] ;
relativeTests2 . forEach ( function ( relativeTest ) {
var a = url . resolve ( relativeTest [ 1 ] , relativeTest [ 0 ] ) ,
var a = url . resolve ( relativeTest [ 1 ] , relativeTest [ 0 ] ) ,
e = relativeTest [ 2 ] ;
e = relativeTest [ 2 ] ;
assert . equal ( e , a ,
assert . equal ( e , a ,
"resolve(" + [ relativeTest [ 1 ] , relativeTest [ 0 ] ] + ") == " + e +
'resolve(' + [ relativeTest [ 1 ] , relativeTest [ 0 ] ] + ') == ' + e +
"\n actual=" + a ) ;
'\n actual=' + a ) ;
} ) ;
} ) ;