blob: 8cd44f06dcb7e090e2bba80de9be4bc07442ab47 (
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
|
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
"use strict";
async function test_theme_property(property) {
let normalized = await ExtensionTestUtils.normalizeManifest(
{
theme: {
[property]: {},
},
},
"manifest.ThemeManifest"
);
if (property === "unrecognized_key") {
const expectedWarning = `Warning processing theme.${property}`;
ok(
normalized.errors[0].includes(expectedWarning),
`The manifest warning ${JSON.stringify(
normalized.errors[0]
)} must contain ${JSON.stringify(expectedWarning)}`
);
} else {
equal(normalized.errors.length, 0, "Should have a warning");
}
equal(normalized.error, undefined, "Should not have an error");
}
add_task(async function test_manifest_themes() {
await test_theme_property("images");
await test_theme_property("colors");
ExtensionTestUtils.failOnSchemaWarnings(false);
await test_theme_property("unrecognized_key");
ExtensionTestUtils.failOnSchemaWarnings(true);
});
|