summaryrefslogtreecommitdiff
path: root/packages/idb-bridge/src/idb-wpt-ported/idbtransaction-oncomplete.test.ts
blob: f728cd487d73217da0d15a0d5ac4d6dd7fad15ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import test from "ava";
import { createdb, initTestIndexedDB } from "./wptsupport.js";

test.before("test DB initialization", initTestIndexedDB);

// IDBTransaction - complete event
test("WPT idbtransaction-oncomplete.htm", async (t) => {
  await new Promise<void>((resolve, reject) => {
    var db: any;
    var store: any;
    let open_rq = createdb(t);
    let stages: any[] = [];

    open_rq.onupgradeneeded = function (e: any) {
      stages.push("upgradeneeded");

      db = e.target.result;
      store = db.createObjectStore("store");

      e.target.transaction.oncomplete = function () {
        stages.push("complete");
      };
    };

    open_rq.onsuccess = function (e: any) {
      stages.push("success");

      // Making a totally new transaction to check
      db
        .transaction("store")
        .objectStore("store")
        .count().onsuccess = function (e: any) {
        t.deepEqual(stages, ["upgradeneeded", "complete", "success"]);
        resolve();
      };
      // XXX: Make one with real transactions, not only open() versionchange one

      /*db.transaction.objectStore('store').openCursor().onsuccess = function(e) {
          stages.push("opencursor1");
      }
      store.openCursor().onsuccess = function(e) {
          stages.push("opencursor2");
      }
      e.target.transaction.objectStore('store').openCursor().onsuccess = function(e) {
          stages.push("opencursor3");
      }
      */
    };
  });
  t.pass();
});