summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/test/xpcshell/test_bad_json.js
blob: 3cd08cdde853572b393ac4484881d78ac30794f8 (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
/* 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 saveJSON({ not: "what we expect to find" }, gExtensionsJSON.path);

  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 loadJSON(gExtensionsJSON.path);
  Assert.ok("schemaVersion" in data);
  Assert.equal(data.addons[0].id, ID);
});