summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/IndexedDB/fire-success-event-exception.html
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/fire-success-event-exception.html
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/fire-success-event-exception.html')
-rw-r--r--testing/web-platform/tests/IndexedDB/fire-success-event-exception.html79
1 files changed, 79 insertions, 0 deletions
diff --git a/testing/web-platform/tests/IndexedDB/fire-success-event-exception.html b/testing/web-platform/tests/IndexedDB/fire-success-event-exception.html
new file mode 100644
index 0000000000..eaff1b962a
--- /dev/null
+++ b/testing/web-platform/tests/IndexedDB/fire-success-event-exception.html
@@ -0,0 +1,79 @@
+<!DOCTYPE html>
+<meta charset=utf-8>
+<title>Fire success event - Exception thrown</title>
+<link rel="help" href="https://w3c.github.io/IndexedDB/#fire-success-event">
+<script src=/resources/testharness.js></script>
+<script src=/resources/testharnessreport.js></script>
+<script src=resources/support.js></script>
+<script>
+setup({allow_uncaught_exception:true});
+
+function fire_success_event_test(func, description) {
+ indexeddb_test(
+ (t, db) => {
+ db.createObjectStore('s');
+ },
+ (t, db) => {
+ const tx = db.transaction('s', 'readonly', {durability: 'relaxed'});
+ tx.oncomplete = t.unreached_func('transaction should abort');
+ const store = tx.objectStore('s');
+ const request = store.get(0);
+ func(t, db, tx, request);
+ tx.addEventListener('abort', t.step_func_done(() => {
+ assert_equals(tx.error.name, 'AbortError');
+ }));
+ },
+ description);
+}
+
+fire_success_event_test((t, db, tx, request) => {
+ request.onsuccess = () => {
+ throw Error();
+ };
+}, 'Exception in success event handler on request');
+
+fire_success_event_test((t, db, tx, request) => {
+ request.addEventListener('success', () => {
+ throw Error();
+ });
+}, 'Exception in success event listener on request');
+
+fire_success_event_test((t, db, tx, request) => {
+ request.addEventListener('success', {
+ get handleEvent() {
+ throw new Error();
+ },
+ });
+}, 'Exception in success event listener ("handleEvent" lookup) on request');
+
+fire_success_event_test((t, db, tx, request) => {
+ request.addEventListener('success', {
+ handleEvent: null,
+ });
+}, 'Exception in success event listener (non-callable "handleEvent") on request');
+
+fire_success_event_test((t, db, tx, request) => {
+ request.addEventListener('success', () => {
+ // no-op
+ });
+ request.addEventListener('success', () => {
+ throw Error();
+ });
+}, 'Exception in second success event listener on request');
+
+fire_success_event_test((t, db, tx, request) => {
+ let second_listener_called = false;
+ request.addEventListener('success', () => {
+ throw Error();
+ });
+ request.addEventListener('success', t.step_func(() => {
+ second_listener_called = true;
+ assert_true(is_transaction_active(tx, 's'),
+ 'Transaction should be active until dispatch completes');
+ }));
+ tx.addEventListener('abort', t.step_func(() => {
+ assert_true(second_listener_called);
+ }));
+}, 'Exception in first success event listener, tx active in second');
+
+</script>