Mypal/devtools/client/storage/test/browser_storage_indexeddb_delete_blocked.js
2019-03-11 13:26:37 +03:00

59 lines
1.7 KiB
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* import-globals-from ../../framework/test/shared-head.js */
"use strict";
// Test what happens when deleting indexedDB database is blocked
add_task(function* () {
yield openTabAndSetupStorage(MAIN_DOMAIN + "storage-idb-delete-blocked.html");
info("test state before delete");
yield checkState([
[["indexedDB", "http://test1.example.org"], ["idb (default)"]]
]);
info("do the delete");
yield selectTreeItem(["indexedDB", "http://test1.example.org"]);
let front = gUI.getCurrentFront();
let result = yield front.removeDatabase("http://test1.example.org", "idb (default)");
ok(result.blocked, "removeDatabase attempt is blocked");
info("test state after blocked delete");
yield checkState([
[["indexedDB", "http://test1.example.org"], ["idb (default)"]]
]);
let eventWait = gUI.once("store-objects-updated");
info("telling content to close the db");
yield ContentTask.spawn(gBrowser.selectedBrowser, null, function* () {
let win = content.wrappedJSObject;
yield win.closeDb();
});
info("waiting for store update events");
yield eventWait;
info("test state after real delete");
yield checkState([
[["indexedDB", "http://test1.example.org"], []]
]);
info("try to delete database from nonexistent host");
let errorThrown = false;
try {
result = yield front.removeDatabase("http://test2.example.org", "idb (default)");
} catch (ex) {
errorThrown = true;
}
ok(errorThrown, "error was reported when trying to delete");
yield finishTests();
});