summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/indexeddb/create-object-store-options.html
diff options
context:
space:
mode:
Diffstat (limited to 'LayoutTests/storage/indexeddb/create-object-store-options.html')
-rw-r--r--LayoutTests/storage/indexeddb/create-object-store-options.html102
1 files changed, 102 insertions, 0 deletions
diff --git a/LayoutTests/storage/indexeddb/create-object-store-options.html b/LayoutTests/storage/indexeddb/create-object-store-options.html
new file mode 100644
index 0000000..4abb8f6
--- /dev/null
+++ b/LayoutTests/storage/indexeddb/create-object-store-options.html
@@ -0,0 +1,102 @@
+<html>
+<head>
+<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
+<script src="../../fast/js/resources/js-test-pre.js"></script>
+<script src="../../fast/js/resources/js-test-post-function.js"></script>
+<script src="resources/shared.js"></script>
+</head>
+<body>
+<p id="description"></p>
+<div id="console"></div>
+<script>
+
+description("Test IndexedDB's createObjectStore's various options");
+if (window.layoutTestController)
+ layoutTestController.waitUntilDone();
+
+function test()
+{
+ shouldBeTrue("'webkitIndexedDB' in window");
+ shouldBeFalse("webkitIndexedDB == null");
+
+ result = evalAndLog("webkitIndexedDB.open('name', 'description')");
+ verifyResult(result);
+ result.onsuccess = openSuccess;
+ result.onerror = unexpectedErrorCallback;
+}
+
+function openSuccess()
+{
+ db = evalAndLog("db = event.result");
+
+ result = evalAndLog("result = db.setVersion('version 1')");
+ result.onsuccess = cleanDatabase;
+ result.onerror = unexpectedErrorCallback;
+}
+
+function cleanDatabase()
+{
+ deleteAllObjectStores(db, cleaned);
+}
+
+function cleaned()
+{
+ evalAndLog("db.createObjectStore('a', {keyPath: 'a'})");
+ evalAndLog("db.createObjectStore('b')");
+
+ try {
+ // FIXME: This should work in the future.
+ debug("db.createObjectStore('c', {autoIncrement: true});");
+ db.createObjectStore('c', {autoIncrement: true});
+ testFailed('createObjectStore with autoIncrement = true should throw');
+ } catch (err) {
+ testPassed("Exception thrown");
+ code = err.code;
+ shouldBe("code", "webkitIDBDatabaseException.UNKNOWN_ERR");
+ }
+
+ trans = evalAndLog("trans = db.transaction({mode: webkitIDBTransaction.READ_WRITE})");
+ shouldBe("trans.mode", "webkitIDBTransaction.READ_WRITE");
+
+ req = evalAndLog("trans.objectStore('a').put({'a': 0})");
+ req.onsuccess = putB;
+ req.onerror = unexpectedErrorCallback;
+}
+
+function putB()
+{
+ req = evalAndLog("trans.objectStore('b').put({'a': 0}, 0)"); // OOPS
+ req.onsuccess = getA;
+ req.onerror = unexpectedErrorCallback;
+}
+
+function getA()
+{
+ req = evalAndLog("trans.objectStore('a').get(0)");
+ req.onsuccess = getB;
+ req.onerror = unexpectedErrorCallback;
+}
+
+function getB()
+{
+ shouldBe("event.result.a", "{a: 0}");
+
+ req = evalAndLog("trans.objectStore('b').get(0)");
+ req.onsuccess = checkB;
+ req.onerror = unexpectedErrorCallback;
+}
+
+function checkB()
+{
+ shouldBe("event.result.a", "{a: 0}");
+
+ done();
+}
+
+var successfullyParsed = true;
+
+test();
+
+</script>
+</body>
+</html>