fune/testing/web-platform/tests/IndexedDB/blob-delete-objectstore-db.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

47 lines
1.8 KiB
JavaScript

// META: title=Blob Delete Object Store
// META: script=resources/support.js
let key = "blob key";
indexeddb_test(
function upgrade(t, db) {
const store0 = db.createObjectStore('store0');
const store1 = db.createObjectStore('store1');
const blobAContent = "First blob content";
const blobA = new Blob([blobAContent], {"type" : "text/plain"});
store0.put(blobA, key);
},
function success(t, db) {
db.close();
const request = indexedDB.open(db.name, 2);
request.onupgradeneeded = t.step_func(function(e) {
const db = e.target.result;
db.deleteObjectStore('store0');
request.onsuccess = t.step_func(function() {
const blobBContent = "Second blob content";
const trans = db.transaction('store1', 'readwrite', {durability: 'relaxed'});
const store1 = trans.objectStore('store1');
const blobB = new Blob([blobBContent], {"type" : "text/plain"});
store1.put(blobB, key);
trans.oncomplete = t.step_func(function() {
db.close();
const delete_request = indexedDB.deleteDatabase(db.name);
// The test passes if it successfully completes.
delete_request.onsuccess = t.step_func_done();
delete_request.onerror = t.unreached_func("Request should not fail.");
});
trans.onabort = t.unreached_func("Transaction should not be aborted.");
});
});
request.onsuccess = t.unreached_func("Request should not succeed without an upgrade.");
request.onerror = t.unreached_func("Request should not fail.");
request.onblocked = t.unreached_func("Request should not be blocked.");
}, "Deleting an object store and a database containing blobs doesn't crash.");