159 lines
4.9 KiB
JavaScript
159 lines
4.9 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
const TOPIC_BROWSERGLUE_TEST = "browser-glue-test";
|
|
const TOPICDATA_BROWSERGLUE_TEST = "force-ui-migration";
|
|
const gBrowserGlue = Cc["@mozilla.org/browser/browserglue;1"].getService(
|
|
Ci.nsIObserver
|
|
);
|
|
const UI_VERSION = 147;
|
|
|
|
const { LoginHelper } = ChromeUtils.importESModule(
|
|
"resource://gre/modules/LoginHelper.sys.mjs"
|
|
);
|
|
const { FormAutofillUtils } = ChromeUtils.importESModule(
|
|
"resource://gre/modules/shared/FormAutofillUtils.sys.mjs"
|
|
);
|
|
|
|
const CC_OLD_PREF = "extensions.formautofill.reauth.enabled";
|
|
const CC_TYPO_PREF = "extensions.formautofill.creditcards.reauth.optout";
|
|
const CC_NEW_PREF = FormAutofillUtils.AUTOFILL_CREDITCARDS_REAUTH_PREF;
|
|
|
|
const PASSWORDS_OLD_PREF = "signon.management.page.os-auth.enabled";
|
|
const PASSWORDS_NEW_PREF = LoginHelper.OS_AUTH_FOR_PASSWORDS_PREF;
|
|
|
|
function clearPrefs() {
|
|
Services.prefs.clearUserPref("browser.migration.version");
|
|
Services.prefs.clearUserPref(CC_OLD_PREF);
|
|
Services.prefs.clearUserPref(CC_TYPO_PREF);
|
|
Services.prefs.clearUserPref(CC_NEW_PREF);
|
|
Services.prefs.clearUserPref(PASSWORDS_OLD_PREF);
|
|
Services.prefs.clearUserPref(PASSWORDS_NEW_PREF);
|
|
Services.prefs.clearUserPref("browser.startup.homepage_override.mstone");
|
|
}
|
|
|
|
function simulateUIMigration() {
|
|
gBrowserGlue.observe(
|
|
null,
|
|
TOPIC_BROWSERGLUE_TEST,
|
|
TOPICDATA_BROWSERGLUE_TEST
|
|
);
|
|
}
|
|
|
|
add_task(async function setup() {
|
|
registerCleanupFunction(clearPrefs);
|
|
});
|
|
|
|
add_task(async function test_pref_migration_old_pref_os_auth_disabled() {
|
|
Services.prefs.setIntPref("browser.migration.version", UI_VERSION - 1);
|
|
Services.prefs.setBoolPref(CC_OLD_PREF, false);
|
|
Services.prefs.setBoolPref(PASSWORDS_OLD_PREF, false);
|
|
|
|
simulateUIMigration();
|
|
|
|
Assert.ok(
|
|
!FormAutofillUtils.getOSAuthEnabled(CC_NEW_PREF),
|
|
"OS Auth should be disabled for credit cards since it was disabled before migration."
|
|
);
|
|
Assert.ok(
|
|
!LoginHelper.getOSAuthEnabled(PASSWORDS_NEW_PREF),
|
|
"OS Auth should be disabled for passwords since it was disabled before migration."
|
|
);
|
|
clearPrefs();
|
|
});
|
|
|
|
add_task(async function test_pref_migration_old_pref_os_auth_enabled() {
|
|
Services.prefs.setIntPref("browser.migration.version", UI_VERSION - 1);
|
|
Services.prefs.setBoolPref(CC_OLD_PREF, true);
|
|
Services.prefs.setBoolPref(PASSWORDS_OLD_PREF, true);
|
|
|
|
simulateUIMigration();
|
|
|
|
Assert.ok(
|
|
FormAutofillUtils.getOSAuthEnabled(CC_NEW_PREF),
|
|
"OS Auth should be enabled for credit cards since it was enabled before migration."
|
|
);
|
|
Assert.ok(
|
|
LoginHelper.getOSAuthEnabled(PASSWORDS_NEW_PREF),
|
|
"OS Auth should be enabled for passwords since it was enabled before migration."
|
|
);
|
|
clearPrefs();
|
|
});
|
|
|
|
add_task(
|
|
async function test_creditCards_pref_migration_typo_pref_os_auth_disabled() {
|
|
Services.prefs.setIntPref("browser.migration.version", UI_VERSION - 1);
|
|
Services.prefs.setCharPref(
|
|
"browser.startup.homepage_override.mstone",
|
|
"127.0"
|
|
);
|
|
FormAutofillUtils.setOSAuthEnabled(CC_TYPO_PREF, false);
|
|
|
|
simulateUIMigration();
|
|
|
|
Assert.ok(
|
|
!FormAutofillUtils.getOSAuthEnabled(CC_NEW_PREF),
|
|
"OS Auth should be disabled for credit cards since it was disabled before migration."
|
|
);
|
|
clearPrefs();
|
|
}
|
|
);
|
|
|
|
add_task(
|
|
async function test_creditCards_pref_migration_typo_pref_os_auth_enabled() {
|
|
Services.prefs.setIntPref("browser.migration.version", UI_VERSION - 1);
|
|
Services.prefs.setCharPref(
|
|
"browser.startup.homepage_override.mstone",
|
|
"127.0"
|
|
);
|
|
FormAutofillUtils.setOSAuthEnabled(CC_TYPO_PREF, true);
|
|
|
|
simulateUIMigration();
|
|
|
|
Assert.ok(
|
|
FormAutofillUtils.getOSAuthEnabled(CC_NEW_PREF),
|
|
"OS Auth should be enabled for credit cards since it was enabled before migration."
|
|
);
|
|
clearPrefs();
|
|
}
|
|
);
|
|
|
|
add_task(
|
|
async function test_creditCards_pref_migration_real_pref_os_auth_disabled() {
|
|
Services.prefs.setIntPref("browser.migration.version", UI_VERSION - 1);
|
|
Services.prefs.setCharPref(
|
|
"browser.startup.homepage_override.mstone",
|
|
"127.0"
|
|
);
|
|
FormAutofillUtils.setOSAuthEnabled(CC_NEW_PREF, false);
|
|
|
|
simulateUIMigration();
|
|
|
|
Assert.ok(
|
|
!FormAutofillUtils.getOSAuthEnabled(CC_NEW_PREF),
|
|
"OS Auth should be disabled for credit cards since it was disabled before migration."
|
|
);
|
|
clearPrefs();
|
|
}
|
|
);
|
|
|
|
add_task(
|
|
async function test_creditCards_pref_migration_real_pref_os_auth_enabled() {
|
|
Services.prefs.setIntPref("browser.migration.version", UI_VERSION - 1);
|
|
Services.prefs.setCharPref(
|
|
"browser.startup.homepage_override.mstone",
|
|
"127.0"
|
|
);
|
|
FormAutofillUtils.setOSAuthEnabled(CC_NEW_PREF, true);
|
|
|
|
simulateUIMigration();
|
|
|
|
Assert.ok(
|
|
FormAutofillUtils.getOSAuthEnabled(CC_NEW_PREF),
|
|
"OS Auth should be enabled for credit cards since it was enabled before migration."
|
|
);
|
|
clearPrefs();
|
|
}
|
|
);
|