gecko-dev/netwerk/test/unit/test_cache2-04-oncacheentryavail-throws2x.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.1 KiB
JavaScript
Raw Normal View History

"use strict";
function run_test() {
do_get_profile();
// Open but let OCEA throw
asyncOpenCacheEntry(
"http://d/",
"disk",
Ci.nsICacheStorage.OPEN_NORMALLY,
null,
new OpenCallback(NEW | THROWAVAIL, null, null, function () {
// Open but let OCEA throw ones again
asyncOpenCacheEntry(
"http://d/",
"disk",
Ci.nsICacheStorage.OPEN_NORMALLY,
null,
new OpenCallback(NEW | THROWAVAIL, null, null, function () {
// Try it again, should go
asyncOpenCacheEntry(
"http://d/",
"disk",
Ci.nsICacheStorage.OPEN_NORMALLY,
null,
new OpenCallback(NEW, "d1m", "d1d", function () {
// ...and check
asyncOpenCacheEntry(
"http://d/",
"disk",
Ci.nsICacheStorage.OPEN_NORMALLY,
null,
new OpenCallback(NORMAL, "d1m", "d1d", function () {
finish_cache2_test();
})
);
})
);
})
);
})
);
do_test_pending();
}