summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/update/tests/browser/browser_doorhanger_sp_patch_partialApplyFailure.js
blob: 45434c836183d1f068b0eddff283265f3d389494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

add_task(async function doorhanger_sp_patch_partialApplyFailure() {
  let patchProps = { type: "partial", state: STATE_PENDING };
  let patches = getLocalPatchString(patchProps);
  let updateProps = { isCompleteUpdate: "false", checkInterval: "1" };
  let updates = getLocalUpdateString(updateProps, patches);

  let params = { updates };
  await runDoorhangerUpdateTest(params, [
    {
      // If there is only an invalid patch show the manual update doorhanger.
      notificationId: "update-manual",
      button: "button",
      checkActiveUpdate: null,
      pageURLs: { manual: URL_MANUAL_UPDATE },
    },
  ]);
});