blob: af798a5fc68f972759a2139fc7a092c14cc996e4 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="../../resources/runner.js"></script>
<script>
const numberOfIterations = 20;
const numberOfItems = 5000;
// Delete database(s) for the test ahead of time.
var databaseName = "objectstore-get-DB";
indexedDB.deleteDatabase(databaseName).onsuccess = function() {
startIteration();
}
var testGenerator = null;
var db = null;
var transaction = null;
PerfTestRunner.prepareToMeasureValuesAsync({
customIterationCount: numberOfIterations,
unit: 'ms',
done: function () {
transaction = null;
db = null;
testGenerator = null;
PerfTestRunner.gc();
}
});
function startIteration()
{
testGenerator = runIteration();
nextStep();
}
function nextStep()
{
testGenerator.next();
}
function *runIteration()
{
var openRequest = indexedDB.open(databaseName);
openRequest.onupgradeneeded = function(event) {
db = event.target.result;
var objectStore = db.createObjectStore('store');
for (var i = 0; i < numberOfItems; ++i)
objectStore.put("index" + i, i);
}
openRequest.onsuccess = nextStep;
yield;
var startTime = PerfTestRunner.now();
var objectStore = db.transaction('store').objectStore('store');
var completedGets = 0;
for (var i = 0; i < numberOfItems; ++i) {
objectStore.get(i).onsuccess = (function (j) {
return function(event) {
if (event.target.result != ("index" + j))
alert("Expected 'index" + j + "', got '" + event.target.result + "'");
if (++completedGets == numberOfItems)
nextStep();
}
})(i);
}
yield;
if (!PerfTestRunner.measureValueAsync(PerfTestRunner.now() - startTime))
return;
setTimeout(startIteration, 0);
}
</script>
</body>
</html>