blob: 89bdb2d96300bf5a1db75feeb0609f82919d49fa (
plain)
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
|
"use strict";
function run_test() {
do_get_profile();
const kChunkSize = 256 * 1024;
var payload = "";
for (var i = 0; i < kChunkSize + 10; ++i) {
if (i < kChunkSize - 5) {
payload += "0";
} else {
payload += String.fromCharCode(i + 65);
}
}
asyncOpenCacheEntry(
"http://read/",
"disk",
Ci.nsICacheStorage.OPEN_TRUNCATE,
Services.loadContextInfo.default,
new OpenCallback(NEW | WAITFORWRITE, "", payload, function (entry) {
var is = entry.openInputStream(0);
pumpReadStream(is, function (read) {
Assert.equal(read.length, kChunkSize + 10);
is.close();
Assert.ok(read == payload); // not using do_check_eq since logger will fail for the 1/4MB string
finish_cache2_test();
});
})
);
do_test_pending();
}
|