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

"use strict";

add_task(async function doorhanger_bc_downloadOptIn_staging() {
  await SpecialPowers.pushPrefEnv({
    set: [
      // Tests the app.update.promptWaitTime pref
      [PREF_APP_UPDATE_PROMPTWAITTIME, 0],
      [PREF_APP_UPDATE_STAGING_ENABLED, true],
    ],
  });
  await UpdateUtils.setAppUpdateAutoEnabled(false);

  let params = { checkAttempts: 1, queryString: "&invalidCompleteSize=1" };
  await runDoorhangerUpdateTest(params, [
    {
      notificationId: "update-available",
      button: "button",
      checkActiveUpdate: null,
    },
    {
      notificationId: "update-restart",
      button: "secondaryButton",
      checkActiveUpdate: { state: STATE_APPLIED },
    },
  ]);
});