summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/unit/test_corrupt_telemetry.js
blob: cd9e9ec0c413e5826ece9eb877e1a10dec551a9e (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/ */

// Tests that history initialization correctly handles a request to forcibly
// replace the current database.

add_task(function* () {
  let profileDBPath = yield OS.Path.join(OS.Constants.Path.profileDir, "places.sqlite");
  yield OS.File.remove(profileDBPath, {ignoreAbsent: true});
  // Ensure that our database doesn't already exist.
  Assert.ok(!(yield OS.File.exists(profileDBPath)), "places.sqlite shouldn't exist");
  let dir = yield OS.File.getCurrentDirectory();
  let src = OS.Path.join(dir, "corruptDB.sqlite");
  yield OS.File.copy(src, profileDBPath);
  Assert.ok(yield OS.File.exists(profileDBPath), "places.sqlite should exist");

  let count = Services.telemetry
                      .getHistogramById("PLACES_DATABASE_CORRUPTION_HANDLING_STAGE")
                      .snapshot()
                      .counts[3];
  Assert.equal(count, 0, "There should be no telemetry");

  do_check_eq(PlacesUtils.history.databaseStatus,
              PlacesUtils.history.DATABASE_STATUS_CORRUPT);

  count = Services.telemetry
                  .getHistogramById("PLACES_DATABASE_CORRUPTION_HANDLING_STAGE")
                  .snapshot()
                  .counts[3];
  Assert.equal(count, 1, "Telemetry should have been added");
});