mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
134 lines
4.1 KiB
JavaScript
134 lines
4.1 KiB
JavaScript
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
function getLinkFile()
|
|
{
|
|
if (mozinfo.os == "win") {
|
|
return do_get_file("test_link.url");
|
|
}
|
|
if (mozinfo.os == "linux") {
|
|
return do_get_file("test_link.desktop");
|
|
}
|
|
do_throw("Unexpected platform");
|
|
return null;
|
|
}
|
|
|
|
const ios = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService);
|
|
var link;
|
|
var linkURI;
|
|
const newURI = ios.newURI("http://www.mozilla.org/", null, null);
|
|
|
|
function NotificationCallbacks(origURI, newURI)
|
|
{
|
|
this._origURI = origURI;
|
|
this._newURI = newURI;
|
|
}
|
|
NotificationCallbacks.prototype = {
|
|
QueryInterface: function(iid)
|
|
{
|
|
if (iid.equals(Ci.nsISupports) ||
|
|
iid.equals(Ci.nsIInterfaceRequestor) ||
|
|
iid.equals(Ci.nsIChannelEventSink)) {
|
|
return this;
|
|
}
|
|
throw Cr.NS_ERROR_NO_INTERFACE;
|
|
},
|
|
getInterface: function (iid)
|
|
{
|
|
return this.QueryInterface(iid);
|
|
},
|
|
asyncOnChannelRedirect: function(oldChan, newChan, flags, callback)
|
|
{
|
|
do_check_eq(oldChan.URI.spec, this._origURI.spec);
|
|
do_check_eq(oldChan.URI, this._origURI);
|
|
do_check_eq(oldChan.originalURI.spec, this._origURI.spec);
|
|
do_check_eq(oldChan.originalURI, this._origURI);
|
|
do_check_eq(newChan.originalURI.spec, this._newURI.spec);
|
|
do_check_eq(newChan.originalURI, newChan.URI);
|
|
do_check_eq(newChan.URI.spec, this._newURI.spec);
|
|
throw Cr.NS_ERROR_ABORT;
|
|
}
|
|
};
|
|
|
|
function RequestObserver(origURI, newURI, nextTest)
|
|
{
|
|
this._origURI = origURI;
|
|
this._newURI = newURI;
|
|
this._nextTest = nextTest;
|
|
}
|
|
RequestObserver.prototype = {
|
|
QueryInterface: function(iid)
|
|
{
|
|
if (iid.equals(Ci.nsISupports) ||
|
|
iid.equals(Ci.nsIRequestObserver) ||
|
|
iid.equals(Ci.nsIStreamListener)) {
|
|
return this;
|
|
}
|
|
throw Cr.NS_ERROR_NO_INTERFACE;
|
|
},
|
|
onStartRequest: function (req, ctx)
|
|
{
|
|
var chan = req.QueryInterface(Ci.nsIChannel);
|
|
do_check_eq(chan.URI.spec, this._origURI.spec);
|
|
do_check_eq(chan.URI, this._origURI);
|
|
do_check_eq(chan.originalURI.spec, this._origURI.spec);
|
|
do_check_eq(chan.originalURI, this._origURI);
|
|
},
|
|
onDataAvailable: function(req, ctx, stream, offset, count)
|
|
{
|
|
do_throw("Unexpected call to onDataAvailable");
|
|
},
|
|
onStopRequest: function (req, ctx, status)
|
|
{
|
|
var chan = req.QueryInterface(Ci.nsIChannel);
|
|
try {
|
|
do_check_eq(chan.URI.spec, this._origURI.spec);
|
|
do_check_eq(chan.URI, this._origURI);
|
|
do_check_eq(chan.originalURI.spec, this._origURI.spec);
|
|
do_check_eq(chan.originalURI, this._origURI);
|
|
do_check_eq(status, Cr.NS_ERROR_ABORT);
|
|
do_check_false(chan.isPending());
|
|
} catch(e) {}
|
|
this._nextTest();
|
|
}
|
|
};
|
|
|
|
function test_cancel()
|
|
{
|
|
var chan = ios.newChannelFromURI2(linkURI,
|
|
null, // aLoadingNode
|
|
Services.scriptSecurityManager.getSystemPrincipal(),
|
|
null, // aTriggeringPrincipal
|
|
Ci.nsILoadInfo.SEC_NORMAL,
|
|
Ci.nsIContentPolicy.TYPE_OTHER);
|
|
do_check_eq(chan.URI, linkURI);
|
|
do_check_eq(chan.originalURI, linkURI);
|
|
chan.asyncOpen(new RequestObserver(linkURI, newURI, do_test_finished), null);
|
|
do_check_true(chan.isPending());
|
|
chan.cancel(Cr.NS_ERROR_ABORT);
|
|
do_check_true(chan.isPending());
|
|
}
|
|
|
|
function run_test()
|
|
{
|
|
if (mozinfo.os != "win" && mozinfo.os != "linux") {
|
|
return;
|
|
}
|
|
|
|
link = getLinkFile();
|
|
linkURI = ios.newFileURI(link);
|
|
|
|
do_test_pending();
|
|
|
|
var chan = ios.newChannelFromURI2(linkURI,
|
|
null, // aLoadingNode
|
|
Services.scriptSecurityManager.getSystemPrincipal(),
|
|
null, // aTriggeringPrincipal
|
|
Ci.nsILoadInfo.SEC_NORMAL,
|
|
Ci.nsIContentPolicy.TYPE_OTHER);
|
|
do_check_eq(chan.URI, linkURI);
|
|
do_check_eq(chan.originalURI, linkURI);
|
|
chan.notificationCallbacks = new NotificationCallbacks(linkURI, newURI);
|
|
chan.asyncOpen(new RequestObserver(linkURI, newURI, test_cancel), null);
|
|
do_check_true(chan.isPending());
|
|
}
|