Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"use strict";
const { ExperimentAPI } = ChromeUtils.importESModule(
);
const { ExperimentFakes } = ChromeUtils.importESModule(
);
const { ExperimentManager } = ChromeUtils.importESModule(
);
const EXPERIMENT_VALUE = "experiment-value";
const ROLLOUT_VALUE = "rollout-value";
const ROLLOUT = "rollout";
const EXPERIMENT = "experiment";
const VALUES = {
[ROLLOUT]: ROLLOUT_VALUE,
[EXPERIMENT]: EXPERIMENT_VALUE,
};
add_task(async function test_prefs_priority() {
const pref = "nimbus.testing.testSetString";
const featureId = "testFeature";
async function doTest({ settingEnrollments, expectedValue }) {
info(
`Enrolling in a rollout and experiment where the ${settingEnrollments.join(
" and "
)} set the same pref variable.`
);
const enrollmentCleanup = [];
for (const enrollmentKind of [ROLLOUT, EXPERIMENT]) {
const config = {
featureId,
value: {},
};
if (settingEnrollments.includes(enrollmentKind)) {
config.value.testSetString = VALUES[enrollmentKind];
}
enrollmentCleanup.push(
await ExperimentFakes.enrollWithFeatureConfig(config, {
isRollout: enrollmentKind === ROLLOUT,
})
);
}
is(
NimbusFeatures[featureId].getVariable("testSetString"),
expectedValue,
"Expected the variable to match the expected value"
);
is(
Services.prefs.getStringPref(pref),
expectedValue,
"Expected the pref to match the expected value"
);
for (const cleanup of enrollmentCleanup) {
await cleanup();
}
Services.prefs.deleteBranch(pref);
}
for (const settingEnrollments of [
[ROLLOUT],
[EXPERIMENT],
[ROLLOUT, EXPERIMENT],
]) {
const expectedValue = settingEnrollments.includes(EXPERIMENT)
? EXPERIMENT_VALUE
: ROLLOUT_VALUE;
await doTest({ settingEnrollments, expectedValue });
}
});