summaryrefslogtreecommitdiffstats
path: root/toolkit/crashreporter/test/unit/test_crash_AsyncShutdown.js
blob: c4011c74740837cf3ab8127bda707c609bf8fa48 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

// Test that AsyncShutdown report errors correctly

// Note: these functions are evaluated in their own process, hence the need
// to import modules into each function.

function setup_crash() {
  const { AsyncShutdown } = ChromeUtils.importESModule(
    "resource://gre/modules/AsyncShutdown.sys.mjs"
  );

  Services.prefs.setBoolPref("toolkit.asyncshutdown.testing", true);
  Services.prefs.setIntPref("toolkit.asyncshutdown.crash_timeout", 10);

  let TOPIC = "testing-async-shutdown-crash";
  let phase = AsyncShutdown._getPhase(TOPIC);
  phase.addBlocker("A blocker that is never satisfied", function () {
    dump("Installing blocker\n");
    let deferred = Promise.withResolvers();
    return deferred.promise;
  });

  Services.obs.notifyObservers(null, TOPIC);
  dump(new Error().stack + "\n");
  dump("Waiting for crash\n");
}

function after_crash(mdump, extra) {
  info("after crash: " + extra.AsyncShutdownTimeout);
  let data = JSON.parse(extra.AsyncShutdownTimeout);
  Assert.equal(data.phase, "testing-async-shutdown-crash");
  Assert.equal(data.conditions[0].name, "A blocker that is never satisfied");
  // This test spawns subprocesses by using argument "-e" of xpcshell, so
  // this is the filename known to xpcshell.
  Assert.equal(data.conditions[0].filename, "-e");
}

// Test that AsyncShutdown + IOUtils reports errors correctly.,

function setup_ioutils_crash() {
  Services.prefs.setIntPref("toolkit.asyncshutdown.crash_timeout", 1);

  IOUtils.profileBeforeChange.addBlocker(
    "Adding a blocker that will never be resolved",
    () => Promise.withResolvers().promise
  );

  Services.startup.advanceShutdownPhase(
    Services.startup.SHUTDOWN_PHASE_APPSHUTDOWN
  );
  dump("Waiting for crash\n");
}

function after_ioutils_crash(mdump, extra) {
  info("after IOUtils crash: " + extra.AsyncShutdownTimeout);
  let data = JSON.parse(extra.AsyncShutdownTimeout);
  Assert.equal(
    data.phase,
    "IOUtils: waiting for profileBeforeChange IO to complete"
  );
}

add_task(async function run_test() {
  await do_crash(setup_crash, after_crash);
  await do_crash(setup_ioutils_crash, after_ioutils_crash);
});