diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /netwerk/test/urltests.dat | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'netwerk/test/urltests.dat')
-rw-r--r-- | netwerk/test/urltests.dat | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/netwerk/test/urltests.dat b/netwerk/test/urltests.dat new file mode 100644 index 000000000..d1f42fc76 --- /dev/null +++ b/netwerk/test/urltests.dat @@ -0,0 +1,43 @@ +# Any blank lines and those beginning with # are comments and +# ignored. To add additional test cases that could potentially +# break URL parsing in mozilla add the input URL on a new line +# and follow it with the expected output. Then run urltest on +# this file and hopefully the expected output should match the +# one from the program. +# - Gagan Saksena 03/28/00 + +http://username:password@hostname.com:80/pathname/./more/stuff/../path +http,username:password,hostname.com,80,,/pathname/more/path + +username@host:8080/path +,username,host,8080,,/path + +http://gagan/ +http,,gagan,-1,,/ + +scheme:host/netlib +scheme,,host,-1,,/netlib + +mailbox:///foo +mailbox,,,-1,,/foo + +scheme:user@hostname.edu:80/pathname +scheme,user,hostname.edu,80,,/pathname + +http://username:password@hostname:80/pathname +http,username:password,hostname,80,,/pathname + +resource:/pathname +resource,,,-1,,/pathname + +ftp://uname%here.com:pwd@there.com/aPath/a.html +ftp,uname%here.com:pwd,there.com,-1,,/aPath/a.html + +http://www.inf.bme.hu?foo=bar +http,,www.inf.bme.hu,-1,foo=bar,/?foo=bar + +http://test.com/aPath/a.html#/1/2 +http,,test.com,-1,,/aPath/a.html#/1/2 + +http://user:pass@ipaddres:2/get?foo/something +http,user:pass,ipaddres,2,foo/something,/get?foo/something |