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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const { TestUtils } = ChromeUtils.importESModule(
"resource://testing-common/TestUtils.sys.mjs"
);
AddonTestUtils.init(this);
AddonTestUtils.overrideCertDB();
AddonTestUtils.usePrivilegedSignatures = id => id.startsWith("privileged");
AddonTestUtils.createAppInfo(
"xpcshell@tests.mozilla.org",
"XPCShell",
"1",
"42"
);
add_task(async function setup() {
await ExtensionTestUtils.startAddonManager();
});
// This test checks whether the theme experiments work for privileged static themes
// and are ignored for unprivileged static themes.
async function test_experiment_static_theme({ privileged }) {
let extensionManifest = {
theme: {
colors: {},
images: {},
properties: {},
},
theme_experiment: {
colors: {},
images: {},
properties: {},
},
};
const addonId = `${
privileged ? "privileged" : "unprivileged"
}-static-theme@test-extension`;
const themeFiles = {
"manifest.json": {
name: "test theme",
version: "1.0",
manifest_version: 2,
browser_specific_settings: {
gecko: { id: addonId },
},
...extensionManifest,
},
};
const promiseThemeUpdated = TestUtils.topicObserved(
"lightweight-theme-styling-update"
);
let themeAddon;
const { messages } = await AddonTestUtils.promiseConsoleOutput(async () => {
let { addon } = await AddonTestUtils.promiseInstallXPI(themeFiles);
// Enable the newly installed static theme.
await addon.enable();
themeAddon = addon;
});
const themeExperimentNotAllowed = {
message: /This extension is not allowed to run theme experiments/,
};
AddonTestUtils.checkMessages(messages, {
forbidden: privileged ? [themeExperimentNotAllowed] : [],
expected: privileged ? [] : [themeExperimentNotAllowed],
});
if (privileged) {
// ext-theme.js Theme class constructor doesn't call Theme.prototype.load
// if the static theme includes theme_experiment but isn't allowed to.
info("Wait for theme updated observer service topic to be notified");
const [topicSubject] = await promiseThemeUpdated;
let themeData = topicSubject.wrappedJSObject;
ok(
themeData.experiment,
"Expect theme experiment property to be defined in theme update data"
);
}
const policy = WebExtensionPolicy.getByID(themeAddon.id);
equal(
policy.extension.isPrivileged,
privileged,
`The static theme should be ${privileged ? "privileged" : "unprivileged"}`
);
await themeAddon.uninstall();
}
add_task(function test_privileged_theme() {
return test_experiment_static_theme({ privileged: true });
});
add_task(
{
// Some builds (e.g. thunderbird) have experiments enabled by default.
pref_set: [["extensions.experiments.enabled", false]],
},
function test_unprivileged_theme() {
return test_experiment_static_theme({ privileged: false });
}
);
|