Skip to content

Commit 2b8ebc2

Browse files
Garima Chadhachromium-wpt-export-bot
Garima Chadha
authored andcommitted
IDB: Make Transaction::abort() throw error when txn is committing
Ensure the abort() method throws an “InvalidStateError” DOMException when called during the committing state of a transaction. Update the transaction state to kCommitting during auto-commits to align with the spec (IndexedDB Spec). Bug: 390986925 Change-Id: Id7c1bc8d56cacc761b00c6ea41c24a518f5c0693 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6176649 Auto-Submit: Garima Chadha <[email protected]> Commit-Queue: Garima Chadha <[email protected]> Reviewed-by: Abhishek Shanthkumar <[email protected]> Reviewed-by: Steve Becker <[email protected]> Cr-Commit-Position: refs/heads/main@{#1417978}
1 parent 476d51e commit 2b8ebc2

File tree

1 file changed

+72
-2
lines changed

1 file changed

+72
-2
lines changed

IndexedDB/idbtransaction_abort.any.js

+72-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// META: global=window,worker
33
// META: script=resources/support.js
44

5+
// Spec: https://w3c.github.io/IndexedDB/#transaction-abort
6+
57
'use strict';
68

79
async_test(t => {
@@ -14,7 +16,6 @@ async_test(t => {
1416
db = e.target.result;
1517
let txn = e.target.transaction;
1618
let objStore = db.createObjectStore('store');
17-
1819
objStore.add(record, 1);
1920
objStore.add(record, 2);
2021
let index =
@@ -34,4 +35,73 @@ async_test(t => {
3435

3536
e.target.transaction.oncomplete = fail(t, 'got complete, expected abort');
3637
};
37-
});
38+
}, 'Abort event should fire during transaction');
39+
40+
indexeddb_test(
41+
(t, db) => {
42+
db.createObjectStore('blobs', {keyPath: 'id', autoIncrement: true});
43+
},
44+
(t, db) => {
45+
const txn = db.transaction('blobs', 'readwrite');
46+
const objectStore = txn.objectStore('blobs');
47+
const data = new Blob(['test'], {type: 'text/plain'});
48+
49+
const putRequest = objectStore.put({id: 0, data: data});
50+
51+
putRequest.onsuccess = t.step_func(() => {
52+
t.step_timeout(() => {
53+
assert_throws_dom('InvalidStateError', () => {
54+
txn.abort();
55+
}, 'Abort should throw InvalidStateError on an auto-committing transaction.');
56+
}, 0);
57+
});
58+
59+
// Ensure the transaction completes.
60+
txn.oncomplete = t.step_func(() => {
61+
t.done();
62+
});
63+
64+
// Abort should fail once the transaction has started committing.
65+
txn.onabort = t.step_func((event) => {
66+
assert_unreached('Unexpected transaction abort: ' + event.target.error);
67+
});
68+
t.add_cleanup(() => {
69+
if (db) {
70+
db.close();
71+
}
72+
});
73+
},
74+
`Abort during auto-committing should throw InvalidStateError.`);
75+
76+
indexeddb_test(
77+
(t, db) => {
78+
db.createObjectStore('blobs', {keyPath: 'id', autoIncrement: true});
79+
},
80+
(t, db) => {
81+
const txn = db.transaction('blobs', 'readwrite');
82+
const objectStore = txn.objectStore('blobs');
83+
const data = new Blob(['test'], {type: 'text/plain'});
84+
85+
// Put the object into the store.
86+
const putRequest = objectStore.put({id: 0, data: data});
87+
88+
// Handle transaction completion.
89+
txn.oncomplete = t.step_func(() => {
90+
assert_throws_dom('InvalidStateError', () => {
91+
txn.abort();
92+
}, 'Abort should throw InvalidStateError on a completed transaction.');
93+
t.done();
94+
});
95+
96+
// Handle transaction error.
97+
txn.onerror = t.step_func((event) => {
98+
assert_unreached('Unexpected transaction error: ' + event.target.error);
99+
});
100+
101+
t.add_cleanup(() => {
102+
if (db) {
103+
db.close();
104+
}
105+
});
106+
},
107+
`Abort on completed transaction should throw InvalidStateError.`);

0 commit comments

Comments
 (0)