Wed, 31 Dec 2014 06:55:46 +0100
Added tag TORBROWSER_REPLICA for changeset 6474c204b198
michael@0 | 1 | function run_test() { |
michael@0 | 2 | const ios = Cc["@mozilla.org/network/io-service;1"]. |
michael@0 | 3 | getService(Ci.nsIIOService); |
michael@0 | 4 | |
michael@0 | 5 | var uri = ios.newURI("http://foo.com/file.txt", null, null); |
michael@0 | 6 | uri.port = 90; |
michael@0 | 7 | do_check_eq(uri.hostPort, "foo.com:90"); |
michael@0 | 8 | |
michael@0 | 9 | uri = ios.newURI("http://foo.com:10/file.txt", null, null); |
michael@0 | 10 | uri.port = 500; |
michael@0 | 11 | do_check_eq(uri.hostPort, "foo.com:500"); |
michael@0 | 12 | |
michael@0 | 13 | uri = ios.newURI("http://foo.com:5000/file.txt", null, null); |
michael@0 | 14 | uri.port = 20; |
michael@0 | 15 | do_check_eq(uri.hostPort, "foo.com:20"); |
michael@0 | 16 | |
michael@0 | 17 | uri = ios.newURI("http://foo.com:5000/file.txt", null, null); |
michael@0 | 18 | uri.port = -1; |
michael@0 | 19 | do_check_eq(uri.hostPort, "foo.com"); |
michael@0 | 20 | |
michael@0 | 21 | uri = ios.newURI("http://foo.com:5000/file.txt", null, null); |
michael@0 | 22 | uri.port = 80; |
michael@0 | 23 | do_check_eq(uri.hostPort, "foo.com"); |
michael@0 | 24 | } |