summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/xpcshell/test_ext_json_parser.js
blob: 652f4131565efb5f5d1d4a1e1195a7e68ece7965 (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
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
"use strict";

add_task(function* test_json_parser() {
  const ID = "json@test.web.extension";

  let xpi = Extension.generateXPI({
    files: {
      "manifest.json": String.raw`{
        // This is a manifest.
        "applications": {"gecko": {"id": "${ID}"}},
        "name": "This \" is // not a comment",
        "version": "0.1\\" // , "description": "This is not a description"
      }`,
    },
  });

  let expectedManifest = {
    "applications": {"gecko": {"id": ID}},
    "name": "This \" is // not a comment",
    "version": "0.1\\",
  };

  let fileURI = Services.io.newFileURI(xpi);
  let uri = NetUtil.newURI(`jar:${fileURI.spec}!/`);

  let extension = new ExtensionData(uri);

  yield extension.readManifest();

  Assert.deepEqual(extension.rawManifest, expectedManifest,
                   "Manifest with correctly-filtered comments");

  Services.obs.notifyObservers(xpi, "flush-cache-entry", null);
  xpi.remove(false);
});