зеркало из https://github.com/mozilla/gecko-dev.git
Backed out 2 changesets (bug 1595656) for xpcshell failures on test_load_all_api_modules.js . CLOSED TREE
Backed out changeset 061c92c4b95c (bug 1595656) Backed out changeset ef8d5090979a (bug 1595656)
This commit is contained in:
Родитель
4305bf1a25
Коммит
2738d493c6
|
@ -6,19 +6,35 @@
|
|||
|
||||
"use strict";
|
||||
|
||||
var { XPCOMUtils } = ChromeUtils.import(
|
||||
"resource://gre/modules/XPCOMUtils.jsm"
|
||||
var { PlacesUtils } = ChromeUtils.import(
|
||||
"resource://gre/modules/PlacesUtils.jsm"
|
||||
);
|
||||
|
||||
XPCOMUtils.defineLazyModuleGetters(this, {
|
||||
LoginHelper: "resource://gre/modules/LoginHelper.jsm",
|
||||
PlacesUtils: "resource://gre/modules/PlacesUtils.jsm",
|
||||
Preferences: "resource://gre/modules/Preferences.jsm",
|
||||
Sanitizer: "resource:///modules/Sanitizer.jsm",
|
||||
Services: "resource://gre/modules/Services.jsm",
|
||||
setTimeout: "resource://gre/modules/Timer.jsm",
|
||||
ServiceWorkerCleanUp: "resource://gre/modules/ServiceWorkerCleanUp.jsm",
|
||||
});
|
||||
ChromeUtils.defineModuleGetter(
|
||||
this,
|
||||
"Preferences",
|
||||
"resource://gre/modules/Preferences.jsm"
|
||||
);
|
||||
ChromeUtils.defineModuleGetter(
|
||||
this,
|
||||
"Sanitizer",
|
||||
"resource:///modules/Sanitizer.jsm"
|
||||
);
|
||||
ChromeUtils.defineModuleGetter(
|
||||
this,
|
||||
"Services",
|
||||
"resource://gre/modules/Services.jsm"
|
||||
);
|
||||
ChromeUtils.defineModuleGetter(
|
||||
this,
|
||||
"setTimeout",
|
||||
"resource://gre/modules/Timer.jsm"
|
||||
);
|
||||
ChromeUtils.defineModuleGetter(
|
||||
this,
|
||||
"ServiceWorkerCleanUp",
|
||||
"resource://gre/modules/ServiceWorkerCleanUp.jsm"
|
||||
);
|
||||
|
||||
XPCOMUtils.defineLazyServiceGetter(
|
||||
this,
|
||||
|
@ -215,17 +231,24 @@ const clearLocalStorage = async function(options) {
|
|||
};
|
||||
|
||||
const clearPasswords = async function(options) {
|
||||
let loginManager = Services.logins;
|
||||
let yieldCounter = 0;
|
||||
|
||||
// Iterate through the logins and delete any updated after our cutoff.
|
||||
for (let login of await LoginHelper.getAllUserFacingLogins()) {
|
||||
login.QueryInterface(Ci.nsILoginMetaInfo);
|
||||
if (!options.since || login.timePasswordChanged >= options.since) {
|
||||
Services.logins.removeLogin(login);
|
||||
if (++yieldCounter % YIELD_PERIOD == 0) {
|
||||
await new Promise(resolve => setTimeout(resolve, 0)); // Don't block the main thread too long.
|
||||
if (options.since) {
|
||||
// Iterate through the logins and delete any updated after our cutoff.
|
||||
let logins = loginManager.getAllLogins();
|
||||
for (let login of logins) {
|
||||
login.QueryInterface(Ci.nsILoginMetaInfo);
|
||||
if (login.timePasswordChanged >= options.since) {
|
||||
loginManager.removeLogin(login);
|
||||
if (++yieldCounter % YIELD_PERIOD == 0) {
|
||||
await new Promise(resolve => setTimeout(resolve, 0)); // Don't block the main thread too long.
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// Remove everything.
|
||||
loginManager.removeAllLogins();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -12,9 +12,10 @@ XPCOMUtils.defineLazyServiceGetter(
|
|||
const REFERENCE_DATE = Date.now();
|
||||
const LOGIN_USERNAME = "username";
|
||||
const LOGIN_PASSWORD = "password";
|
||||
const LOGIN_USERNAME_FIELD = "username_field";
|
||||
const LOGIN_PASSWORD_FIELD = "password_field";
|
||||
const OLD_HOST = "http://mozilla.org";
|
||||
const NEW_HOST = "http://mozilla.com";
|
||||
const FXA_HOST = "chrome://FirefoxAccounts";
|
||||
|
||||
function checkLoginExists(host, shouldExist) {
|
||||
let logins = loginManager.findLogins(host, "", null);
|
||||
|
@ -30,7 +31,15 @@ function addLogin(host, timestamp) {
|
|||
let login = Cc["@mozilla.org/login-manager/loginInfo;1"].createInstance(
|
||||
Ci.nsILoginInfo
|
||||
);
|
||||
login.init(host, "", null, LOGIN_USERNAME, LOGIN_PASSWORD);
|
||||
login.init(
|
||||
host,
|
||||
"",
|
||||
null,
|
||||
LOGIN_USERNAME,
|
||||
LOGIN_PASSWORD,
|
||||
LOGIN_USERNAME_FIELD,
|
||||
LOGIN_PASSWORD_FIELD
|
||||
);
|
||||
login.QueryInterface(Ci.nsILoginMetaInfo);
|
||||
login.timePasswordChanged = timestamp;
|
||||
loginManager.addLogin(login);
|
||||
|
@ -39,7 +48,6 @@ function addLogin(host, timestamp) {
|
|||
|
||||
async function setupPasswords() {
|
||||
loginManager.removeAllLogins();
|
||||
addLogin(FXA_HOST, REFERENCE_DATE);
|
||||
addLogin(NEW_HOST, REFERENCE_DATE);
|
||||
addLogin(OLD_HOST, REFERENCE_DATE - 10000);
|
||||
}
|
||||
|
@ -71,7 +79,6 @@ add_task(async function testPasswords() {
|
|||
|
||||
checkLoginExists(OLD_HOST, false);
|
||||
checkLoginExists(NEW_HOST, false);
|
||||
checkLoginExists(FXA_HOST, true);
|
||||
|
||||
// Clear passwords with recent since value.
|
||||
await setupPasswords();
|
||||
|
@ -80,7 +87,6 @@ add_task(async function testPasswords() {
|
|||
|
||||
checkLoginExists(OLD_HOST, true);
|
||||
checkLoginExists(NEW_HOST, false);
|
||||
checkLoginExists(FXA_HOST, true);
|
||||
|
||||
// Clear passwords with old since value.
|
||||
await setupPasswords();
|
||||
|
@ -89,7 +95,6 @@ add_task(async function testPasswords() {
|
|||
|
||||
checkLoginExists(OLD_HOST, false);
|
||||
checkLoginExists(NEW_HOST, false);
|
||||
checkLoginExists(FXA_HOST, true);
|
||||
}
|
||||
|
||||
await extension.startup();
|
||||
|
|
|
@ -1105,7 +1105,7 @@ this.LoginHelper = {
|
|||
},
|
||||
|
||||
isUserFacingLogin(login) {
|
||||
return login.origin != "chrome://FirefoxAccounts"; // FXA_PWDMGR_HOST
|
||||
return !login.origin.startsWith("chrome://");
|
||||
},
|
||||
|
||||
async getAllUserFacingLogins() {
|
||||
|
|
Загрузка…
Ссылка в новой задаче