Bug 1581067 - P4 - Add a test to verify the result; r=asuth

Differential Revision: https://phabricator.services.mozilla.com/D47452

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Tom Tung 2019-10-01 13:08:15 +00:00
Родитель f77e1ddedb
Коммит 30f7de3114
2 изменённых файлов: 99 добавлений и 0 удалений

98
dom/cache/test/xpcshell/test_empty_directories.js поставляемый Normal file
Просмотреть файл

@ -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
dom/cache/test/xpcshell/xpcshell.ini поставляемый
Просмотреть файл

@ -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]