Skip to content
This repository has been archived by the owner on Aug 4, 2022. It is now read-only.

Commit

Permalink
Bug 1581067 - P4 - Add a test to verify the result; r=asuth
Browse files Browse the repository at this point in the history
  • Loading branch information
chihweitung committed Oct 1, 2019
1 parent b31c62f commit 35e311f
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 0 deletions.
98 changes: 98 additions & 0 deletions dom/cache/test/xpcshell/test_empty_directories.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
/**
* This test is mainly to verify cache won't leave emptry directory.
*/

function resetStorage() {
return new Promise(function(resolve, reject) {
var qms = Services.qms;
var request = qms.reset();
request.callback = resolve;
});
}

async function setUpEnv() {
Services.prefs.setBoolPref("dom.quotaManager.testing", true);

// We need this for generating the basic profile path
create_test_profile("schema_25_profile.zip");

// Trigger storage upgrade
await caches.open("test");
const cacheDir = getCacheDir();
let morgueDir = cacheDir.clone();
morgueDir.append("morgue");

// clean the cache directoy
for (let dir of morgueDir.directoryEntries) {
for (let file of dir.directoryEntries) {
file.remove(false);
}
}

await resetStorage();
}

// This function ensure the directory with file shouldn't have been deleted and
// ensure the directory without file should've been deleted.
function verifyResult() {
const cacheDir = getCacheDir();
let morgueDir = cacheDir.clone();
morgueDir.append("morgue");

let foundEmpty = false;
for (let dir of morgueDir.directoryEntries) {
let empty = true;
// eslint-disable-next-line no-unused-vars
for (let file of dir.directoryEntries) {
empty = false;
}

foundEmpty = foundEmpty || empty;
}
return !foundEmpty;
}

async function run_test() {
const url = "https://www.mozilla.org";
do_test_pending();

info("Setting up environment");

await setUpEnv();

info("Test 0 - InitOrigin shouldn't leave an empty directoy");

let cache = await caches.open("test");
let response = await cache.match(url);
ok(!!response, "Upgrade from 25 to 26 do succeed");
ok(verifyResult(), "InitOrigin should clean all empty directories");

info("Test 1 - DeleteBodyFiles shouldn't leave an empty directoy");

await cache.put(url, response.clone());
await cache.delete(url);

// Extra operation to ensure the deletion is completed
await cache.match(url);

ok(verifyResult(), "Empty directory should be removed");

info("Test 2 - DeleteOrphanedBodyFiles shouldn't leave an empty directoy");

await cache.put(url, response.clone());
// eslint-disable-next-line no-unused-vars
let r = await cache.match(url);
await cache.delete(url);
await resetStorage();

cache = await caches.open("test");

// Extra operation to ensure the deletion is completed
await cache.match(url);

ok(verifyResult(), "Empty directory should be removed");

await caches.delete("test");

do_test_finished();
}
1 change: 1 addition & 0 deletions dom/cache/test/xpcshell/xpcshell.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ support-files =
skip-if = true

[test_bug1425146.js]
[test_empty_directories.js]
[test_migration.js]
[test_padding_error_handle.js]
[test_schema_26_upgrade.js]

0 comments on commit 35e311f

Please sign in to comment.