summaryrefslogtreecommitdiffstats
path: root/browser/components/preferences/tests/browser_open_migration_wizard.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /browser/components/preferences/tests/browser_open_migration_wizard.js
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/preferences/tests/browser_open_migration_wizard.js')
-rw-r--r--browser/components/preferences/tests/browser_open_migration_wizard.js54
1 files changed, 54 insertions, 0 deletions
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.");
+ }
+ );
+});