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
|
"use strict";
function gen_1MiB() {
var i;
var data = "x";
for (i = 0; i < 20; i++) {
data += data;
}
return data;
}
function write_and_check(str, data, len) {
var written = str.write(data, len);
if (written != len) {
do_throw(
"str.write has not written all data!\n" +
" Expected: " +
len +
"\n" +
" Actual: " +
written +
"\n"
);
}
}
function write_datafile(status, entry) {
Assert.equal(status, Cr.NS_OK);
var data = gen_1MiB();
var os = entry.openOutputStream(0, data.length);
// write 2MiB
var i;
for (i = 0; i < 2; i++) {
write_and_check(os, data, data.length);
}
os.close();
entry.close();
// now change max_entry_size so that the existing entry is too big
Services.prefs.setIntPref("browser.cache.disk.max_entry_size", 1024);
// append to entry
asyncOpenCacheEntry(
"http://data/",
"disk",
Ci.nsICacheStorage.OPEN_NORMALLY,
null,
append_datafile
);
}
function append_datafile(status, entry) {
Assert.equal(status, Cr.NS_OK);
var os = entry.openOutputStream(entry.dataSize, -1);
var data = gen_1MiB();
// append 1MiB
try {
write_and_check(os, data, data.length);
do_throw();
} catch (ex) {}
// closing the ostream should fail in this case
try {
os.close();
do_throw();
} catch (ex) {}
entry.close();
do_test_finished();
}
function run_test() {
do_get_profile();
// clear the cache
evict_cache_entries();
asyncOpenCacheEntry(
"http://data/",
"disk",
Ci.nsICacheStorage.OPEN_NORMALLY,
null,
write_datafile
);
do_test_pending();
}
|