summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/test/unit/test_defaultStorageUpgrade.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
commit2aa4a82499d4becd2284cdb482213d541b8804dd (patch)
treeb80bf8bf13c3766139fbacc530efd0dd9d54394c /dom/indexedDB/test/unit/test_defaultStorageUpgrade.js
parentInitial commit. (diff)
downloadfirefox-upstream.tar.xz
firefox-upstream.zip
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/indexedDB/test/unit/test_defaultStorageUpgrade.js')
-rw-r--r--dom/indexedDB/test/unit/test_defaultStorageUpgrade.js168
1 files changed, 168 insertions, 0 deletions
diff --git a/dom/indexedDB/test/unit/test_defaultStorageUpgrade.js b/dom/indexedDB/test/unit/test_defaultStorageUpgrade.js
new file mode 100644
index 0000000000..9ed71242b5
--- /dev/null
+++ b/dom/indexedDB/test/unit/test_defaultStorageUpgrade.js
@@ -0,0 +1,168 @@
+/**
+ * Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/
+ */
+
+var testGenerator = testSteps();
+
+function* testSteps() {
+ Services.prefs.setBoolPref("dom.indexedDB.storageOption.enabled", true);
+ registerCleanupFunction(() => {
+ Services.prefs.clearUserPref("dom.indexedDB.storageOption.enabled");
+ });
+
+ const openParams = [
+ // This one lives in storage/default/http+++localhost
+ { url: "http://localhost", dbName: "dbA", dbVersion: 1 },
+
+ // This one lives in storage/default/http+++www.mozilla.org
+ { url: "http://www.mozilla.org", dbName: "dbB", dbVersion: 1 },
+
+ // This one lives in storage/default/http+++www.mozilla.org+8080
+ { url: "http://www.mozilla.org:8080", dbName: "dbC", dbVersion: 1 },
+
+ // This one lives in storage/default/https+++www.mozilla.org
+ { url: "https://www.mozilla.org", dbName: "dbD", dbVersion: 1 },
+
+ // This one lives in storage/default/https+++www.mozilla.org+8080
+ { url: "https://www.mozilla.org:8080", dbName: "dbE", dbVersion: 1 },
+
+ // This one lives in storage/permanent/indexeddb+++fx-devtools
+ {
+ url: "indexeddb://fx-devtools",
+ dbName: "dbF",
+ dbOptions: { version: 1, storage: "persistent" },
+ },
+
+ // This one lives in storage/permanent/moz-safe-about+home
+ {
+ url: "moz-safe-about:home",
+ dbName: "dbG",
+ dbOptions: { version: 1, storage: "persistent" },
+ },
+
+ // This one lives in storage/default/file++++Users+joe+
+ { url: "file:///Users/joe/", dbName: "dbH", dbVersion: 1 },
+
+ // This one lives in storage/default/file++++Users+joe+index.html
+ { url: "file:///Users/joe/index.html", dbName: "dbI", dbVersion: 1 },
+
+ // This one lives in storage/default/file++++c++Users+joe+
+ { url: "file:///c:/Users/joe/", dbName: "dbJ", dbVersion: 1 },
+
+ // This one lives in storage/default/file++++c++Users+joe+index.html
+ { url: "file:///c:/Users/joe/index.html", dbName: "dbK", dbVersion: 1 },
+
+ // This one lives in storage/permanent/chrome
+ { dbName: "dbL", dbVersion: 1 },
+
+ // This one lives in storage/default/http+++127.0.0.1
+ { url: "http://127.0.0.1", dbName: "dbO", dbVersion: 1 },
+
+ // This one lives in storage/default/file++++
+ { url: "file:///", dbName: "dbP", dbVersion: 1 },
+
+ // This one lives in storage/default/file++++c++
+ { url: "file:///c:/", dbName: "dbQ", dbVersion: 1 },
+
+ // This one lives in storage/default/file++++Users+joe+c+++index.html
+ { url: "file:///Users/joe/c++/index.html", dbName: "dbR", dbVersion: 1 },
+
+ // This one lives in storage/default/file++++Users+joe+c+++index.html
+ { url: "file:///Users/joe/c///index.html", dbName: "dbR", dbVersion: 1 },
+
+ // This one lives in storage/default/file++++++index.html
+ { url: "file:///+/index.html", dbName: "dbS", dbVersion: 1 },
+
+ // This one lives in storage/default/file++++++index.html
+ { url: "file://///index.html", dbName: "dbS", dbVersion: 1 },
+
+ // This one lives in storage/permanent/resource+++fx-share-addon-at-mozilla-dot-org-fx-share-addon-data
+ {
+ url: "resource://fx-share-addon-at-mozilla-dot-org-fx-share-addon-data",
+ dbName: "dbU",
+ dbOptions: { version: 1, storage: "persistent" },
+ },
+
+ // This one lives in storage/temporary/http+++localhost+81
+ // The .metadata file was intentionally removed for this origin directory
+ // to test restoring during upgrade.
+ {
+ url: "http://localhost:81",
+ dbName: "dbV",
+ dbOptions: { version: 1, storage: "temporary" },
+ },
+
+ // This one lives in storage/temporary/http+++localhost+82
+ // The .metadata file was intentionally truncated for this origin directory
+ // to test restoring during upgrade.
+ {
+ url: "http://localhost:82",
+ dbName: "dbW",
+ dbOptions: { version: 1, storage: "temporary" },
+ },
+
+ // This one lives in storage/temporary/http+++localhost
+ {
+ url: "http://localhost",
+ dbName: "dbZ",
+ dbOptions: { version: 1, storage: "temporary" },
+ },
+ ];
+
+ function openDatabase(params) {
+ let request;
+ if ("url" in params) {
+ let principal = getPrincipal(params.url);
+ if ("dbVersion" in params) {
+ request = indexedDB.openForPrincipal(
+ principal,
+ params.dbName,
+ params.dbVersion
+ );
+ } else {
+ request = indexedDB.openForPrincipal(
+ principal,
+ params.dbName,
+ params.dbOptions
+ );
+ }
+ } else if ("dbVersion" in params) {
+ request = indexedDB.open(params.dbName, params.dbVersion);
+ } else {
+ request = indexedDB.open(params.dbName, params.dbOptions);
+ }
+ return request;
+ }
+
+ clearAllDatabases(continueToNextStepSync);
+ yield undefined;
+
+ installPackagedProfile("defaultStorageUpgrade_profile");
+
+ for (let params of openParams) {
+ let request = openDatabase(params);
+ request.onerror = errorHandler;
+ request.onupgradeneeded = unexpectedSuccessHandler;
+ request.onsuccess = grabEventAndContinueHandler;
+ let event = yield undefined;
+
+ is(event.type, "success", "Correct event type");
+ }
+
+ resetAllDatabases(continueToNextStepSync);
+ yield undefined;
+
+ for (let params of openParams) {
+ let request = openDatabase(params);
+ request.onerror = errorHandler;
+ request.onupgradeneeded = unexpectedSuccessHandler;
+ request.onsuccess = grabEventAndContinueHandler;
+ let event = yield undefined;
+
+ is(event.type, "success", "Correct event type");
+ }
+
+ finishTest();
+ yield undefined;
+}