2010-06-23 12:46:08 -07:00
|
|
|
<!--
|
|
|
|
Any copyright is dedicated to the Public Domain.
|
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
-->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Indexed Database Property Test</title>
|
|
|
|
|
|
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
|
|
|
|
|
|
<script type="text/javascript;version=1.7">
|
|
|
|
function testSteps()
|
|
|
|
{
|
|
|
|
const name = window.location.pathname;
|
|
|
|
const description = "My Test Database";
|
|
|
|
const objectStore = { name: "Objects", keyPath: "id", autoIncr: true };
|
|
|
|
|
|
|
|
let request = moz_indexedDB.open(name, description);
|
|
|
|
request.onerror = errorHandler;
|
|
|
|
request.onsuccess = grabEventAndContinueHandler;
|
|
|
|
let event = yield;
|
|
|
|
|
|
|
|
let db1 = event.result;
|
|
|
|
|
2010-10-19 10:58:52 -07:00
|
|
|
request = db1.setVersion("1");
|
2010-06-23 12:46:08 -07:00
|
|
|
request.onerror = errorHandler;
|
|
|
|
request.onsuccess = grabEventAndContinueHandler;
|
|
|
|
event = yield;
|
|
|
|
|
|
|
|
is(db1.objectStoreNames.length, 0, "No objectStores in db1");
|
|
|
|
|
2010-10-19 10:58:52 -07:00
|
|
|
db1.createObjectStore(objectStore.name, objectStore.keyPath,
|
|
|
|
objectStore.autoIncr);
|
|
|
|
|
|
|
|
continueToNextStep();
|
|
|
|
yield;
|
|
|
|
|
|
|
|
request = moz_indexedDB.open(name, description);
|
2010-06-23 12:46:08 -07:00
|
|
|
request.onerror = errorHandler;
|
|
|
|
request.onsuccess = grabEventAndContinueHandler;
|
|
|
|
event = yield;
|
|
|
|
|
2010-10-19 10:58:52 -07:00
|
|
|
let db2 = event.result;
|
|
|
|
|
2010-06-23 12:46:08 -07:00
|
|
|
ok(db1 !== db2, "Databases are not the same object");
|
2010-10-19 10:58:52 -07:00
|
|
|
|
2010-06-23 12:46:08 -07:00
|
|
|
is(db1.objectStoreNames.length, 1, "1 objectStore in db1");
|
|
|
|
is(db1.objectStoreNames.item(0), objectStore.name, "Correct name");
|
|
|
|
|
|
|
|
is(db2.objectStoreNames.length, 1, "1 objectStore in db2");
|
|
|
|
is(db2.objectStoreNames.item(0), objectStore.name, "Correct name");
|
|
|
|
|
2010-10-19 10:58:52 -07:00
|
|
|
let objectStore1 = db1.transaction(objectStore.name)
|
|
|
|
.objectStore(objectStore.name);
|
2010-06-23 12:46:08 -07:00
|
|
|
is(objectStore1.name, objectStore.name, "Same name");
|
|
|
|
is(objectStore1.keyPath, objectStore.keyPath, "Same keyPath");
|
|
|
|
is(objectStore1.autoIncrement, objectStore.autoIncrement,
|
|
|
|
"Same value for autoIncrement");
|
|
|
|
|
2010-10-19 10:58:52 -07:00
|
|
|
let objectStore2 = db2.transaction(objectStore.name)
|
2010-10-19 10:58:49 -07:00
|
|
|
.objectStore(objectStore.name);
|
2010-06-23 12:46:08 -07:00
|
|
|
|
|
|
|
ok(objectStore1 !== objectStore2, "Different objectStores");
|
|
|
|
is(objectStore1.name, objectStore2.name, "Same name");
|
|
|
|
is(objectStore1.keyPath, objectStore2.keyPath, "Same keyPath");
|
|
|
|
is(objectStore1.autoIncrement, objectStore2.autoIncrement,
|
|
|
|
"Same value for autoIncrement");
|
|
|
|
|
|
|
|
finishTest();
|
|
|
|
yield;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<script type="text/javascript;version=1.7" src="helpers.js"></script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body onload="runTest();"></body>
|
|
|
|
|
|
|
|
</html>
|