Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'win' && socketprocess_networking && fission OR os == 'mac' && socketprocess_networking && fission OR os == 'mac' && debug OR os == 'linux' && socketprocess_networking OR os == 'android' && debug
- Manifest: toolkit/components/extensions/test/xpcshell/xpcshell-remote.toml includes toolkit/components/extensions/test/xpcshell/xpcshell-common.toml
- Manifest: toolkit/components/extensions/test/xpcshell/xpcshell.toml includes toolkit/components/extensions/test/xpcshell/xpcshell-common.toml
"use strict";
const server = createHttpServer({ hosts: ["example.com"] });
server.registerPathHandler("/dummy", (request, response) => {
response.setStatusLine(request.httpVersion, 200, "OK");
response.setHeader("Content-Type", "text/html", false);
response.write("<!DOCTYPE html><html></html>");
});
add_task(async function test_incognito_webrequest_access() {
let pb_extension = ExtensionTestUtils.loadExtension({
incognitoOverride: "spanning",
manifest: {
permissions: ["webRequest", "webRequestBlocking", "<all_urls>"],
},
background() {
browser.webRequest.onBeforeRequest.addListener(
async details => {
browser.test.assertTrue(details.incognito, "incognito flag is set");
},
{ urls: ["<all_urls>"], incognito: true },
["blocking"]
);
browser.webRequest.onBeforeRequest.addListener(
async details => {
browser.test.assertFalse(
details.incognito,
"incognito flag is not set"
);
browser.test.notifyPass("webRequest.spanning");
},
{ urls: ["<all_urls>"], incognito: false },
["blocking"]
);
},
});
if (AppConstants.platform == "android") {
Services.prefs.setBoolPref("dom.security.https_first_pbm", false);
}
await pb_extension.startup();
let extension = ExtensionTestUtils.loadExtension({
manifest: {
permissions: ["webRequest", "webRequestBlocking", "<all_urls>"],
},
background() {
browser.webRequest.onBeforeRequest.addListener(
async details => {
browser.test.assertFalse(
details.incognito,
"incognito flag is not set"
);
browser.test.notifyPass("webRequest");
},
{ urls: ["<all_urls>"] },
["blocking"]
);
},
});
// Load non-incognito extension to check that private requests are invisible to it.
await extension.startup();
let contentPage = await ExtensionTestUtils.loadContentPage(
{ privateBrowsing: true }
);
await contentPage.close();
contentPage = await ExtensionTestUtils.loadContentPage(
);
await extension.awaitFinish("webRequest");
await pb_extension.awaitFinish("webRequest.spanning");
await contentPage.close();
await pb_extension.unload();
await extension.unload();
if (AppConstants.platform == "android") {
Services.prefs.clearUserPref("dom.security.https_first_pbm");
}
});