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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/* 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: function(aSubject, aTopic, aData) {
if (aTopic != "flush-cache-entry")
return;
// Ignore flushes triggered by the fake cert DB
if (aData == "cert-override")
return;
do_check_true(gExpectedFile != null);
do_check_true(aSubject instanceof AM_Ci.nsIFile);
do_check_eq(aSubject.path, gExpectedFile.path);
gCacheFlushCount++;
}
};
function run_test() {
do_test_pending();
Services.obs.addObserver(CacheFlushObserver, "flush-cache-entry", false);
createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "2");
startupManager();
run_test_1();
}
// Tests that the cache is flushed when cancelling a pending install
function run_test_1() {
AddonManager.getInstallForFile(do_get_addon("test_cacheflush1"), function(aInstall) {
completeAllInstalls([aInstall], function() {
// We should flush the staged XPI when cancelling the install
gExpectedFile = gProfD.clone();
gExpectedFile.append("extensions");
gExpectedFile.append("staged");
gExpectedFile.append("addon1@tests.mozilla.org.xpi");
aInstall.cancel();
do_check_eq(gCacheFlushCount, 1);
gExpectedFile = null;
gCacheFlushCount = 0;
run_test_2();
});
});
}
// Tests that the cache is flushed when uninstalling an add-on
function run_test_2() {
installAllFiles([do_get_addon("test_cacheflush1")], function() {
// Installing will flush the staged XPI during startup
gExpectedFile = gProfD.clone();
gExpectedFile.append("extensions");
gExpectedFile.append("staged");
gExpectedFile.append("addon1@tests.mozilla.org.xpi");
restartManager();
do_check_eq(gCacheFlushCount, 1);
gExpectedFile = null;
gCacheFlushCount = 0;
AddonManager.getAddonByID("addon1@tests.mozilla.org", function(a1) {
// We should flush the installed XPI when uninstalling
do_check_true(a1 != null);
a1.uninstall();
do_check_eq(gCacheFlushCount, 0);
gExpectedFile = gProfD.clone();
gExpectedFile.append("extensions");
gExpectedFile.append("addon1@tests.mozilla.org.xpi");
restartManager();
do_check_eq(gCacheFlushCount, 1);
gExpectedFile = null;
gCacheFlushCount = 0;
do_execute_soon(run_test_3);
});
});
}
// Tests that the cache is flushed when installing a restartless add-on
function run_test_3() {
AddonManager.getInstallForFile(do_get_addon("test_cacheflush2"), function(aInstall) {
aInstall.addListener({
onInstallStarted: function() {
// 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: function() {
do_check_eq(gCacheFlushCount, 1);
gExpectedFile = null;
gCacheFlushCount = 0;
do_execute_soon(run_test_4);
}
});
aInstall.install();
});
}
// Tests that the cache is flushed when uninstalling a restartless add-on
function run_test_4() {
AddonManager.getAddonByID("addon2@tests.mozilla.org", function(a2) {
// We should flush the installed XPI when uninstalling
gExpectedFile = gProfD.clone();
gExpectedFile.append("extensions");
gExpectedFile.append("addon2@tests.mozilla.org.xpi");
a2.uninstall();
do_check_eq(gCacheFlushCount, 2);
gExpectedFile = null;
gCacheFlushCount = 0;
do_execute_soon(do_test_finished);
});
}
|