blob: 0c5cfa8451927a127766bb20eda656cc77eee12b (
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
|
// 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()
{
window.setTimeout('afterCommit()', 0);
}
function gotValue()
{
value = event.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");
result = store.get('myKey');
result.onsuccess = gotValue;
result.onerror = unexpectedErrorCallback;
// TODO(hans): Enable this again with the new semantics after WebKit rolls.
//var emptyResult = store.get('nonExistingKey');
//emptyResult.onsuccess = unexpectedSuccessCallback;
//emptyResult.onerror = nonExistingKey;
nonExistingKey();
}
function populateObjectStore()
{
deleteAllObjectStores(db);
window.objectStore = db.createObjectStore('storeName');
var result = objectStore.add('myValue', 'myKey');
result.onsuccess = startTransaction;
result.onerror = unexpectedErrorCallback;
}
function setVersion()
{
window.db = event.result;
var result = db.setVersion('new version');
result.onsuccess = populateObjectStore;
result.onerror = unexpectedErrorCallback;
}
function test()
{
result = webkitIndexedDB.open('name');
result.onsuccess = setVersion;
result.onerror = unexpectedErrorCallback;
}
|