Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
let bounceTrackingProtection;
add_setup(async function () {
await SpecialPowers.pushPrefEnv({
set: [
["privacy.bounceTrackingProtection.requireStatefulBounces", true],
["privacy.bounceTrackingProtection.bounceTrackingGracePeriodSec", 0],
],
});
bounceTrackingProtection = Cc[
"@mozilla.org/bounce-tracking-protection;1"
].getService(Ci.nsIBounceTrackingProtection);
});
// Cookie tests.
add_task(async function test_bounce_stateful_cookies_client() {
info("Test client bounce with cookie.");
await runTestBounce({
bounceType: "client",
setState: "cookie-client",
});
info("Test client bounce without cookie.");
await runTestBounce({
bounceType: "client",
setState: null,
expectCandidate: false,
expectPurge: false,
});
});
add_task(async function test_bounce_stateful_cookies_client_sameSiteFrame() {
info("Test client bounce with cookie set in same site frame.");
await runTestBounce({
bounceType: "client",
setState: "cookie-client",
setStateSameSiteFrame: true,
});
});
add_task(async function test_bounce_stateful_cookies_server() {
info("Test server bounce with cookie.");
await runTestBounce({
bounceType: "server",
setState: "cookie-server",
});
info("Test server bounce without cookie.");
await runTestBounce({
bounceType: "server",
setState: null,
expectCandidate: false,
expectPurge: false,
});
});