netwerk/test/unit/test_bug388281.js

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

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.)

     1 function run_test() {
     2   const ios = Cc["@mozilla.org/network/io-service;1"].
     3     getService(Ci.nsIIOService);
     5   var uri = ios.newURI("http://foo.com/file.txt", null, null);
     6   uri.port = 90;
     7   do_check_eq(uri.hostPort, "foo.com:90");
     9   uri = ios.newURI("http://foo.com:10/file.txt", null, null);
    10   uri.port = 500;
    11   do_check_eq(uri.hostPort, "foo.com:500");
    13   uri = ios.newURI("http://foo.com:5000/file.txt", null, null);
    14   uri.port = 20;
    15   do_check_eq(uri.hostPort, "foo.com:20");
    17   uri = ios.newURI("http://foo.com:5000/file.txt", null, null);
    18   uri.port = -1;
    19   do_check_eq(uri.hostPort, "foo.com");
    21   uri = ios.newURI("http://foo.com:5000/file.txt", null, null);
    22   uri.port = 80;
    23   do_check_eq(uri.hostPort, "foo.com");
    24 }

mercurial