Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
add_task(async function test_policy_disable_shield() {
const { RecipeRunner } = ChromeUtils.importESModule(
);
const { BaseAction } = ChromeUtils.importESModule(
);
const { BaseStudyAction } = ChromeUtils.importESModule(
);
const baseAction = new BaseAction();
const baseStudyAction = new BaseStudyAction();
await SpecialPowers.pushPrefEnv({
set: [
["app.normandy.api_url", "https://localhost/selfsupport-dummy/"],
["app.shield.optoutstudies.enabled", true],
],
});
ok(RecipeRunner, "RecipeRunner exists");
RecipeRunner.checkPrefs();
ok(RecipeRunner.enabled, "RecipeRunner is enabled");
baseAction._preExecution();
is(
baseAction.state,
BaseAction.STATE_PREPARING,
"Base action is not disabled"
);
baseStudyAction._preExecution();
is(
baseStudyAction.state,
BaseAction.STATE_PREPARING,
"Base study action is not disabled"
);
await setupPolicyEngineWithJson({
policies: {
DisableFirefoxStudies: true,
},
});
RecipeRunner.checkPrefs();
ok(RecipeRunner.enabled, "RecipeRunner is still enabled");
baseAction._preExecution();
is(
baseAction.state,
BaseAction.STATE_PREPARING,
"Base action is not disabled"
);
baseStudyAction._preExecution();
is(
baseStudyAction.state,
BaseAction.STATE_DISABLED,
"Base study action is disabled"
);
});