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

"use strict";

add_task(async function doorhanger_bc_downloaded_disableBITS() {
  await SpecialPowers.pushPrefEnv({
    set: [[PREF_APP_UPDATE_BITS_ENABLED, true]],
  });

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

  let patch = getPatchOfType(
    "partial",
    gUpdateManager.readyUpdate
  ).QueryInterface(Ci.nsIWritablePropertyBag);
  ok(
    !patch.getProperty("bitsId"),
    "The selected patch should not have a bitsId property"
  );
});