blob: ec6c30bd523994ab6e5b91b87ddd2b32cca54388 (
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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
// Tests that we rebuild the database correctly if it contains
// JSON data that parses correctly but doesn't contain required fields
add_task(async function () {
createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "1.9.2");
await promiseStartupManager();
const ID = "addon@tests.mozilla.org";
await promiseInstallWebExtension({
manifest: {
version: "2.0",
browser_specific_settings: { gecko: { id: ID } },
},
});
await promiseShutdownManager();
// First startup/shutdown finished
// Replace the JSON store with something bogus
await IOUtils.writeJSON(gExtensionsJSON.path, {
not: "what we expect to find",
});
await promiseStartupManager();
// Retrieve an addon to force the database to rebuild
let addon = await AddonManager.getAddonByID(ID);
Assert.equal(addon.id, ID);
await promiseShutdownManager();
// Make sure our JSON database has schemaVersion and our installed extension
let data = await IOUtils.readJSON(gExtensionsJSON.path);
Assert.ok("schemaVersion" in data);
Assert.equal(data.addons[0].id, ID);
});
|