forked from mirrors/gecko-dev
This was done using the following script:
37e3803c7a/processors/chromeutils-import.jsm
MozReview-Commit-ID: 1Nc3XDu0wGl
--HG--
extra : source : 12fc4dee861c812fd2bd032c63ef17af61800c70
extra : intermediate-source : 34c999fa006bffe8705cf50c54708aa21a962e62
extra : histedit_source : b2be2c5e5d226e6c347312456a6ae339c1e634b0
68 lines
2.2 KiB
JavaScript
68 lines
2.2 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
ChromeUtils.import("resource://testing-common/httpd.js");
|
|
ChromeUtils.import("resource://gre/modules/Services.jsm");
|
|
ChromeUtils.import("resource://gre/modules/osfile.jsm");
|
|
ChromeUtils.import("resource:///modules/experiments/Experiments.jsm");
|
|
|
|
var gHttpServer = null;
|
|
var gHttpRoot = null;
|
|
var gPolicy = new Experiments.Policy();
|
|
|
|
function run_test() {
|
|
loadAddonManager();
|
|
|
|
gHttpServer = new HttpServer();
|
|
gHttpServer.start(-1);
|
|
let port = gHttpServer.identity.primaryPort;
|
|
gHttpRoot = "http://localhost:" + port + "/";
|
|
gHttpServer.registerDirectory("/", do_get_cwd());
|
|
registerCleanupFunction(() => gHttpServer.stop(() => {}));
|
|
|
|
Services.prefs.setBoolPref(PREF_EXPERIMENTS_ENABLED, true);
|
|
Services.prefs.setIntPref(PREF_LOGGING_LEVEL, 0);
|
|
Services.prefs.setBoolPref(PREF_LOGGING_DUMP, true);
|
|
|
|
patchPolicy(gPolicy, {
|
|
updatechannel: () => "nightly",
|
|
});
|
|
|
|
run_next_test();
|
|
}
|
|
|
|
add_task(async function test_fetchAndCache() {
|
|
Services.prefs.setCharPref(PREF_MANIFEST_URI, gHttpRoot + "experiments_1.manifest");
|
|
let ex = new Experiments.Experiments(gPolicy);
|
|
|
|
Assert.equal(ex._experiments, null, "There should be no cached experiments yet.");
|
|
await ex.updateManifest();
|
|
Assert.notEqual(ex._experiments.size, 0, "There should be cached experiments now.");
|
|
|
|
await promiseRestartManager();
|
|
});
|
|
|
|
add_task(async function test_checkCache() {
|
|
let ex = new Experiments.Experiments(gPolicy);
|
|
await ex.notify();
|
|
Assert.notEqual(ex._experiments.size, 0, "There should be cached experiments now.");
|
|
|
|
await promiseRestartManager();
|
|
});
|
|
|
|
add_task(async function test_fetchInvalid() {
|
|
await removeCacheFile();
|
|
|
|
Services.prefs.setCharPref(PREF_MANIFEST_URI, gHttpRoot + "experiments_1.manifest");
|
|
let ex = new Experiments.Experiments(gPolicy);
|
|
await ex.updateManifest();
|
|
Assert.notEqual(ex._experiments.size, 0, "There should be experiments");
|
|
|
|
Services.prefs.setCharPref(PREF_MANIFEST_URI, gHttpRoot + "invalid.manifest");
|
|
await ex.updateManifest();
|
|
Assert.notEqual(ex._experiments.size, 0, "There should still be experiments: fetch failure shouldn't remove them.");
|
|
|
|
await promiseRestartManager();
|
|
});
|