Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(470)

Side by Side Diff: third_party/WebKit/LayoutTests/storage/indexeddb/idbcursor-continue-exception-order.html

Issue 2659513002: Upstream an assortment of IndexedDB tests to WPT. (Closed)
Patch Set: Rebased MANIFEST.json Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>IndexedDB: IDBCursor continue() Exception Ordering</title>
3 <meta charset=utf-8>
4 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbcursor-continue">
5 <script src="../../resources/testharness.js"></script>
6 <script src="../../resources/testharnessreport.js"></script>
7 <script src="resources/testharness-helpers.js"></script>
8 <script>
9
10 indexeddb_test(
11 (t, db) => {
12 const s = db.createObjectStore('s');
13 s.put('value', 'key');
14 },
15 (t, db) => {
16 const s = db.transaction('s', 'readonly').objectStore('s');
17 const r = s.openKeyCursor();
18 r.onsuccess = t.step_func(() => {
19 r.onsuccess = null;
20 const cursor = r.result;
21 setTimeout(t.step_func(() => {
22 assert_throws('TransactionInactiveError', () => {
23 cursor.continue({not: "a valid key"});
24 }, '"Transaction inactive" check (TransactionInactiveError) ' +
25 'should precede "invalid key" check (DataError)');
26 t.done();
27 }), 0);
28 });
29 },
30 'IDBCursor.continue exception order: TransactionInactiveError vs. DataError'
31 );
32
33 indexeddb_test(
34 (t, db) => {
35 const s = db.createObjectStore('s');
36 s.put('value', 'key');
37 },
38 (t, db) => {
39 const s = db.transaction('s', 'readonly').objectStore('s');
40 const r = s.openKeyCursor();
41 r.onsuccess = t.step_func(() => {
42 r.onsuccess = null;
43 const cursor = r.result;
44 cursor.continue();
45 r.onsuccess = t.step_func(() => {
46 setTimeout(t.step_func(() => {
47 assert_throws('TransactionInactiveError', () => {
48 cursor.continue();
49 }, '"Transaction inactive" check (TransactionInactiveError) ' +
50 'should precede "got value flag" check (InvalidStateError)');
51 t.done();
52 }), 0);
53 });
54 });
55 },
56 'IDBCursor.continue exception order: TransactionInactiveError vs. InvalidState Error'
57 );
58
59 indexeddb_test(
60 (t, db) => {
61 const s = db.createObjectStore('s');
62 s.put('value', 'key');
63 },
64 (t, db) => {
65 const s = db.transaction('s', 'readonly').objectStore('s');
66 const r = s.openKeyCursor();
67 r.onsuccess = t.step_func(() => {
68 r.onsuccess = null;
69 const cursor = r.result;
70 cursor.continue();
71 assert_throws('InvalidStateError', () => {
72 cursor.continue({not: "a valid key"});
73 }, '"got value flag" check (InvalidStateError) should precede ' +
74 '"invalid key" check (DataError)');
75 t.done();
76 });
77 },
78 'IDBCursor.continue exception order: InvalidStateError vs. DataError'
79 );
80
81 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698