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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
// This verifies that flushing the zipreader cache happens when appropriate
var gExpectedFile = null;
var gCacheFlushCount = 0;
var CacheFlushObserver = {
observe(aSubject, aTopic, aData) {
if (aTopic != "flush-cache-entry") {
return;
}
// Ignore flushes from the fake cert DB or extension-process-script
if (aData == "cert-override" || aSubject == null) {
return;
}
if (!gExpectedFile) {
return;
}
ok(aSubject instanceof Ci.nsIFile);
equal(aSubject.path, gExpectedFile.path);
gCacheFlushCount++;
},
};
add_task(async function setup() {
Services.obs.addObserver(CacheFlushObserver, "flush-cache-entry");
createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "2");
await promiseStartupManager();
});
// Tests that the cache is flushed when installing a restartless add-on
add_task(async function test_flush_restartless_install() {
let xpi = await createTempWebExtensionFile({
manifest: {
name: "Cache Flush Test",
version: "2.0",
browser_specific_settings: { gecko: { id: "addon2@tests.mozilla.org" } },
},
});
let install = await AddonManager.getInstallForFile(xpi);
await new Promise(resolve => {
install.addListener({
onInstallStarted() {
// We should flush the staged XPI when completing the install
gExpectedFile = gProfD.clone();
gExpectedFile.append("extensions");
gExpectedFile.append("staged");
gExpectedFile.append("addon2@tests.mozilla.org.xpi");
},
onInstallEnded() {
equal(gCacheFlushCount, 1);
gExpectedFile = null;
gCacheFlushCount = 0;
resolve();
},
});
install.install();
});
});
// Tests that the cache is flushed when uninstalling a restartless add-on
add_task(async function test_flush_uninstall() {
let addon = await AddonManager.getAddonByID("addon2@tests.mozilla.org");
// We should flush the installed XPI when uninstalling
gExpectedFile = gProfD.clone();
gExpectedFile.append("extensions");
gExpectedFile.append("addon2@tests.mozilla.org.xpi");
await addon.uninstall();
ok(gCacheFlushCount >= 1);
gExpectedFile = null;
gCacheFlushCount = 0;
});
|