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
91
92
93
94
95
96
97
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
/* exported testGenerator */
var testGenerator = testSteps();
function* testSteps() {
let request = indexedDB.open(
this.window ? window.location.pathname : "Splendid Test",
1
);
request.onerror = errorHandler;
request.onupgradeneeded = grabEventAndContinueHandler;
request.onsuccess = unexpectedSuccessHandler;
let event = yield undefined;
let db = event.target.result;
db.onerror = errorHandler;
event.target.transaction.onerror = errorHandler;
event.target.transaction.oncomplete = grabEventAndContinueHandler;
let os = db.createObjectStore("foo", { autoIncrement: true });
os.createIndex("bar", "foo.bar");
event = yield undefined;
is(
request.transaction,
event.target,
"request.transaction should still be set"
);
request.onsuccess = grabEventAndContinueHandler;
event = yield undefined;
is(request.transaction, null, "request.transaction should be cleared");
let transaction = db.transaction("foo", "readwrite");
os = transaction.objectStore("foo");
// Place a request to keep the transaction alive long enough for our
// executeSoon.
let requestComplete = false;
let wasAbleToGrabObjectStoreOutsideOfCallback = false;
let wasAbleToGrabIndexOutsideOfCallback = false;
executeSoon(function () {
ok(!requestComplete, "Ordering is correct.");
wasAbleToGrabObjectStoreOutsideOfCallback =
!!transaction.objectStore("foo");
wasAbleToGrabIndexOutsideOfCallback = !!transaction
.objectStore("foo")
.index("bar");
});
request = os.add({});
request.onerror = errorHandler;
request.onsuccess = grabEventAndContinueHandler;
event = yield undefined;
requestComplete = true;
ok(
wasAbleToGrabObjectStoreOutsideOfCallback,
"Should be able to get objectStore"
);
ok(wasAbleToGrabIndexOutsideOfCallback, "Should be able to get index");
transaction.oncomplete = grabEventAndContinueHandler;
yield undefined;
try {
transaction.objectStore("foo");
ok(false, "Should have thrown!");
} catch (e) {
ok(e instanceof DOMException, "Got database exception.");
is(e.name, "InvalidStateError", "Good error.");
is(e.code, DOMException.INVALID_STATE_ERR, "Good error code.");
}
continueToNextStep();
yield undefined;
try {
transaction.objectStore("foo");
ok(false, "Should have thrown!");
} catch (e) {
ok(e instanceof DOMException, "Got database exception.");
is(e.name, "InvalidStateError", "Good error.");
is(e.code, DOMException.INVALID_STATE_ERR, "Good error code.");
}
finishTest();
}
|