2021-03-05 00:19:13 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2021-08-10 02:26:20 +05:30
|
|
|
import {openDatabase, txnAsPromise, reqAsPromise} from "./utils";
|
2021-03-05 00:19:13 +05:30
|
|
|
|
|
|
|
// filed as https://bugs.webkit.org/show_bug.cgi?id=222746
|
2021-08-13 22:34:03 +05:30
|
|
|
export async function detectWebkitEarlyCloseTxnBug(idbFactory: IDBFactory): Promise<boolean> {
|
2021-03-05 00:19:13 +05:30
|
|
|
const dbName = "hydrogen_webkit_test_inactive_txn_bug";
|
|
|
|
try {
|
|
|
|
const db = await openDatabase(dbName, db => {
|
|
|
|
db.createObjectStore("test", {keyPath: "key"});
|
2021-06-02 16:01:13 +05:30
|
|
|
}, 1, idbFactory);
|
2021-03-05 00:19:13 +05:30
|
|
|
const readTxn = db.transaction(["test"], "readonly");
|
|
|
|
await reqAsPromise(readTxn.objectStore("test").get("somekey"));
|
|
|
|
// schedule a macro task in between the two txns
|
|
|
|
await new Promise(r => setTimeout(r, 0));
|
|
|
|
const writeTxn = db.transaction(["test"], "readwrite");
|
|
|
|
await Promise.resolve();
|
|
|
|
writeTxn.objectStore("test").add({key: "somekey", value: "foo"});
|
|
|
|
await txnAsPromise(writeTxn);
|
2021-03-05 02:39:11 +05:30
|
|
|
db.close();
|
2021-03-05 00:19:13 +05:30
|
|
|
} catch (err) {
|
|
|
|
if (err.name === "TransactionInactiveError") {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|