blob: 5319750374a4a412279fc847d0c22c4db47a7052 (
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
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
function afterCommit()
{
try {
debug("Accessing a committed transaction should throw");
var store = transaction.objectStore('storeName');
} catch (e) {
exc = e;
shouldBe('exc.code', 'webkitIDBDatabaseException.NOT_ALLOWED_ERR');
}
done();
}
function nonExistingKey()
{
shouldBe("event.target.result", "undefined");
window.setTimeout('afterCommit()', 0);
}
function gotValue()
{
value = event.target.result;
shouldBeEqualToString('value', 'myValue');
}
function startTransaction()
{
debug("Using get in a transaction");
transaction = db.transaction();
//transaction.onabort = unexpectedErrorCallback;
store = transaction.objectStore('storeName');
shouldBeEqualToString("store.name", "storeName");
request = store.get('myKey');
request.onsuccess = gotValue;
request.onerror = unexpectedErrorCallback;
var emptyRequest = store.get('nonExistingKey');
emptyRequest.onsuccess = nonExistingKey;
emptyRequest.onerror = unexpectedErrorCallback;
}
function populateObjectStore()
{
deleteAllObjectStores(db);
window.objectStore = db.createObjectStore('storeName');
var request = objectStore.add('myValue', 'myKey');
request.onsuccess = startTransaction;
request.onerror = unexpectedErrorCallback;
}
function setVersion()
{
window.db = event.target.result;
var request = db.setVersion('new version');
request.onsuccess = populateObjectStore;
request.onerror = unexpectedErrorCallback;
}
function test()
{
request = webkitIndexedDB.open('name');
request.onsuccess = setVersion;
request.onerror = unexpectedErrorCallback;
}
|