summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/test/unit/test_clear.js
blob: d504ff885102d4759af5674a7f3b1ee699415002 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/**
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

/* exported testGenerator */
var testGenerator = testSteps();

function* testSteps() {
  const name = this.window ? window.location.pathname : "Splendid Test";
  const entryCount = 1000;

  let request = indexedDB.open(name, 1);
  request.onerror = errorHandler;
  request.onupgradeneeded = grabEventAndContinueHandler;
  let event = yield undefined;

  let db = request.result;

  event.target.onsuccess = continueToNextStep;

  let objectStore = db.createObjectStore("foo", { autoIncrement: true });

  let firstKey;
  for (let i = 0; i < entryCount; i++) {
    request = objectStore.add({});
    request.onerror = errorHandler;
    if (!i) {
      request.onsuccess = function (event) {
        firstKey = event.target.result;
      };
    }
  }
  yield undefined;

  isnot(firstKey, undefined, "got first key");

  let seenEntryCount = 0;

  request = db.transaction("foo").objectStore("foo").openCursor();
  request.onerror = errorHandler;
  request.onsuccess = function (event) {
    let cursor = event.target.result;
    if (cursor) {
      seenEntryCount++;
      cursor.continue();
    } else {
      continueToNextStep();
    }
  };
  yield undefined;

  is(seenEntryCount, entryCount, "Correct entry count");

  try {
    db.transaction("foo").objectStore("foo").clear();
    ok(false, "clear should throw on READ_ONLY transactions");
  } catch (e) {
    ok(true, "clear should throw on READ_ONLY transactions");
  }

  request = db.transaction("foo", "readwriteflush").objectStore("foo").clear();
  request.onerror = errorHandler;
  request.onsuccess = grabEventAndContinueHandler;
  event = yield undefined;

  ok(event.target.result === undefined, "Correct event.target.result");
  ok(request.result === undefined, "Correct request.result");
  ok(request === event.target, "Correct event.target");

  request = db.transaction("foo").objectStore("foo").openCursor();
  request.onerror = errorHandler;
  request.onsuccess = function (event) {
    let cursor = request.result;
    if (cursor) {
      ok(false, "Shouldn't have any entries");
    }
    continueToNextStep();
  };
  yield undefined;

  request = db.transaction("foo", "readwrite").objectStore("foo").add({});
  request.onerror = errorHandler;
  request.onsuccess = grabEventAndContinueHandler;
  event = yield undefined;

  isnot(event.target.result, firstKey, "Got a different key");

  finishTest();
}