Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: netwerk/test/unit/xpcshell.toml
"use strict";
function run_test() {
do_get_profile();
var mc = new MultipleCallbacks(2, function () {
var mem = getCacheStorage("memory");
var disk = getCacheStorage("disk");
do_check_throws_nsIException(
"NS_ERROR_NOT_AVAILABLE"
);
finish_cache2_test();
});
asyncOpenCacheEntry(
"disk",
Ci.nsICacheStorage.OPEN_NORMALLY,
Services.loadContextInfo.default,
new OpenCallback(NEW | WAITFORWRITE, "meta", "data", function () {
mc.fired();
})
);
asyncOpenCacheEntry(
"memory",
Ci.nsICacheStorage.OPEN_NORMALLY,
Services.loadContextInfo.default,
new OpenCallback(NEW | WAITFORWRITE, "meta", "data", function () {
mc.fired();
})
);
do_test_pending();
}