mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
46 lines
1.6 KiB
JavaScript
46 lines
1.6 KiB
JavaScript
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
function run_test() {
|
|
do_test_pending();
|
|
|
|
function StreamListener() {}
|
|
|
|
StreamListener.prototype = {
|
|
QueryInterface: function(aIID) {
|
|
if (aIID.equals(Components.interfaces.nsIStreamListener) ||
|
|
aIID.equals(Components.interfaces.nsIRequestObserver) ||
|
|
aIID.equals(Components.interfaces.nsISupports))
|
|
return this;
|
|
throw Components.results.NS_NOINTERFACE;
|
|
},
|
|
|
|
onStartRequest: function(aRequest, aContext) {},
|
|
|
|
onStopRequest: function(aRequest, aContext, aStatusCode) {
|
|
// Make sure we can catch the error NS_ERROR_FILE_NOT_FOUND here.
|
|
do_check_eq(aStatusCode, Components.results.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 = Components.classes["@mozilla.org/network/io-service;1"]
|
|
.getService(Components.interfaces.nsIIOService);
|
|
|
|
// This file does not exist.
|
|
let file = do_get_file("_NOT_EXIST_.txt", true);
|
|
do_check_false(file.exists());
|
|
|
|
let channel = ios.newChannelFromURI2(ios.newFileURI(file),
|
|
null, // aLoadingNode
|
|
Services.scriptSecurityManager.getSystemPrincipal(),
|
|
null, // aTriggeringPrincipal
|
|
Ci.nsILoadInfo.SEC_NORMAL,
|
|
Ci.nsIContentPolicy.TYPE_OTHER);
|
|
channel.asyncOpen(listener, null);
|
|
}
|