gecko/dom/indexedDB/test/test_open_empty_db.html

67 lines
2.1 KiB
HTML

<!--
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";
let request;
try {
request = mozIndexedDB.open("", "");
ok(false, "Open with empty name should have thrown!");
}
catch(e) {
is(e instanceof IDBDatabaseException, true, "Got IDBDatabaseException");
is(e.code, IDBDatabaseException.NON_TRANSIENT_ERR, "Good error code");
is(request, undefined, "Shouldn't be set to anything");
}
try {
request = mozIndexedDB.open(null, "");
ok(false, "Open with null name should have thrown!");
}
catch(e) {
is(e instanceof IDBDatabaseException, true, "Got IDBDatabaseException");
is(e.code, IDBDatabaseException.NON_TRANSIENT_ERR, "Good error code");
is(request, undefined, "Shouldn't be set to anything");
}
request = mozIndexedDB.open(name, description);
request.onerror = errorHandler;
request.onsuccess = grabEventAndContinueHandler;
let event = yield;
let db = event.target.result;
is(db.name, name, "Bad name");
is(db.version, "", "Bad version");
is(db.objectStoreNames.length, 0, "Bad objectStores list");
is(db.name, request.result.name, "Bad name");
is(db.version, request.result.version, "Bad version");
is(db.objectStoreNames.length, request.result.objectStoreNames.length,
"Bad objectStores list");
finishTest();
yield;
}
</script>
<script type="text/javascript;version=1.7" src="helpers.js"></script>
</head>
<body onload="runTest();"></body>
</html>