mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
40 lines
1.3 KiB
JavaScript
40 lines
1.3 KiB
JavaScript
function run_test()
|
|
{
|
|
do_get_profile();
|
|
|
|
// Open for write, write
|
|
asyncOpenCacheEntry("http://304/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
|
|
new OpenCallback(NEW, "31m", "31d", function(entry) {
|
|
// Open normally but wait for validation from the server
|
|
asyncOpenCacheEntry("http://304/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
|
|
new OpenCallback(REVAL, "31m", "31d", function(entry) {
|
|
// emulate 304 from the server
|
|
do_execute_soon(function() {
|
|
entry.setValid(); // this will trigger OpenCallbacks bellow
|
|
});
|
|
})
|
|
);
|
|
|
|
var mc = new MultipleCallbacks(3, finish_cache2_test);
|
|
|
|
asyncOpenCacheEntry("http://304/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
|
|
new OpenCallback(NORMAL, "31m", "31d", function(entry) {
|
|
mc.fired();
|
|
})
|
|
);
|
|
asyncOpenCacheEntry("http://304/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
|
|
new OpenCallback(NORMAL, "31m", "31d", function(entry) {
|
|
mc.fired();
|
|
})
|
|
);
|
|
asyncOpenCacheEntry("http://304/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
|
|
new OpenCallback(NORMAL, "31m", "31d", function(entry) {
|
|
mc.fired();
|
|
})
|
|
);
|
|
})
|
|
);
|
|
|
|
do_test_pending();
|
|
}
|