mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-08 01:31:00 +00:00
68 lines
2.1 KiB
JavaScript
68 lines
2.1 KiB
JavaScript
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
function inChildProcess() {
|
|
return Cc["@mozilla.org/xre/app-info;1"]
|
|
.getService(Ci.nsIXULRuntime)
|
|
.processType != Ci.nsIXULRuntime.PROCESS_TYPE_DEFAULT;
|
|
}
|
|
|
|
function makeChan(url, appId, inBrowser) {
|
|
var ios = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService);
|
|
var chan = ios.newChannel2(url,
|
|
null,
|
|
null,
|
|
null, // aLoadingNode
|
|
Services.scriptSecurityManager.getSystemPrincipal(),
|
|
null, // aTriggeringPrincipal
|
|
Ci.nsILoadInfo.SEC_NORMAL,
|
|
Ci.nsIContentPolicy.TYPE_OTHER).QueryInterface(Ci.nsIHttpChannel);
|
|
chan.notificationCallbacks = {
|
|
appId: appId,
|
|
isInBrowserElement: inBrowser,
|
|
originAttributes: {
|
|
appId: appId,
|
|
inBrowser: inBrowser,
|
|
},
|
|
QueryInterface: function(iid) {
|
|
if (iid.equals(Ci.nsILoadContext))
|
|
return this;
|
|
throw Cr.NS_ERROR_NO_INTERFACE;
|
|
},
|
|
getInterface: function(iid) { return this.QueryInterface(iid); }
|
|
};
|
|
return chan;
|
|
}
|
|
|
|
// Simple online load
|
|
function run_test() {
|
|
do_test_pending();
|
|
var chan = makeChan("http://localhost:12345/first", 14, false);
|
|
chan.asyncOpen(new ChannelListener(checkResponse, "response0"), null);
|
|
}
|
|
|
|
// Should return cached result
|
|
function test1() {
|
|
do_test_pending();
|
|
var chan = makeChan("http://localhost:12345/first", 14, false);
|
|
chan.asyncOpen(new ChannelListener(checkResponse, "response0"), null);
|
|
}
|
|
|
|
// This request should fail
|
|
function test2() {
|
|
do_test_pending();
|
|
var chan = makeChan("http://localhost:12345/second", 14, false);
|
|
chan.asyncOpen(new ChannelListener(checkResponse, "", CL_EXPECT_FAILURE), null);
|
|
}
|
|
|
|
// This request should succeed
|
|
function test3() {
|
|
do_test_pending();
|
|
var chan = makeChan("http://localhost:12345/second", 14, false);
|
|
chan.asyncOpen(new ChannelListener(checkResponse, "response3"), null);
|
|
}
|
|
|
|
function checkResponse(req, buffer, expected) {
|
|
do_check_eq(buffer, expected);
|
|
do_test_finished();
|
|
}
|