forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IDB WPTs: Extend bigint_value and value WPTs to run on workers
Currently, the bigint_value and value IndexedDB WPTs only run in a window environment. This change combines them into a single file and extends them to also run in dedicated, shared, and service worker environments. Bug: 41455766 Change-Id: I0c73a5069961aa6727d90f9ddbdf1e5dff4ffc87 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5560559 Reviewed-by: Evan Stade <estade@chromium.org> Commit-Queue: Rahul Singh <rahsin@microsoft.com> Cr-Commit-Position: refs/heads/main@{#1319470}
- Loading branch information
1 parent
686ecdb
commit 4298bb7
Showing
3 changed files
with
88 additions
and
112 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
// META: global=window,worker | ||
// META: title=IndexedDB: keys and values | ||
// META: script=resources/support.js | ||
// @author Odin Hørthe Omdal <mailto:odinho@opera.com> | ||
|
||
'use_strict'; | ||
|
||
function setOnUpgradeNeeded(t, predicate, _instanceof, value) { | ||
createdb(t).onupgradeneeded = t.step_func(e => { | ||
const db = e.target.result; | ||
const store = db.createObjectStore("store"); | ||
store.add(value, 1); | ||
|
||
e.target.onsuccess = t.step_func(e => { | ||
const transaction = db.transaction("store", "readonly", { durability: "relaxed" }); | ||
const objectStore = transaction.objectStore("store"); | ||
objectStore.get(1).onsuccess = t.step_func(e => { | ||
if (predicate) { | ||
assert_true(predicate(e.target.result), | ||
"Predicate should return true for the deserialized result."); | ||
} else if (_instanceof) { | ||
assert_true(e.target.result instanceof _instanceof, "instanceof"); | ||
} | ||
t.done(); | ||
}); | ||
}); | ||
}); | ||
} | ||
|
||
// BigInt and BigInt objects are supported in serialization, per | ||
// https://github.com/whatwg/html/pull/3480 | ||
// This support allows them to be used as IndexedDB values. | ||
|
||
function value_test(value, predicate, name) { | ||
async_test(t => { | ||
t.step(function () { | ||
assert_true(predicate(value), | ||
"Predicate should return true for the initial value."); | ||
}); | ||
|
||
setOnUpgradeNeeded(t, predicate, null, value); | ||
}, "BigInts as values in IndexedDB - " + name); | ||
} | ||
|
||
value_test(1n, | ||
x => x === 1n, | ||
"primitive BigInt"); | ||
value_test(Object(1n), | ||
x => typeof x === 'object' && | ||
x instanceof BigInt && | ||
x.valueOf() === 1n, | ||
"BigInt object"); | ||
value_test({ val: 1n }, | ||
x => x.val === 1n, | ||
"primitive BigInt inside object"); | ||
value_test({ val: Object(1n) }, | ||
x => x.val.valueOf() === 1n && | ||
x.val instanceof BigInt && | ||
x.val.valueOf() === 1n, | ||
"BigInt object inside object"); | ||
|
||
// However, BigInt is not supported as an IndexedDB key; support | ||
// has been proposed in the following PR, but that change has not | ||
// landed at the time this patch was written | ||
// https://github.com/w3c/IndexedDB/pull/231 | ||
|
||
function invalidKey(key, name) { | ||
test(t => { | ||
assert_throws_dom("DataError", () => indexedDB.cmp(0, key)); | ||
}, "BigInts as keys in IndexedDB - " + name); | ||
} | ||
|
||
invalidKey(1n, "primitive BigInt"); | ||
// Still an error even if the IndexedDB patch lands | ||
invalidKey(Object(1n), "BigInt object"); | ||
|
||
function value(value, _instanceof) { | ||
async_test(t => { | ||
t.step(function () { | ||
assert_true(value instanceof _instanceof, "TEST ERROR, instanceof"); | ||
}); | ||
|
||
setOnUpgradeNeeded(t, null, _instanceof, value); | ||
}, "Values - " + _instanceof.name); | ||
} | ||
|
||
value(new Date(), Date); | ||
value(new Array(), Array); |
This file was deleted.
Oops, something went wrong.