summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/update/tests/browser/browser_doorhanger_bc_downloadOptIn_bgWin.js
blob: 17dcce57ceece37f208ab953f59ad00dda81cad0 (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

add_task(async function doorhanger_bc_downloadOptIn_bgWin() {
  function getBackgroundWindowHandler() {
    return async function () {
      await TestUtils.waitForCondition(
        () => PanelUI.menuButton.hasAttribute("badge-status"),
        "Background window has a badge.",
        undefined,
        200
      ).catch(e => {
        // Instead of throwing let the check below fail the test.
        logTestInfo(e);
      });
      ok(
        PanelUI.menuButton.hasAttribute("badge-status"),
        "PanelUI.menuButton should have a 'badge-status' attribute"
      );
      is(
        PanelUI.notificationPanel.state,
        "closed",
        "The doorhanger is not showing for the background window"
      );
      is(
        PanelUI.menuButton.getAttribute("badge-status"),
        "update-available",
        "The badge is showing for the background window"
      );
      let popupShownPromise = BrowserTestUtils.waitForEvent(
        PanelUI.notificationPanel,
        "popupshown"
      );
      await BrowserTestUtils.closeWindow(extraWindow);
      await SimpleTest.promiseFocus(window);
      await popupShownPromise;

      let buttonEl = getNotificationButton(
        window,
        "update-available",
        "button"
      );
      buttonEl.click();
    };
  }

  await UpdateUtils.setAppUpdateAutoEnabled(false);

  let extraWindow = await BrowserTestUtils.openNewBrowserWindow();
  await SimpleTest.promiseFocus(extraWindow);

  let params = { checkAttempts: 1, queryString: "&promptWaitTime=0" };
  await runDoorhangerUpdateTest(params, [
    getBackgroundWindowHandler(),
    {
      notificationId: "update-restart",
      button: "secondaryButton",
      checkActiveUpdate: { state: STATE_PENDING },
    },
  ]);
});