Bug 826063 - Part 2: Add tests for nsIPrivateBrowsingChannel::isChannelPrivate; r=ehsan

This commit is contained in:
Nils Maier 2013-01-03 19:41:12 -05:00
parent 39fe3b4099
commit 96b67e24c9
2 changed files with 104 additions and 0 deletions

View File

@ -0,0 +1,103 @@
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Test that nsIPrivateBrowsingChannel.isChannelPrivate yields the correct
* result for various combinations of .setPrivate() and nsILoadContexts
*/
const {classes: Cc, interfaces: Ci, utils: Cu} = Components;
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
Cu.import("resource://gre/modules/Services.jsm");
var URIs = [
"http://example.org",
"https://example.org",
"ftp://example.org"
];
function LoadContext(usePrivateBrowsing) {
this.usePrivateBrowsing = usePrivateBrowsing;
}
LoadContext.prototype = {
QueryInterface: XPCOMUtils.generateQI([Ci.nsILoadContext, Ci.nsIInterfaceRequestor]),
getInterface: XPCOMUtils.generateQI([Ci.nsILoadContext])
};
function getChannels() {
for (let u of URIs) {
yield Services.io.newChannel(u, null, null);
}
}
function checkPrivate(channel, shouldBePrivate) {
do_check_eq(channel.QueryInterface(Ci.nsIPrivateBrowsingChannel).isChannelPrivate,
shouldBePrivate);
}
/**
* Default configuration
* Default is non-private
*/
add_test(function test_plain() {
for (let c of getChannels()) {
checkPrivate(c, false);
}
run_next_test();
});
/**
* Explicitly setPrivate(true), no load context
*/
add_test(function test_setPrivate_private() {
for (let c of getChannels()) {
c.QueryInterface(Ci.nsIPrivateBrowsingChannel).setPrivate(true);
checkPrivate(c, true);
}
run_next_test();
});
/**
* Explicitly setPrivate(false), no load context
*/
add_test(function test_setPrivate_regular() {
for (let c of getChannels()) {
c.QueryInterface(Ci.nsIPrivateBrowsingChannel).setPrivate(false);
checkPrivate(c, false);
}
run_next_test();
});
/**
* Load context mandates private mode
*/
add_test(function test_LoadContextPrivate() {
let ctx = new LoadContext(true);
for (let c of getChannels()) {
c.notificationCallbacks = ctx;
checkPrivate(c, true);
}
run_next_test();
});
/**
* Load context mandates regular mode
*/
add_test(function test_LoadContextRegular() {
let ctx = new LoadContext(false);
for (let c of getChannels()) {
c.notificationCallbacks = ctx;
checkPrivate(c, false);
}
run_next_test();
});
// Do not test simultanous uses of .setPrivate and load context.
// There is little merit in doing so, and combining both will assert in
// Debug builds anyway.
function run_test() {
run_next_test();
}

View File

@ -205,3 +205,4 @@ run-if = hasNode
[test_pinned_app_cache.js]
[test_offlinecache_custom-directory.js]
[test_bug767025.js]
[test_bug826063.js]