summaryrefslogtreecommitdiffstats
path: root/toolkit/components/messaging-system/schemas/SpecialMessageActionSchemas/test/browser/browser_sma_show_migration_wizard.js
blob: 4efbabfe3cf6526313b4ebf3f853c0f915004e24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

add_setup(async () => {
  // Load the initial tab at example.com. This makes it so that if
  // when loading the migration wizard in about:preferences, we'll
  // load the about:preferences page in a new tab rather than overtaking
  // the initial one. This makes cleanup of that opened tab more explicit.
  let browser = gBrowser.selectedBrowser;
  BrowserTestUtils.startLoadingURIString(browser, "https://example.com");
  await BrowserTestUtils.browserLoaded(browser);
});

add_task(async function test_SHOW_MIGRATION_WIZARD() {
  let wizardOpened = BrowserTestUtils.waitForMigrationWizard(window);

  await SMATestUtils.executeAndValidateAction({
    type: "SHOW_MIGRATION_WIZARD",
  });

  let wizard = await wizardOpened;
  ok(wizard, "Migration wizard opened");
  await BrowserTestUtils.removeTab(wizard);
});

add_task(async function test_SHOW_MIGRATION_WIZARD_WITH_SOURCE() {
  let wizardOpened = BrowserTestUtils.waitForMigrationWizard(window);

  await SMATestUtils.executeAndValidateAction({
    type: "SHOW_MIGRATION_WIZARD",
    data: { source: "chrome" },
  });

  let wizard = await wizardOpened;
  ok(wizard, "Migrator window opened when source param specified");
  await BrowserTestUtils.removeTab(wizard);
});