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 | ad18d877ddd2a44d98fa12ccd3dbbcf4d0ac4299 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /netwerk/test/urlparse_win.dat | |
parent | 15477ed9af4859dacb069040b5d4de600803d3bc (diff) | |
download | uxp-ad18d877ddd2a44d98fa12ccd3dbbcf4d0ac4299.tar.gz |
Add m-esr52 at 52.6.0
Diffstat (limited to 'netwerk/test/urlparse_win.dat')
-rw-r--r-- | netwerk/test/urlparse_win.dat | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/netwerk/test/urlparse_win.dat b/netwerk/test/urlparse_win.dat new file mode 100644 index 0000000000..cf418fefb0 --- /dev/null +++ b/netwerk/test/urlparse_win.dat @@ -0,0 +1,60 @@ +# 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 for the standard URL +# parser and one line for the case when the URL is really +# created. Then run urltest with the -std option and without it +# on this file and hopefully the expected output should match +# the one from the program. +# - Gagan Saksena 03/28/00 +# +# This version is specifically for PC platforms like Windows or OS/2. +# It has testcases for the file protocol targeting typical +# drive:/path filesystems +# + +# testing different versions of file urls +file:c: +file,,,,-1,/,c:,,,,,file:///c%3A +file,,,,-1,/c:/,,,,,,file:///c:/ + +file:c:/ +file,,,,-1,/c:/,,,,,,file:///c:/ +file,,,,-1,/c:/,,,,,,file:///c:/ + +file:/c:/ +file,,,,-1,/c:/,,,,,,file:///c:/ +file,,,,-1,/c:/,,,,,,file:///c:/ + +file://c:/ +file,,,,-1,/c:/,,,,,,file:///c:/ +file,,,,-1,/c:/,,,,,,file:///c:/ + +file:///c:/ +file,,,,-1,/c:/,,,,,,file:///c:/ +file,,,,-1,/c:/,,,,,,file:///c:/ + +# testing UNC filepaths +file:server/path +file,,,server,-1,/,path,,,,,file://server/path +file,,,,-1,///server/,path,,,,,file://///server/path + +file:/server/path +file,,,,-1,/server/,path,,,,,file:///server/path +file,,,,-1,///server/,path,,,,,file://///server/path + +file://server/path +file,,,server,-1,/,path,,,,,file://server/path +file,,,server,-1,///,path,,,,,file://server///path + +file:///server/path +file,,,,-1,/server/,path,,,,,file:///server/path +file,,,,-1,///server/,path,,,,,file://///server/path + +file:////server/path +file,,,,-1,//server/,path,,,,,file:////server/path +file,,,,-1,///server/,path,,,,,file://///server/path + +file://///server/path +file,,,,-1,///server/,path,,,,,file://///server/path +file,,,,-1,///server/,path,,,,,file://///server/path |