2012-01-04 19:43:33 +04:00
|
|
|
/**
|
|
|
|
* Any copyright is dedicated to the Public Domain.
|
|
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
*/
|
|
|
|
|
|
|
|
var testGenerator = testSteps();
|
|
|
|
|
|
|
|
function testSteps()
|
|
|
|
{
|
|
|
|
const name = this.window ? window.location.pathname : "Splendid Test";
|
|
|
|
const entryCount = 1000;
|
|
|
|
|
2012-07-13 09:37:28 +04:00
|
|
|
let request = indexedDB.open(name, 1);
|
2012-01-04 19:43:33 +04:00
|
|
|
request.onerror = errorHandler;
|
|
|
|
request.onupgradeneeded = grabEventAndContinueHandler;
|
2013-07-11 01:52:35 +04:00
|
|
|
let event = yield undefined;
|
2012-01-04 19:43:33 +04:00
|
|
|
|
|
|
|
let db = request.result;
|
|
|
|
|
|
|
|
event.target.onsuccess = continueToNextStep;
|
|
|
|
|
|
|
|
let objectStore = db.createObjectStore("foo", { autoIncrement: true });
|
|
|
|
|
|
|
|
let firstKey;
|
|
|
|
for (let i = 0; i < entryCount; i++) {
|
|
|
|
request = objectStore.add({});
|
|
|
|
request.onerror = errorHandler;
|
|
|
|
if (!i) {
|
|
|
|
request.onsuccess = function(event) {
|
|
|
|
firstKey = event.target.result;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2013-07-11 01:52:35 +04:00
|
|
|
yield undefined;
|
2012-01-04 19:43:33 +04:00
|
|
|
|
|
|
|
isnot(firstKey, undefined, "got first key");
|
|
|
|
|
|
|
|
let seenEntryCount = 0;
|
|
|
|
|
|
|
|
request = db.transaction("foo").objectStore("foo").openCursor();
|
|
|
|
request.onerror = errorHandler;
|
|
|
|
request.onsuccess = function(event) {
|
|
|
|
let cursor = event.target.result;
|
|
|
|
if (cursor) {
|
|
|
|
seenEntryCount++;
|
|
|
|
cursor.continue();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
continueToNextStep();
|
|
|
|
}
|
|
|
|
}
|
2013-07-11 01:52:35 +04:00
|
|
|
yield undefined;
|
2012-01-04 19:43:33 +04:00
|
|
|
|
|
|
|
is(seenEntryCount, entryCount, "Correct entry count");
|
|
|
|
|
|
|
|
try {
|
|
|
|
db.transaction("foo").objectStore("foo").clear();
|
|
|
|
ok(false, "clear should throw on READ_ONLY transactions");
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
ok(true, "clear should throw on READ_ONLY transactions");
|
|
|
|
}
|
|
|
|
|
2015-01-26 09:30:09 +03:00
|
|
|
request = db.transaction("foo", "readwriteflush")
|
|
|
|
.objectStore("foo")
|
|
|
|
.clear();
|
2012-01-04 19:43:33 +04:00
|
|
|
request.onerror = errorHandler;
|
|
|
|
request.onsuccess = grabEventAndContinueHandler;
|
2013-07-11 01:52:35 +04:00
|
|
|
event = yield undefined;
|
2012-01-04 19:43:33 +04:00
|
|
|
|
|
|
|
ok(event.target.result === undefined, "Correct event.target.result");
|
|
|
|
ok(request.result === undefined, "Correct request.result");
|
|
|
|
ok(request === event.target, "Correct event.target");
|
|
|
|
|
|
|
|
request = db.transaction("foo").objectStore("foo").openCursor();
|
|
|
|
request.onerror = errorHandler;
|
|
|
|
request.onsuccess = function(event) {
|
|
|
|
let cursor = request.result;
|
|
|
|
if (cursor) {
|
|
|
|
ok(false, "Shouldn't have any entries");
|
|
|
|
}
|
|
|
|
continueToNextStep();
|
|
|
|
}
|
2013-07-11 01:52:35 +04:00
|
|
|
yield undefined;
|
2012-01-04 19:43:33 +04:00
|
|
|
|
2015-01-26 09:30:09 +03:00
|
|
|
request = db.transaction("foo", "readwrite")
|
|
|
|
.objectStore("foo")
|
|
|
|
.add({});
|
2012-01-04 19:43:33 +04:00
|
|
|
request.onerror = errorHandler;
|
|
|
|
request.onsuccess = grabEventAndContinueHandler;
|
2013-07-11 01:52:35 +04:00
|
|
|
event = yield undefined;
|
2012-01-04 19:43:33 +04:00
|
|
|
|
|
|
|
isnot(event.target.result, firstKey, "Got a different key");
|
|
|
|
|
|
|
|
finishTest();
|
2013-07-11 01:52:35 +04:00
|
|
|
yield undefined;
|
2012-01-04 19:43:33 +04:00
|
|
|
}
|