summaryrefslogtreecommitdiffstats
path: root/browser/components/aboutwelcome/tests/browser/browser_aboutwelcome_toolbar_button.js
blob: c9180ddf2deffc62cf9bd2745b90cf8d75336780 (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
"use strict";

const { AboutWelcomeTelemetry } = ChromeUtils.importESModule(
  "resource:///modules/aboutwelcome/AboutWelcomeTelemetry.sys.mjs"
);
const { AWToolbarButton } = ChromeUtils.importESModule(
  "resource:///modules/aboutwelcome/AWToolbarUtils.sys.mjs"
);

const TOOLBAR_PREF = "browser.aboutwelcome.toolbarButtonEnabled";
const DID_SEE_FINAL_SCREEN_PREF = "browser.aboutwelcome.didSeeFinalScreen";

async function openNewTab() {
  let tab = await BrowserTestUtils.openNewForegroundTab(
    gBrowser,
    "about:newtab",
    false
  );

  registerCleanupFunction(async () => {
    BrowserTestUtils.removeTab(tab);
    await SpecialPowers.popPrefEnv();
  });

  return tab.linkedBrowser;
}

add_task(async function test_add_and_remove_toolbar_button() {
  // Clear the final screen pref, which may have been set by other tests
  await SpecialPowers.pushPrefEnv({
    set: [[DID_SEE_FINAL_SCREEN_PREF, false]],
  });
  // Open newtab
  let win = await BrowserTestUtils.openNewBrowserWindow();
  win.BrowserOpenTab();
  ok(win, "browser exists");
  // Try to add the button. It shouldn't add because the pref is false
  await AWToolbarButton.maybeAddSetupButton();
  ok(
    !win.document.getElementById("aboutwelcome-button"),
    "Button should not exist"
  );
  // Set the pref and try again
  await SpecialPowers.pushPrefEnv({
    set: [[TOOLBAR_PREF, true]],
  });
  await AWToolbarButton.maybeAddSetupButton();
  // The button should exist
  ok(
    win.document.getElementById("aboutwelcome-button"),
    "Button should be added."
  );
  // Switch the pref to false and check again
  await SpecialPowers.pushPrefEnv({
    set: [[TOOLBAR_PREF, false]],
  });
  ok(
    !win.document.getElementById("aboutwelcome-button"),
    "Button should be removed"
  );
  // Cleanup
  await SpecialPowers.popPrefEnv();
  await BrowserTestUtils.closeWindow(win);
});