Bug 1753696 - Automatic rewrite: replace add_task(setup with add_setup in browser mochitest, r=Standard8,webcompat-reviewers,twisniewski

Differential Revision: https://phabricator.services.mozilla.com/D141437
This commit is contained in:
Gijs Kruitbosch 2022-03-30 16:16:42 +00:00
Родитель 4d3b6146b8
Коммит 8e67201171
471 изменённых файлов: 472 добавлений и 465 удалений

Просмотреть файл

@ -18,7 +18,7 @@ const bookmarksInfo = [
},
];
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
// Ensure we can wait for about:newtab to load.
set: [["browser.newtab.preload", false]],

Просмотреть файл

@ -20,7 +20,7 @@ const PAGE =
// to show up before we decide that it's not coming.
const NOTIFICATION_TIMEOUT_SECS = 2000;
add_task(async function setup() {
add_setup(async function() {
await addNotificationPermission(PAGE);
});

Просмотреть файл

@ -40,7 +40,7 @@ async function checkCaptivePortalTabReference(evt, currState) {
gBrowser.removeTab(errorTab);
}
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["captivedetect.canonicalURL", CANONICAL_URL],

Просмотреть файл

@ -3,7 +3,7 @@
"use strict";
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["captivedetect.canonicalURL", CANONICAL_URL],

Просмотреть файл

@ -12,7 +12,7 @@ const testPath = getRootDirectory(gTestPath).replace(
const CANONICAL_URI = Services.io.newURI(testPath);
const PERMISSION_NAME = "https-only-load-insecure";
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
// That changes the canoncicalURL from "http://{server}/captive-detect/success.txt"
// to http://example.com

Просмотреть файл

@ -35,7 +35,7 @@ function unlockHandler(request, response) {
response.setHeader("Location", CANONICAL_SUCCESS_URL);
}
add_task(async function setup() {
add_setup(async function() {
// Set up a mock server for handling captive portal redirect.
server = new HttpServer();
server.registerPathHandler("/success", redirectHandler);

Просмотреть файл

@ -135,7 +135,7 @@ async function openInNewTabAndReturnContent(selector) {
return blobDataFromContent;
}
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [["privacy.partition.bloburl_per_agent_cluster", false]],
});

Просмотреть файл

@ -35,7 +35,7 @@ async function openAndCheckContextMenu(contextMenu, target) {
}
// Ensure that we can run touch events properly for windows [10]
add_task(async function setup() {
add_setup(async function() {
let isWindows = AppConstants.isPlatformAndVersionAtLeast("win", "10.0");
await SpecialPowers.pushPrefEnv({
set: [["apz.test.fails_with_native_injection", isWindows]],

Просмотреть файл

@ -28,7 +28,7 @@ function createLinks(linkInfos) {
});
}
add_task(async function setup() {
add_setup(async function() {
const URL = ROOT + "discovery.html";
let iconPromise = waitIcon("http://mochi.test:8888/favicon.ico");
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, URL);

Просмотреть файл

@ -321,7 +321,7 @@ async function doSelectTests(contentType, content) {
BrowserTestUtils.removeTab(tab);
}
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [["dom.forms.select.customstyling", true]],
});

Просмотреть файл

@ -459,7 +459,7 @@ async function testSelectColors(selectID, itemCount, options) {
// System colors may be different in content pages and chrome pages.
let kDefaultSelectStyles = {};
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [["dom.forms.select.customstyling", true]],
});

Просмотреть файл

@ -6,7 +6,7 @@ SELECT +=
' <option selected="true">{"end": "true"}</option>' +
"</select></body></html>";
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [["dom.forms.selectSearch", true]],
});

Просмотреть файл

@ -76,7 +76,7 @@ async function testWindowElementFocus(isPopup) {
BrowserTestUtils.removeTab(tab);
}
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["dom.disable_open_during_load", false], // Allow window.focus calls without user interaction

Просмотреть файл

@ -28,7 +28,7 @@ async function testWindowOpen(iframeID) {
BrowserTestUtils.removeTab(tab);
}
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["dom.disable_open_during_load", false], // Allow window.open calls without user interaction

Просмотреть файл

@ -113,7 +113,7 @@ var checkInfobarButton = async function(aNotification) {
await promiseNextTick();
};
add_task(async function setup() {
add_setup(async function() {
const isFirstRun = Preferences.get(PREF_FIRST_RUN, true);
const bypassNotification = Preferences.get(PREF_BYPASS_NOTIFICATION, true);
const currentPolicyVersion = Preferences.get(PREF_CURRENT_POLICY_VERSION, 1);

Просмотреть файл

@ -27,7 +27,7 @@ function openAboutPrefPromise(win) {
];
return Promise.all(promises);
}
add_task(async function setup() {
add_setup(async function() {
let win = await BrowserTestUtils.openNewBrowserWindow();
// Open a new tab to keep the window open.
await BrowserTestUtils.openNewForegroundTab(

Просмотреть файл

@ -16,7 +16,7 @@ function waitForNewWindow() {
});
}
add_task(async function setup() {
add_setup(async function() {
let tmpDir = PathUtils.join(
PathUtils.tempDir,
"testsavedir" + Math.floor(Math.random() * 2 ** 32)

Просмотреть файл

@ -94,7 +94,7 @@ function withNewBlankTab(taskFn) {
const BOOKMARKS_COUNT = 100;
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["browser.toolbars.keyboard_navigation", true],

Просмотреть файл

@ -73,7 +73,7 @@ function testPermListHasEntries(expectEntries) {
ok(!listEntryCount, "List of permissions is empty");
}
add_task(async function setup() {
add_setup(async function() {
registerCleanupFunction(() => {
Services.perms.removeAll();
Services.prefs.clearUserPref(AUTOPLAY_PREF);

Просмотреть файл

@ -112,7 +112,7 @@ async function checkGeolocation(browser, frameId, expect) {
}
}
add_task(async function setup() {
add_setup(async function() {
await new Promise(r => {
SpecialPowers.pushPrefEnv(
{

Просмотреть файл

@ -84,7 +84,7 @@ async function check(contentTask, options = {}) {
}
}
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["media.navigator.permission.fake", true],

Просмотреть файл

@ -15,7 +15,7 @@ function clearAllPermissionsByPrefix(aPrefix) {
}
}
add_task(async function setup() {
add_setup(async function() {
// Enable the popup blocker.
await SpecialPowers.pushPrefEnv({
set: [["dom.disable_open_during_load", true]],

Просмотреть файл

@ -18,7 +18,7 @@ const { CustomizableUITestUtils } = ChromeUtils.import(
"resource://testing-common/CustomizableUITestUtils.jsm"
);
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
// Set the auto hide timing to 100ms for blocking the test less.

Просмотреть файл

@ -12,7 +12,7 @@ const CONTAINER_PAGE =
const TPC_PREF = "network.cookie.cookieBehavior";
add_task(async function setup() {
add_setup(async function() {
await UrlClassifierTestUtils.addTestTrackers();
registerCleanupFunction(() => {

Просмотреть файл

@ -8,7 +8,7 @@ const TRACKING_PAGE =
const CM_PROTECTION_PREF = "privacy.trackingprotection.cryptomining.enabled";
let cmHistogram;
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
[

Просмотреть файл

@ -8,7 +8,7 @@ const TRACKING_PAGE =
const FP_PROTECTION_PREF = "privacy.trackingprotection.fingerprinting.enabled";
let fpHistogram;
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
[

Просмотреть файл

@ -1,7 +1,7 @@
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
// Hide protections cards so as not to trigger more async messaging

Просмотреть файл

@ -40,7 +40,7 @@ async function waitAndAssertPreferencesShown(_spotlight) {
BrowserTestUtils.removeTab(gBrowser.selectedTab);
}
add_task(async function setup() {
add_setup(async function() {
await UrlClassifierTestUtils.addTestTrackers();
let oldCanRecord = Services.telemetry.canRecordExtended;
Services.telemetry.canRecordExtended = true;

Просмотреть файл

@ -23,7 +23,7 @@ let { Preferences } = ChromeUtils.import(
"resource://gre/modules/Preferences.jsm"
);
add_task(async function setup() {
add_setup(async function() {
await UrlClassifierTestUtils.addTestTrackers();
registerCleanupFunction(() => {

Просмотреть файл

@ -74,7 +74,7 @@ const TEST_CASES = [
},
];
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
// By default, proxies don't apply to 127.0.0.1. We need them to for this test, though:

Просмотреть файл

@ -9,7 +9,7 @@ const TRACKING_PAGE =
const ST_PROTECTION_PREF = "privacy.trackingprotection.socialtracking.enabled";
const ST_BLOCK_COOKIES_PREF = "privacy.socialtracking.block_cookies.enabled";
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
[ST_BLOCK_COOKIES_PREF, true],

Просмотреть файл

@ -14,7 +14,7 @@
const TRACKING_PAGE =
"http://example.net/browser/browser/base/content/test/protectionsUI/trackingPage.html";
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["privacy.trackingprotection.enabled", true],

Просмотреть файл

@ -29,7 +29,7 @@ function getShieldCounts() {
return getShieldHistogram().snapshot().values;
}
add_task(async function setup() {
add_setup(async function() {
await UrlClassifierTestUtils.addTestTrackers();
Services.prefs.setBoolPref(DTSCBN_PREF, true);

Просмотреть файл

@ -13,7 +13,7 @@ const TRACKING_PAGE =
const TP_PREF = "privacy.trackingprotection.enabled";
add_task(async function setup() {
add_setup(async function() {
await UrlClassifierTestUtils.addTestTrackers();
registerCleanupFunction(() => {

Просмотреть файл

@ -12,7 +12,7 @@ function failIfSidebarFocusedFires() {
ok(false, "This event shouldn't have fired");
}
add_task(function setup() {
add_setup(function() {
CustomizableUI.addWidgetToArea("sidebar-button", "nav-bar");
registerCleanupFunction(() =>
CustomizableUI.removeWidgetFromArea("sidebar-button")

Просмотреть файл

@ -34,7 +34,7 @@ const HTTPS_TEST_ROOT_2 = getRootDirectory(gTestPath).replace(
"https://test2.example.com"
);
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({ set: [[PREF_ACTIVE, true]] });
});

Просмотреть файл

@ -27,7 +27,7 @@ const fxaDevices = [
{ id: 4, name: "Homer" }, // Incompatible target.
];
add_task(async function setup() {
add_setup(async function() {
await promiseSyncReady();
await Services.search.init();
// gSync.init() is called in a requestIdleCallback. Force its initialization.

Просмотреть файл

@ -50,7 +50,7 @@ function updateTabContextMenu(tab = gBrowser.selectedTab) {
menu.hidePopup();
}
add_task(async function setup() {
add_setup(async function() {
await promiseSyncReady();
await Services.search.init();
// gSync.init() is called in a requestIdleCallback. Force its initialization.

Просмотреть файл

@ -9,7 +9,7 @@ const { CustomizableUITestUtils } = ChromeUtils.import(
let gCUITestUtils = new CustomizableUITestUtils(window);
add_task(async function setup() {
add_setup(async function() {
// gSync.init() is called in a requestIdleCallback. Force its initialization.
gSync.init();
// This preference gets set the very first time that the FxA menu gets opened,

Просмотреть файл

@ -36,7 +36,7 @@ function getTestDirectory() {
return tmpDir.path;
}
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
// Allow using our MockFilePicker in the content process.

Просмотреть файл

@ -125,7 +125,7 @@ async function checkDialog(
});
}
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["prompts.contentPromptSubDialog", true],

Просмотреть файл

@ -3,7 +3,7 @@
const PAGE =
"data:text/html,<html><body>A%20regular,%20everyday,%20normal%20page.";
add_task(async function setup() {
add_setup(async function() {
await setupLocalCrashReportServer();
});

Просмотреть файл

@ -7,7 +7,7 @@ const COMMENTS = "Here's my test comment!";
// Avoid timeouts, as in bug 1325530
requestLongerTimeout(2);
add_task(async function setup() {
add_setup(async function() {
await setupLocalCrashReportServer();
});

Просмотреть файл

@ -3,7 +3,7 @@
const PAGE =
"data:text/html,<html><body>A%20regular,%20everyday,%20normal%20page.";
add_task(async function setup() {
add_setup(async function() {
prepareNoDump();
});

Просмотреть файл

@ -41,7 +41,7 @@ var commonDialogsBundle = Services.strings.createBundle(
);
// Setup.
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [[CONTENT_PROMPT_PREF, true]],
});

Просмотреть файл

@ -15,7 +15,7 @@ function synthesizeKeyAndWaitForTabToGetKeyboardFocus(tab, keyCode, options) {
return focused;
}
add_task(async function setup() {
add_setup(async function() {
// The DevEdition has the DevTools button in the toolbar by default. Remove it
// to prevent branch-specific rules what button should be focused.
CustomizableUI.removeWidgetFromArea("developer-button");

Просмотреть файл

@ -33,7 +33,7 @@ var gPrevRemoteTypeRegularTab;
var gPrevRemoteTypeContainerTab;
var gPrevRemoteTypePrivateTab;
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["privacy.userContext.enabled", true],

Просмотреть файл

@ -17,7 +17,7 @@ const ABOUT_NEWTAB = "about:newtab";
const ABOUT_WELCOME = "about:welcome";
const TEST_HTTP = "http://example.org/";
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["browser.newtab.preload", false],

Просмотреть файл

@ -21,7 +21,7 @@ var TEST_CASES = [
const NUM_PAGES_OPEN_FOR_EACH_TEST_CASE = 5;
var remoteTypes;
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["privacy.userContext.enabled", true],

Просмотреть файл

@ -49,7 +49,7 @@ function handleEventLocal(aEvent) {
}
}
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["privacy.userContext.enabled", true],

Просмотреть файл

@ -26,7 +26,7 @@ function testAttrib(tabIndex, attrib, expected) {
);
}
add_task(async function setup() {
add_setup(async function() {
is(gBrowser.tabs.length, 1, "one tab is open initially");
addTab("http://mochi.test:8888/#0");

Просмотреть файл

@ -17,7 +17,7 @@ const TEST_HIGH2 = "https://test1.example.org/";
const TEST_LOW1 = "http://example.org/";
const TEST_LOW2 = "https://example.com/";
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["browser.tabs.remote.separatePrivilegedMozillaWebContentProcess", true],

Просмотреть файл

@ -11,7 +11,7 @@ SearchTestUtils.init(this);
const kButton = document.getElementById("reload-button");
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [["browser.fixup.dns_first_for_single_words", true]],
});

Просмотреть файл

@ -5,7 +5,7 @@
const { sinon } = ChromeUtils.import("resource://testing-common/Sinon.jsm");
add_task(async function setup() {
add_setup(async function() {
let tab1 = await addTab();
let tab2 = await addTab();
let tab3 = await addTab();

Просмотреть файл

@ -38,7 +38,7 @@ let win;
let nonBeforeUnloadTab;
let beforeUnloadTab;
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [["dom.require_user_interaction_for_beforeunload", false]],
});

Просмотреть файл

@ -58,7 +58,7 @@ function waitForSnapshotCount(histogram, expectedCount) {
}, `Collected value should become ${expectedCount}.`);
}
add_task(async function setup() {
add_setup(async function() {
// Force-enable tab animations
gReduceMotionOverride = false;

Просмотреть файл

@ -82,7 +82,7 @@ async function testProbe(aProbe) {
);
}
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["dom.ipc.processCount", 1],

Просмотреть файл

@ -112,7 +112,7 @@ async function openAndCheckCustomizationUIMenu(target) {
}
// Ensure that we can run touch events properly for windows [10]
add_task(async function setup() {
add_setup(async function() {
let isWindows = AppConstants.isPlatformAndVersionAtLeast("win", "10.0");
await SpecialPowers.pushPrefEnv({
set: [["apz.test.fails_with_native_injection", isWindows]],

Просмотреть файл

@ -35,7 +35,7 @@ function getBadgeStatus() {
}
// Set some prefs that apply to all the tests in this file
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
// We don't have pre-pinned certificates for the local mochitest server

Просмотреть файл

@ -20,7 +20,7 @@ function getBadgeStatus() {
}
// Set some prefs that apply to all the tests in this file
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
// We don't have pre-pinned certificates for the local mochitest server

Просмотреть файл

@ -3,7 +3,7 @@
const INSTALL_PAGE = `${BASE}/file_install_extensions.html`;
const INSTALL_XPI = `${BASE}/browser_webext_permissions.xpi`;
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
["extensions.webapi.testing", true],

Просмотреть файл

@ -1,5 +1,5 @@
// Set some prefs that apply to all the tests in this file
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [
// We don't have pre-pinned certificates for the local mochitest server

Просмотреть файл

@ -15,7 +15,7 @@ const MUTE_TOPICS = [
"getUserMedia:unmuteAudio",
];
add_task(async function setup() {
add_setup(async function() {
let prefs = [
[PREF_PERMISSION_FAKE, true],
[PREF_AUDIO_LOOPBACK, ""],

Просмотреть файл

@ -129,7 +129,7 @@ async function testNotificationSilencing(aBrowser) {
);
}
add_task(async function setup() {
add_setup(async function() {
// Set prefs so that permissions prompts are shown and loopback devices
// are not used. To test the chrome we want prompts to be shown, and
// these tests are flakey when using loopback devices (though it would

Просмотреть файл

@ -9,7 +9,7 @@ const TEST_ROOT = getRootDirectory(gTestPath).replace(
);
const TEST_PAGE = TEST_ROOT + "get_user_media.html";
add_task(async function setup() {
add_setup(async function() {
let prefs = [
[PREF_PERMISSION_FAKE, true],
[PREF_AUDIO_LOOPBACK, ""],

Просмотреть файл

@ -9,7 +9,7 @@ const TEST_ROOT = getRootDirectory(gTestPath).replace(
);
const TEST_PAGE = TEST_ROOT + "get_user_media.html";
add_task(async function setup() {
add_setup(async function() {
let prefs = [
[PREF_PERMISSION_FAKE, true],
[PREF_AUDIO_LOOPBACK, ""],

Просмотреть файл

@ -188,7 +188,7 @@ async function ensureWarning(tab) {
);
}
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [["privacy.webrtc.sharedTabWarning", true]],
});

Просмотреть файл

@ -30,7 +30,7 @@ let VULNERABLE_TEST_LOGIN2 = new nsLoginInfo(
"password"
);
add_task(async function setup() {
add_setup(async function() {
TEST_LOGIN1 = await addLogin(TEST_LOGIN1);
VULNERABLE_TEST_LOGIN2 = await addLogin(VULNERABLE_TEST_LOGIN2);
TEST_LOGIN3 = await addLogin(TEST_LOGIN3);

Просмотреть файл

@ -24,7 +24,7 @@ let VULNERABLE_TEST_LOGIN2 = new nsLoginInfo(
"password"
);
add_task(async function setup() {
add_setup(async function() {
TEST_LOGIN1 = await addLogin(TEST_LOGIN1);
VULNERABLE_TEST_LOGIN2 = await addLogin(VULNERABLE_TEST_LOGIN2);
TEST_LOGIN3 = await addLogin(TEST_LOGIN3);

Просмотреть файл

@ -14,7 +14,7 @@ EXPECTED_BREACH = {
schema: "1541615609018",
};
add_task(async function setup() {
add_setup(async function() {
await BrowserTestUtils.openNewForegroundTab({
gBrowser,
url: "about:logins",

Просмотреть файл

@ -1,7 +1,7 @@
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function setup() {
add_setup(async function() {
await BrowserTestUtils.openNewForegroundTab({
gBrowser,
url: "about:logins",

Просмотреть файл

@ -1,7 +1,7 @@
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function setup() {
add_setup(async function() {
TEST_LOGIN1 = await addLogin(TEST_LOGIN1);
await BrowserTestUtils.openNewForegroundTab({
gBrowser,

Просмотреть файл

@ -1,7 +1,7 @@
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function setup() {
add_setup(async function() {
let aboutLoginsTab = await BrowserTestUtils.openNewForegroundTab({
gBrowser,
url: "about:logins",

Просмотреть файл

@ -1,7 +1,7 @@
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function setup() {
add_setup(async function() {
TEST_LOGIN1 = await addLogin(TEST_LOGIN1);
TEST_LOGIN2 = await addLogin(TEST_LOGIN2);
await BrowserTestUtils.openNewForegroundTab({

Просмотреть файл

@ -12,7 +12,7 @@ function mockState(state) {
});
}
add_task(async function setup() {
add_setup(async function() {
let aboutLoginsTab = await BrowserTestUtils.openNewForegroundTab({
gBrowser,
url: "about:logins",

Просмотреть файл

@ -1,7 +1,7 @@
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function setup() {
add_setup(async function() {
await BrowserTestUtils.openNewForegroundTab({
gBrowser,
url: "about:logins",

Просмотреть файл

@ -1,7 +1,7 @@
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function setup() {
add_setup(async function() {
await BrowserTestUtils.openNewForegroundTab({
gBrowser,
url: "about:logins",

Просмотреть файл

@ -16,7 +16,7 @@ EXPECTED_BREACH = {
const SORT_PREF_NAME = "signon.management.page.sort";
add_task(async function setup() {
add_setup(async function() {
TEST_LOGIN3.QueryInterface(Ci.nsILoginMetaInfo).timePasswordChanged = 1;
TEST_LOGIN1 = await addLogin(TEST_LOGIN1);
info(`TEST_LOGIN1 added with guid=${TEST_LOGIN1.guid}`);

Просмотреть файл

@ -1,7 +1,7 @@
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function setup() {
add_setup(async function() {
await BrowserTestUtils.openNewForegroundTab({
gBrowser,
url: "about:logins",

Просмотреть файл

@ -17,7 +17,7 @@ let { TelemetryTestUtils } = ChromeUtils.import(
let { MockFilePicker } = SpecialPowers;
add_task(async function setup() {
add_setup(async function() {
await TestUtils.waitForCondition(() => {
Services.telemetry.clearEvents();
let events = Services.telemetry.snapshotEvents(

Просмотреть файл

@ -1,7 +1,7 @@
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function setup() {
add_setup(async function() {
let storageChangedPromised = TestUtils.topicObserved(
"passwordmgr-storage-changed",
(_, data) => data == "addLogin"

Просмотреть файл

@ -5,7 +5,7 @@ let { TelemetryTestUtils } = ChromeUtils.import(
"resource://testing-common/TelemetryTestUtils.jsm"
);
add_task(async function setup() {
add_setup(async function() {
await TestUtils.waitForCondition(() => {
Services.telemetry.clearEvents();
let events = Services.telemetry.snapshotEvents(

Просмотреть файл

@ -257,7 +257,7 @@ class CsvImportHelper {
const random = Math.round(Math.random() * 100000001);
add_task(async function setup() {
add_setup(async function() {
registerCleanupFunction(() => {
Services.logins.removeAllUserFacingLogins();
});

Просмотреть файл

@ -5,7 +5,7 @@ let { TelemetryTestUtils } = ChromeUtils.import(
"resource://testing-common/TelemetryTestUtils.jsm"
);
add_task(async function setup() {
add_setup(async function() {
await TestUtils.waitForCondition(() => {
Services.telemetry.clearEvents();
let events = Services.telemetry.snapshotEvents(

Просмотреть файл

@ -1,7 +1,7 @@
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function setup() {
add_setup(async function() {
await BrowserTestUtils.openNewForegroundTab({
gBrowser,
url: "about:logins",

Просмотреть файл

@ -1,7 +1,7 @@
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function setup() {
add_setup(async function() {
TEST_LOGIN1 = await addLogin(TEST_LOGIN1);
await BrowserTestUtils.openNewForegroundTab({
gBrowser,

Просмотреть файл

@ -17,7 +17,7 @@ function waitForLoginCountToReach(browser, loginCount) {
);
}
add_task(async function setup() {
add_setup(async function() {
await addLogin(TEST_LOGIN1);
registerCleanupFunction(() => {
Services.logins.removeAllUserFacingLogins();

Просмотреть файл

@ -76,7 +76,7 @@ async function waitForRemoveAllLogins() {
});
}
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [[OS_REAUTH_PREF, false]],
});

Просмотреть файл

@ -14,7 +14,7 @@ EXPECTED_BREACH = {
schema: "1541615609018",
};
add_task(async function setup() {
add_setup(async function() {
TEST_LOGIN1 = await addLogin(TEST_LOGIN1);
await BrowserTestUtils.openNewForegroundTab({
gBrowser,

Просмотреть файл

@ -1,7 +1,7 @@
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function setup() {
add_setup(async function() {
TEST_LOGIN1 = await addLogin(TEST_LOGIN1);
await BrowserTestUtils.openNewForegroundTab({
gBrowser,

Просмотреть файл

@ -16,7 +16,7 @@ EXPECTED_BREACH = {
let tabInSecondWindow;
add_task(async function setup() {
add_setup(async function() {
TEST_LOGIN1 = await addLogin(TEST_LOGIN1);
TEST_LOGIN2 = await addLogin(TEST_LOGIN2);
TEST_LOGIN3 = await addLogin(TEST_LOGIN3);

Просмотреть файл

@ -13,7 +13,7 @@ const INDEX_DECODE_ERROR = 1;
const INDEX_WRITE_ERROR = 2;
const INDEX_QUARANTINE_ERROR = 3;
add_task(function setup() {
add_setup(function() {
// AttributionCode._clearCache is only possible in a testing environment
let env = Cc["@mozilla.org/process/environment;1"].getService(
Ci.nsIEnvironment

Просмотреть файл

@ -6,7 +6,7 @@ const BASE_URI =
"http://mochi.test:8888/browser/browser/components/" +
"contextualidentity/test/browser/empty_file.html";
add_task(async function setup() {
add_setup(async function() {
await SpecialPowers.pushPrefEnv({
set: [["privacy.userContext.enabled", true]],
});

Просмотреть файл

@ -68,7 +68,7 @@ async function runTestForReceiver(receiver) {
gBrowser.removeTab(sender2.tab);
}
add_task(async function setup() {
add_setup(async function() {
// make sure userContext is enabled.
await SpecialPowers.pushPrefEnv({
set: [["privacy.userContext.enabled", true]],

Просмотреть файл

@ -10,7 +10,7 @@ function openTabInUserContext(userContextId) {
gBrowser.selectedTab = tab;
}
add_task(async function setup() {
add_setup(async function() {
// make sure userContext is enabled.
await SpecialPowers.pushPrefEnv({
set: [["privacy.userContext.enabled", true]],

Просмотреть файл

@ -90,7 +90,7 @@ function generateKeyInfo(aData) {
return keyInfo;
}
add_task(async function setup() {
add_setup(async function() {
// Make sure userContext is enabled.
await SpecialPowers.pushPrefEnv({
set: [

Просмотреть файл

@ -78,7 +78,7 @@ function loadFaviconHandler(metadata, response) {
response.bodyOutputStream.write(gFaviconData, gFaviconData.length);
}
add_task(async function setup() {
add_setup(async function() {
// Make sure userContext is enabled.
await SpecialPowers.pushPrefEnv({
set: [["privacy.userContext.enabled", true]],

Просмотреть файл

@ -199,7 +199,7 @@ async function checkEMEKey(browser, emeSessionId) {
// Test functions.
//
add_task(async function setup() {
add_setup(async function() {
// Make sure userContext is enabled.
await SpecialPowers.pushPrefEnv({
set: [

Просмотреть файл

@ -37,7 +37,7 @@ function getCookiesForOA(host, userContextId) {
// Test functions.
//
add_task(async function setup() {
add_setup(async function() {
// Make sure userContext is enabled.
await SpecialPowers.pushPrefEnv({
set: [["privacy.userContext.enabled", true]],

Просмотреть файл

@ -107,7 +107,7 @@ async function checkIndexedDB(browser) {
// Test functions.
//
add_task(async function setup() {
add_setup(async function() {
// Make sure userContext is enabled.
await SpecialPowers.pushPrefEnv({
set: [["privacy.userContext.enabled", true]],

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше