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

Side by Side Diff: third_party/WebKit/LayoutTests/storage/indexeddb/idbcursor-update-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 update() Exception Ordering</title>
3 <meta charset=utf-8>
4 <link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbcursor-update">
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.openCursor();
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.update('value2');
24 }, '"Transaction inactive" check (TransactionInactiveError) ' +
25 'should precede "read only" check (ReadOnlyError)');
26 t.done();
27 }), 0);
28 });
29 },
30 'IDBCursor.update exception order: TransactionInactiveError vs. ReadOnlyError'
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.openCursor();
41 r.onsuccess = t.step_func(() => {
42 r.onsuccess = null;
43 const cursor = r.result;
44 cursor.continue();
45 assert_throws('ReadOnlyError', () => {
46 cursor.update('value2');
47 }, '"Read only" check (ReadOnlyError) should precede '+
48 '"got value flag" check (InvalidStateError)');
49 t.done();
50 });
51 },
52 'IDBCursor.update exception order: ReadOnlyError vs. InvalidStateError #1'
53 );
54
55 indexeddb_test(
56 (t, db) => {
57 const s = db.createObjectStore('s');
58 s.put('value', 'key');
59 },
60 (t, db) => {
61 const s = db.transaction('s', 'readonly').objectStore('s');
62 const r = s.openKeyCursor();
63 r.onsuccess = t.step_func(() => {
64 r.onsuccess = null;
65 const cursor = r.result;
66 assert_throws('ReadOnlyError', () => {
67 cursor.update('value2');
68 }, '"Read only" check (ReadOnlyError) should precede '+
69 '"key only flag" check (InvalidStateError)');
70 t.done();
71 });
72 },
73 'IDBCursor.update exception order: ReadOnlyError vs. InvalidStateError #2'
74 );
75
76 indexeddb_test(
77 (t, db) => {
78 const s = db.createObjectStore('s', {keyPath: 'id'});
79 s.put({id: 123, data: 'value'});
80 },
81 (t, db) => {
82 const s = db.transaction('s', 'readwrite').objectStore('s');
83 const r = s.openCursor();
84 r.onsuccess = t.step_func(() => {
85 r.onsuccess = null;
86 const cursor = r.result;
87 cursor.continue();
88 assert_throws('InvalidStateError', () => {
89 cursor.update({id: 123, data: 'value2'});
90 }, '"Got value flag" check (InvalidStateError) should precede ' +
91 '"modified key" check (DataError)');
92 t.done();
93 });
94 },
95 'IDBCursor.update exception order: InvalidStateError vs. DataError'
96 );
97
98 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698