netwerk/test/unit/test_aboutblank.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   var ioServ = Components.classes["@mozilla.org/network/io-service;1"]
     3                          .getService(Components.interfaces.nsIIOService);
     5   var base = ioServ.newURI("http://www.example.com", null, null);
     7   var about1 = ioServ.newURI("about:blank", null, null);
     8   var about2 = ioServ.newURI("about:blank", null, base);
    10   var chan1 = ioServ.newChannelFromURI(about1)
    11                     .QueryInterface(Components.interfaces.nsIPropertyBag2);
    12   var chan2 = ioServ.newChannelFromURI(about2)
    13                     .QueryInterface(Components.interfaces.nsIPropertyBag2);
    15   var haveProp = false;
    16   var propVal = null;
    17   try {
    18     propVal = chan1.getPropertyAsInterface("baseURI",
    19                                            Components.interfaces.nsIURI);
    20     haveProp = true;
    21   } catch (e if e.result == Components.results.NS_ERROR_NOT_AVAILABLE) {
    22     // Property shouldn't be there.
    23   }
    24   do_check_eq(propVal, null);
    25   do_check_eq(haveProp, false);
    26   do_check_eq(chan2.getPropertyAsInterface("baseURI",
    27                                            Components.interfaces.nsIURI),
    28               base);
    29 }

mercurial