Bug 767193 - FileHandles do not get GCed/removed when overwritten in indexeddb. r=bent

This commit is contained in:
Jan Varga 2012-06-27 05:14:53 +02:00
Родитель e3b670c130
Коммит 6565546c36
3 изменённых файлов: 76 добавлений и 2 удалений

Просмотреть файл

@ -184,9 +184,15 @@ IDBFactory::GetConnection(const nsAString& aDatabaseFilePath)
getter_AddRefs(connection));
NS_ENSURE_SUCCESS(rv, nsnull);
// Turn on foreign key constraints!
// Turn on foreign key constraints and recursive triggers.
// The "INSERT OR REPLACE" statement doesn't fire the update trigger,
// instead it fires only the insert trigger. This confuses the update
// refcount function. This behavior changes with enabled recursive triggers,
// so the statement fires the delete trigger first and then the insert
// trigger.
rv = connection->ExecuteSimpleSQL(NS_LITERAL_CSTRING(
"PRAGMA foreign_keys = ON;"
"PRAGMA foreign_keys = ON; "
"PRAGMA recursive_triggers = ON;"
));
NS_ENSURE_SUCCESS(rv, nsnull);

Просмотреть файл

@ -51,6 +51,7 @@ TEST_FILES = \
test_file_os_delete.html \
test_file_put_get_object.html \
test_file_put_get_values.html \
test_file_replace.html \
test_file_resurrection_delete.html \
test_file_resurrection_transaction_abort.html \
test_file_sharing.html \

Просмотреть файл

@ -0,0 +1,67 @@
<!--
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="/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";
const objectStoreName = "Blobs";
const blobData = { key: 42, blobs: [] };
for (let i = 0; i < 100; i++) {
blobData.blobs[i] = getRandomBlob(i);
}
let request = mozIndexedDB.open(name, 1, description);
request.onerror = errorHandler;
request.onupgradeneeded = grabEventAndContinueHandler;
request.onsuccess = grabEventAndContinueHandler;
let event = yield;
is(event.type, "upgradeneeded", "Got correct event type");
let db = event.target.result;
db.onerror = errorHandler;
let objectStore = db.createObjectStore(objectStoreName, { });
for (let i = 0; i < blobData.blobs.length; i++) {
objectStore.put(blobData.blobs[i], blobData.key);
}
event = yield;
is(event.type, "success", "Got correct event type");
for (let id = 1; id <= 100; id++) {
let refs = {};
let dbRefs = {};
let hasFileInfo = utils.getFileReferences(name, id, refs, dbRefs);
ok(hasFileInfo, "Has file info");
is(refs.value, 1, "Correct ref count");
is(dbRefs.value, id / 100 >> 0, "Correct db ref count");
}
finishTest();
yield;
}
</script>
<script type="text/javascript;version=1.7" src="file.js"></script>
<script type="text/javascript;version=1.7" src="helpers.js"></script>
</head>
<body onload="runTest();"></body>
</html>