netwerk/test/unit/test_bug388281.js

Wed, 31 Dec 2014 06:55:46 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:46 +0100
changeset 1
ca08bd8f51b2
permissions
-rw-r--r--

Added tag TORBROWSER_REPLICA for changeset 6474c204b198

     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