Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
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 | } |