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
|
function run_test()
{
do_get_profile();
var storage = getCacheStorage("memory");
var mc = new MultipleCallbacks(3, function() {
storage.asyncEvictStorage(
new EvictionCallback(true, function() {
storage.asyncVisitStorage(
new VisitCallback(0, 0, [], function() {
var storage = getCacheStorage("disk");
var expectedConsumption = newCacheBackEndUsed()
? 2048
: 24;
storage.asyncVisitStorage(
new VisitCallback(2, expectedConsumption, ["http://a/", "http://b/"], function() {
finish_cache2_test();
}),
true
);
}),
true
);
})
);
}, !newCacheBackEndUsed());
asyncOpenCacheEntry("http://mem1/", "memory", Ci.nsICacheStorage.OPEN_NORMALLY, null,
new OpenCallback(NEW, "m2m", "m2d", function(entry) {
asyncOpenCacheEntry("http://mem1/", "memory", Ci.nsICacheStorage.OPEN_NORMALLY, null,
new OpenCallback(NORMAL, "m2m", "m2d", function(entry) {
mc.fired();
})
);
})
);
asyncOpenCacheEntry("http://a/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
new OpenCallback(NEW, "a1m", "a1d", function(entry) {
asyncOpenCacheEntry("http://a/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
new OpenCallback(NORMAL, "a1m", "a1d", function(entry) {
mc.fired();
})
);
})
);
asyncOpenCacheEntry("http://b/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
new OpenCallback(NEW, "a1m", "a1d", function(entry) {
asyncOpenCacheEntry("http://b/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
new OpenCallback(NORMAL, "a1m", "a1d", function(entry) {
mc.fired();
})
);
})
);
do_test_pending();
}
|