fune/testing/web-platform/tests/IndexedDB/blob-valid-before-commit.any.js
Nathan Memmott 203bddb834 Bug 1797598 [wpt PR 36674] - Update IndexedDB web tests to durability relaxed, a=testonly
Automatic update from web-platform-tests
Update IndexedDB web tests to durability relaxed

Updates IndexedDB web tests to use the durability relaxed option
for transactions. This will speed up trybots.

Bug: 1258341
Change-Id: I0bfdc1e8adb1490d41b196f6711bdb4131dbe4bc
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3984246
Reviewed-by: Evan Stade <estade@chromium.org>
Commit-Queue: Nathan Memmott <memmott@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1063963}

--

wpt-commits: 8ce3ff8d1c66775db8c21692270ff0e05c366630
wpt-pr: 36674
2022-11-11 12:32:26 +00:00

41 lines
1.4 KiB
JavaScript

// META: title=Blob Valid Before Commit
// META: script=resources/support.js
let key = "key";
indexeddb_test(
function upgrade(t, db) {
db.createObjectStore('store');
},
function success(t, db) {
const blobAContent = "Blob A content";
const blobBContent = "Blob B content";
const blobA = new Blob([blobAContent], {"type" : "text/plain"});
const blobB = new Blob([blobBContent], {"type" : "text/plain"});
const value = { a0: blobA, a1: blobA, b0: blobB };
const tx = db.transaction('store', 'readwrite', {durability: 'relaxed'});
const store = tx.objectStore('store');
store.put(value, key);
const request = store.get(key);
request.onsuccess = t.step_func(function() {
const record = request.result;
const promise1 = record.a0.text().then(t.step_func(text => { assert_equals(text, blobAContent); },
t.unreached_func()));
const promise2 = record.a1.text().then(t.step_func(text => { assert_equals(text, blobAContent); },
t.unreached_func()));
const promise3 = record.b0.text().then(t.step_func(text => { assert_equals(text, blobBContent); },
t.unreached_func()));
Promise.all([promise1, promise2, promise3]).then(function() {
// The test passes if it successfully completes.
t.done();
});
});
},
"Blobs can be read back before their records are committed.");