gecko-dev/netwerk/test/unit/test_bug282432.js
Jonathan Kingston 3421b8fcff Bug 1520868 - Replacing AsyncOpen2 with AsyncOpen always r=valentin
Replacing js and text occurences of asyncOpen2
Replacing open2 with open

Differential Revision: https://phabricator.services.mozilla.com/D16885

--HG--
rename : layout/style/test/test_asyncopen2.html => layout/style/test/test_asyncopen.html
extra : moz-landing-system : lando
2019-02-12 16:08:25 +00:00

43 lines
1.2 KiB
JavaScript

const {NetUtil} = ChromeUtils.import("resource://gre/modules/NetUtil.jsm");
function run_test() {
do_test_pending();
function StreamListener() {}
StreamListener.prototype = {
QueryInterface: function(aIID) {
if (aIID.equals(Ci.nsIStreamListener) ||
aIID.equals(Ci.nsIRequestObserver) ||
aIID.equals(Ci.nsISupports))
return this;
throw Cr.NS_NOINTERFACE;
},
onStartRequest: function(aRequest, aContext) {},
onStopRequest: function(aRequest, aContext, aStatusCode) {
// Make sure we can catch the error NS_ERROR_FILE_NOT_FOUND here.
Assert.equal(aStatusCode, Cr.NS_ERROR_FILE_NOT_FOUND);
do_test_finished();
},
onDataAvailable: function(aRequest, aContext, aStream, aOffset, aCount) {
do_throw("The channel must not call onDataAvailable().");
}
};
let listener = new StreamListener();
let ios = Cc["@mozilla.org/network/io-service;1"]
.getService(Ci.nsIIOService);
// This file does not exist.
let file = do_get_file("_NOT_EXIST_.txt", true);
Assert.ok(!file.exists());
let channel = NetUtil.newChannel({
uri: ios.newFileURI(file),
loadUsingSystemPrincipal: true
});
channel.asyncOpen(listener);
}