summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/IndexedDB/reading-autoincrement-store-cursors.any.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/IndexedDB/reading-autoincrement-store-cursors.any.js
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/IndexedDB/reading-autoincrement-store-cursors.any.js')
-rw-r--r--testing/web-platform/tests/IndexedDB/reading-autoincrement-store-cursors.any.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/testing/web-platform/tests/IndexedDB/reading-autoincrement-store-cursors.any.js b/testing/web-platform/tests/IndexedDB/reading-autoincrement-store-cursors.any.js
new file mode 100644
index 0000000000..da02057e89
--- /dev/null
+++ b/testing/web-platform/tests/IndexedDB/reading-autoincrement-store-cursors.any.js
@@ -0,0 +1,38 @@
+// META: global=window,dedicatedworker,sharedworker,serviceworker
+// META: script=resources/support-promises.js
+// META: script=resources/reading-autoincrement-common.js
+
+promise_test(async testCase => {
+ const database = await setupAutoincrementDatabase(testCase);
+
+ const transaction = database.transaction(['store'], 'readonly');
+ const store = transaction.objectStore('store');
+
+ const result = await getAllViaCursor(testCase, store);
+ assert_equals(result.length, 32);
+ for (let i = 1; i <= 32; ++i) {
+ assert_equals(result[i - 1].key, i, 'Autoincrement key');
+ assert_equals(result[i - 1].primaryKey, i, 'Autoincrement primary key');
+ assert_equals(result[i - 1].value.id, i, 'Autoincrement key in value');
+ assert_equals(result[i - 1].value.name, nameForId(i),
+ 'string property in value');
+ }
+
+ database.close();
+}, 'IDBObjectStore.openCursor() iterates over an autoincrement store');
+
+promise_test(async testCase => {
+ const database = await setupAutoincrementDatabase(testCase);
+
+ const transaction = database.transaction(['store'], 'readonly');
+ const store = transaction.objectStore('store');
+
+ const result = await getAllKeysViaCursor(testCase, store);
+ assert_equals(result.length, 32);
+ for (let i = 1; i <= 32; ++i) {
+ assert_equals(result[i - 1].key, i, 'Incorrect autoincrement key');
+ assert_equals(result[i - 1].primaryKey, i, 'Incorrect primary key');
+ }
+
+ database.close();
+}, 'IDBObjectStore.openKeyCursor() iterates over an autoincrement store');