summaryrefslogtreecommitdiffstats
path: root/toolkit/components/messaging-system/schemas/SpecialMessageActionSchemas/test/browser/browser_sma_show_migration_wizard.js
blob: aea84f026a842cba2e2a74168ee0d95bf07747fc (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const FORCE_LEGACY =
  Services.prefs.getCharPref(
    "browser.migrate.content-modal.about-welcome-behavior",
    "default"
  ) == "legacy";

add_setup(async () => {
  // Load the initial tab at example.com. This makes it so that if
  // we're using the new migration wizard, we'll load the about:preferences
  // page in a new tab rather than overtaking the initial one. This
  // makes it easier to be consistent with closing and opening
  // behaviours between the two kinds of migration wizards.
  let browser = gBrowser.selectedBrowser;
  BrowserTestUtils.loadURIString(browser, "https://example.com");
  await BrowserTestUtils.browserLoaded(browser);
});

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

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

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

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

  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.closeMigrationWizard(wizard, FORCE_LEGACY);
});

add_task(async function test_SHOW_MIGRATION_WIZARD_forcing_legacy() {
  await SpecialPowers.pushPrefEnv({
    set: [["browser.migrate.content-modal.about-welcome-behavior", "legacy"]],
  });

  let wizardOpened = BrowserTestUtils.waitForMigrationWizard(window, true);

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

  let wizard = await wizardOpened;
  ok(wizard, "Legacy migrator window opened");
  await BrowserTestUtils.closeMigrationWizard(wizard, true);
});