summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/update/tests/browser/browser_aboutDialog_fc_network_offline.js
blob: 9f81573e2351a2827905e97cdf91df2ecee55455 (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";

// Test for About Dialog foreground check for updates which fails, because the
// browser is in offline mode and `localhost` cannot be resolved.
add_task(async function aboutDialog_foregroundCheck_network_offline() {
  info("[OFFLINE] setting Services.io.offline (do not forget to reset it!)");
  // avoid that real network connectivity changes influence the test execution
  Services.io.manageOfflineStatus = false;
  Services.io.offline = true;
  registerCleanupFunction(() => {
    info("[ONLINE] Resetting Services.io.offline");
    Services.io.offline = false;
    Services.io.manageOfflineStatus = true;
  });

  await SpecialPowers.pushPrefEnv({
    set: [
      ["network.disable-localhost-when-offline", true],
      ["network.dns.offline-localhost", false],
    ],
  });

  await runAboutDialogUpdateTest({}, [
    {
      panelId: "checkingFailed",
    },
  ]);
});