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

"use strict";

add_task(async function doorhanger_bc_check_malformedXML() {
  const maxBackgroundErrors = 10;
  await SpecialPowers.pushPrefEnv({
    set: [[PREF_APP_UPDATE_BACKGROUNDMAXERRORS, maxBackgroundErrors]],
  });

  let params = {
    checkAttempts: maxBackgroundErrors,
    queryString: "&xmlMalformed=1",
  };
  await runDoorhangerUpdateTest(params, [
    {
      // If the update check fails 10 consecutive attempts then the manual
      // update doorhanger.
      notificationId: "update-manual",
      button: "button",
      checkActiveUpdate: null,
      pageURLs: { whatsNew: gDetailsURL, manual: URL_MANUAL_UPDATE },
    },
  ]);
});