/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* *Thisfiletestsedge-casesrelatedtomozStorageService::unregisterConnection *inthefaceoffailsafeclosingatdestructiontimewhichresultsin *SpinningSynchronousClosebeinginvokedwhichcan"resurrect"theconnection *andresultinasecondcalltounregisterConnection. * *Seehttps://bugzilla.mozilla.org/show_bug.cgi?id=1413501 for more context.
*/
add_task(async function test_failsafe_close_of_async_connection() { // get the db
let db = getOpenedDatabase();
// do something async
let callbackInvoked = new Promise(resolve => {
db.executeSimpleSQLAsync("CREATE TABLE test (id INTEGER)", {
handleCompletion: resolve,
});
});
// drop our reference and force a GC so the only live reference is owned by // the async statement.
db = gDBConn = null; // (we don't need to cycle collect)
Cu.forceGC();
// now we need to wait for that callback to have completed.
await callbackInvoked;
Assert.ok(true, "if we shutdown cleanly and do not crash, then we succeeded");
});
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.