Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
// Tests that history initialization correctly handles a request to forcibly
// replace the current database.
add_setup(async function () {
do_get_profile();
Services.fog.initializeFOG();
});
add_task(async function () {
await createCorruptDb("places.sqlite");
let gleanValue =
Glean.places.placesDatabaseCorruptionHandlingStage[
"places.sqlite"
].testGetValue();
Assert.ok(!gleanValue, "There should be no glean telemetry.");
Assert.equal(
PlacesUtils.history.databaseStatus,
PlacesUtils.history.DATABASE_STATUS_CORRUPT
);
gleanValue =
Glean.places.placesDatabaseCorruptionHandlingStage[
"places.sqlite"
].testGetValue();
Assert.ok(gleanValue, "Glean metric should have been recorded.");
Assert.equal(
gleanValue,
"stage_replaced",
"The correct corruption stage should be recorded."
);
});