Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"use strict";
const { FxAccounts } = ChromeUtils.importESModule(
);
add_task(
async function test_non_https_remote_server_uri_with_requireHttps_false() {
Services.prefs.setBoolPref("identity.fxaccounts.allowHttp", true);
Services.prefs.setStringPref(
"identity.fxaccounts.remote.root",
);
Assert.equal(
await FxAccounts.config.promiseConnectAccountURI("test"),
);
Services.prefs.clearUserPref("identity.fxaccounts.remote.root");
Services.prefs.clearUserPref("identity.fxaccounts.allowHttp");
}
);
add_task(async function test_non_https_remote_server_uri() {
Services.prefs.setStringPref(
"identity.fxaccounts.remote.root",
);
await Assert.rejects(
FxAccounts.config.promiseConnectAccountURI(),
/Firefox Accounts server must use HTTPS/
);
Services.prefs.clearUserPref("identity.fxaccounts.remote.root");
});
add_task(async function test_is_production_config() {
// should start with no auto-config URL.
Assert.ok(!FxAccounts.config.getAutoConfigURL());
// which means we are using prod.
Assert.ok(FxAccounts.config.isProductionConfig());
// Set an auto-config URL.
Services.prefs.setStringPref(
"identity.fxaccounts.autoconfig.uri",
);
Assert.equal(FxAccounts.config.getAutoConfigURL(), "http://x");
Assert.ok(!FxAccounts.config.isProductionConfig());
// Clear the auto-config URL, but set one of the other config params.
Services.prefs.clearUserPref("identity.fxaccounts.autoconfig.uri");
Services.prefs.setStringPref("identity.sync.tokenserver.uri", "http://t");
Assert.ok(!FxAccounts.config.isProductionConfig());
Services.prefs.clearUserPref("identity.sync.tokenserver.uri");
});