1
0
Fork 0
firefox/netwerk/test/unit/test_cache2-22-anon-visit.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

43 lines
1 KiB
JavaScript

"use strict";
function run_test() {
do_get_profile();
var mc = new MultipleCallbacks(2, function () {
var storage = getCacheStorage("disk", Services.loadContextInfo.default);
storage.asyncVisitStorage(
new VisitCallback(1, 1024, ["http://an2/"], function () {
storage = getCacheStorage("disk", Services.loadContextInfo.anonymous);
storage.asyncVisitStorage(
new VisitCallback(1, 1024, ["http://an2/"], function () {
finish_cache2_test();
}),
true
);
}),
true
);
});
asyncOpenCacheEntry(
"http://an2/",
"disk",
Ci.nsICacheStorage.OPEN_NORMALLY,
Services.loadContextInfo.default,
new OpenCallback(NEW | WAITFORWRITE, "an2", "an2", function () {
mc.fired();
})
);
asyncOpenCacheEntry(
"http://an2/",
"disk",
Ci.nsICacheStorage.OPEN_NORMALLY,
Services.loadContextInfo.anonymous,
new OpenCallback(NEW | WAITFORWRITE, "an2", "an2", function () {
mc.fired();
})
);
do_test_pending();
}