2010-09-09 15:15:44 -07:00
|
|
|
/**
|
|
|
|
* Any copyright is dedicated to the Public Domain.
|
|
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
*/
|
|
|
|
|
|
|
|
let testGenerator = testSteps();
|
|
|
|
|
|
|
|
let testResult;
|
|
|
|
let testException;
|
|
|
|
|
|
|
|
function testFinishedCallback(result, exception)
|
|
|
|
{
|
|
|
|
throw new Error("Bad testFinishedCallback!");
|
|
|
|
}
|
|
|
|
|
|
|
|
function runTest()
|
|
|
|
{
|
|
|
|
testGenerator.next();
|
|
|
|
}
|
|
|
|
|
|
|
|
function finishTestNow()
|
|
|
|
{
|
|
|
|
if (testGenerator) {
|
|
|
|
testGenerator.close();
|
2011-01-10 16:09:56 -08:00
|
|
|
testGenerator = undefined;
|
2010-09-09 15:15:44 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function finishTest()
|
|
|
|
{
|
|
|
|
setTimeout(finishTestNow, 0);
|
|
|
|
setTimeout(testFinishedCallback, 0, testResult, testException);
|
|
|
|
}
|
|
|
|
|
|
|
|
function grabEventAndContinueHandler(event)
|
|
|
|
{
|
|
|
|
testGenerator.send(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
function errorHandler(event)
|
|
|
|
{
|
2011-01-06 22:21:36 -08:00
|
|
|
throw new Error("indexedDB error, code " + event.target.errorCode);
|
2010-09-09 15:15:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function continueToNextStep()
|
|
|
|
{
|
|
|
|
SimpleTest.executeSoon(function() {
|
|
|
|
testGenerator.next();
|
|
|
|
});
|
|
|
|
}
|