From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- .../tests/browser_open_migration_wizard.js | 54 ++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 browser/components/preferences/tests/browser_open_migration_wizard.js (limited to 'browser/components/preferences/tests/browser_open_migration_wizard.js') diff --git a/browser/components/preferences/tests/browser_open_migration_wizard.js b/browser/components/preferences/tests/browser_open_migration_wizard.js new file mode 100644 index 0000000000..c2c18b35ef --- /dev/null +++ b/browser/components/preferences/tests/browser_open_migration_wizard.js @@ -0,0 +1,54 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +"use strict"; + +/** + * Tests the "Import Data" button in the "Import Browser Data" section of + * the General pane of about:preferences launches the Migration Wizard. + */ +add_task(async function test_open_migration_wizard() { + const BUTTON_ID = "data-migration"; + + await BrowserTestUtils.withNewTab( + { gBrowser, url: "about:preferences#general" }, + async function (browser) { + let button = browser.contentDocument.getElementById(BUTTON_ID); + + // First, we'll test the legacy Migration Wizard. + await SpecialPowers.pushPrefEnv({ + set: [["browser.migrate.content-modal.enabled", false]], + }); + + let migrationWizardWindow = BrowserTestUtils.domWindowOpenedAndLoaded( + null, + win => { + let type = win.document.documentElement.getAttribute("windowtype"); + if (type == "Browser:MigrationWizard") { + Assert.ok(true, "Saw legacy Migration Wizard window open."); + return true; + } + + return false; + } + ); + + button.click(); + let win = await migrationWizardWindow; + await BrowserTestUtils.closeWindow(win); + + // Next, we'll test the new Migration Wizard. + await SpecialPowers.pushPrefEnv({ + set: [["browser.migrate.content-modal.enabled", true]], + }); + + let wizardReady = BrowserTestUtils.waitForEvent( + browser.contentWindow, + "MigrationWizard:Ready" + ); + button.click(); + await wizardReady; + Assert.ok(true, "Saw the new Migration Wizard dialog open."); + } + ); +}); -- cgit v1.2.3