2010-06-23 19:46:08 +00:00
|
|
|
/**
|
|
|
|
* Any copyright is dedicated to the Public Domain.
|
|
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
*/
|
|
|
|
|
|
|
|
var testGenerator = testSteps();
|
2010-09-09 22:15:44 +00:00
|
|
|
|
2010-06-23 19:46:08 +00:00
|
|
|
function runTest()
|
|
|
|
{
|
2010-09-09 22:15:44 +00:00
|
|
|
allowIndexedDB();
|
2010-09-09 22:15:40 +00:00
|
|
|
|
2010-06-23 19:46:08 +00:00
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
testGenerator.next();
|
|
|
|
}
|
|
|
|
|
|
|
|
function finishTest()
|
|
|
|
{
|
2010-09-09 22:15:44 +00:00
|
|
|
disallowIndexedDB();
|
|
|
|
|
2010-06-23 19:46:08 +00:00
|
|
|
SimpleTest.executeSoon(function() {
|
|
|
|
testGenerator.close();
|
|
|
|
SimpleTest.finish();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2010-09-09 22:15:44 +00:00
|
|
|
function browserRunTest()
|
|
|
|
{
|
|
|
|
testGenerator.next();
|
|
|
|
}
|
|
|
|
|
|
|
|
function browserFinishTest()
|
|
|
|
{
|
|
|
|
setTimeout(function() { testGenerator.close(); }, 0);
|
|
|
|
}
|
|
|
|
|
2010-06-23 19:46:08 +00:00
|
|
|
function grabEventAndContinueHandler(event)
|
|
|
|
{
|
|
|
|
testGenerator.send(event);
|
|
|
|
}
|
|
|
|
|
2010-08-26 20:57:30 +00:00
|
|
|
function continueToNextStep()
|
|
|
|
{
|
|
|
|
SimpleTest.executeSoon(function() {
|
|
|
|
testGenerator.next();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2010-06-23 19:46:08 +00:00
|
|
|
function errorHandler(event)
|
|
|
|
{
|
2011-01-07 06:21:36 +00:00
|
|
|
ok(false, "indexedDB error, code " + event.target.errorCode);
|
2010-06-23 19:46:08 +00:00
|
|
|
finishTest();
|
|
|
|
}
|
|
|
|
|
2010-09-09 22:15:44 +00:00
|
|
|
function browserErrorHandler(event)
|
|
|
|
{
|
|
|
|
browserFinishTest();
|
|
|
|
throw new Error("indexedDB error (" + event.code + "): " + event.message);
|
|
|
|
}
|
|
|
|
|
2010-06-23 19:46:08 +00:00
|
|
|
function unexpectedSuccessHandler()
|
|
|
|
{
|
|
|
|
ok(false, "Got success, but did not expect it!");
|
|
|
|
finishTest();
|
|
|
|
}
|
|
|
|
|
|
|
|
function ExpectError(code)
|
|
|
|
{
|
|
|
|
this._code = code;
|
|
|
|
}
|
|
|
|
ExpectError.prototype = {
|
|
|
|
handleEvent: function(event)
|
|
|
|
{
|
2011-01-07 06:21:36 +00:00
|
|
|
is(event.type, "error", "Got an error event");
|
|
|
|
is(this._code, event.target.errorCode, "Expected error was thrown.");
|
2010-11-10 23:26:03 +00:00
|
|
|
event.preventDefault();
|
2010-06-23 19:46:08 +00:00
|
|
|
grabEventAndContinueHandler(event);
|
|
|
|
}
|
|
|
|
};
|
2010-09-09 22:15:44 +00:00
|
|
|
|
|
|
|
function addPermission(permission, url)
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
|
|
|
|
let uri;
|
|
|
|
if (url) {
|
|
|
|
uri = Components.classes["@mozilla.org/network/io-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIIOService)
|
|
|
|
.newURI(url, null, null);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
uri = window.document.documentURIObject;
|
|
|
|
}
|
|
|
|
|
|
|
|
Components.classes["@mozilla.org/permissionmanager;1"]
|
|
|
|
.getService(Components.interfaces.nsIPermissionManager)
|
|
|
|
.add(uri, permission,
|
|
|
|
Components.interfaces.nsIPermissionManager.ALLOW_ACTION);
|
|
|
|
}
|
|
|
|
|
|
|
|
function removePermission(permission, url)
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
|
|
|
|
let uri;
|
|
|
|
if (url) {
|
|
|
|
uri = Components.classes["@mozilla.org/network/io-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIIOService)
|
|
|
|
.newURI(url, null, null);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
uri = window.document.documentURIObject;
|
|
|
|
}
|
|
|
|
|
|
|
|
Components.classes["@mozilla.org/permissionmanager;1"]
|
|
|
|
.getService(Components.interfaces.nsIPermissionManager)
|
2010-10-19 17:58:52 +00:00
|
|
|
.remove(uri.host, permission);
|
2010-09-09 22:15:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function setQuota(quota)
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
|
|
|
|
let prefs = Components.classes["@mozilla.org/preferences-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIPrefBranch);
|
|
|
|
|
|
|
|
prefs.setIntPref("dom.indexedDB.warningQuota", quota);
|
|
|
|
}
|
|
|
|
|
|
|
|
function allowIndexedDB(url)
|
|
|
|
{
|
|
|
|
addPermission("indexedDB", url);
|
|
|
|
}
|
|
|
|
|
|
|
|
function disallowIndexedDB(url)
|
|
|
|
{
|
|
|
|
removePermission("indexedDB", url);
|
|
|
|
}
|
|
|
|
|
|
|
|
function allowUnlimitedQuota(url)
|
|
|
|
{
|
|
|
|
addPermission("indexedDB-unlimited", url);
|
|
|
|
}
|
|
|
|
|
|
|
|
function disallowUnlimitedQuota(url)
|
|
|
|
{
|
|
|
|
removePermission("indexedDB-unlimited", url);
|
|
|
|
}
|