summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/update/tests/browser/browser_aboutPrefs_fc_network_offline.js
blob: 7b5b6899b320b5199f39410324da66a910f8ac6e (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:preferences foreground check for updates which fails because
// the browser is in offline mode and `localhost` cannot be resolved.
add_task(async function aboutPrefs_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 runAboutPrefsUpdateTest({}, [
    {
      panelId: "checkingFailed",
    },
  ]);
});