Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
const { ExperimentFakes } = ChromeUtils.importESModule(
);
const { SearchService } = ChromeUtils.importESModule(
);
const { sinon } = ChromeUtils.importESModule(
);
add_task(async function test_engines_reloaded_nimbus() {
let reloadSpy = sinon.spy(SearchService.prototype, "_maybeReloadEngines");
let getVariableSpy = sinon.spy(
NimbusFeatures.searchConfiguration,
"getVariable"
);
let doExperimentCleanup = await ExperimentFakes.enrollWithFeatureConfig({
featureId: "searchConfiguration",
value: { experiment: "nimbus-search-mochitest" },
});
Assert.equal(reloadSpy.callCount, 1, "Called by experiment enrollment");
await BrowserTestUtils.waitForCondition(
() => getVariableSpy.calledWith("experiment"),
"Wait for SearchService update to run"
);
Assert.equal(
getVariableSpy.callCount,
3,
"Called by update function to fetch engines"
);
Assert.ok(
getVariableSpy.calledWith("experiment"),
"Called by search service observer"
);
Assert.equal(
NimbusFeatures.searchConfiguration.getVariable("experiment"),
"nimbus-search-mochitest",
"Should have expected value"
);
await doExperimentCleanup();
Assert.equal(reloadSpy.callCount, 2, "Called by experiment unenrollment");
reloadSpy.restore();
getVariableSpy.restore();
});