summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/tabcrashed/browser_aboutRestartRequired_buildid_no-platform-ini.js
blob: 232c79b02e83aacbc643fe5e479f5cb9e3abedc2 (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
"use strict";

// On debug builds, crashing tabs results in much thinking, which
// slows down the test and results in intermittent test timeouts,
// so we'll pump up the expected timeout for this test.
requestLongerTimeout(2);

SimpleTest.expectChildProcessCrash();

add_task(async function test_browser_crashed_no_platform_ini_event() {
  info("Waiting for oop-browser-buildid-mismatch event.");

  Services.telemetry.clearScalars();
  is(
    getFalsePositiveTelemetry(),
    undefined,
    "Build ID mismatch false positive count should be undefined"
  );

  ok(await ensureBuildID(), "System has correct platform.ini");

  let profD = Services.dirsvc.get("GreD", Ci.nsIFile);
  let platformIniOrig = await IOUtils.readUTF8(
    PathUtils.join(profD.path, "platform.ini")
  );

  await IOUtils.remove(PathUtils.join(profD.path, "platform.ini"));

  setBuildidMatchDontSendEnv();
  await forceCleanProcesses();
  let eventPromise = getEventPromise(
    "oop-browser-buildid-mismatch",
    "no-platform-ini"
  );
  let tab = await openNewTab(false);
  await eventPromise;
  await IOUtils.writeUTF8(
    PathUtils.join(profD.path, "platform.ini"),
    platformIniOrig,
    { flush: true }
  );
  unsetBuildidMatchDontSendEnv();

  is(
    getFalsePositiveTelemetry(),
    undefined,
    "Build ID mismatch false positive count should be undefined"
  );
  await closeTab(tab);
});