blob: 339259f44b73ca1f02a200458672f0a4a468ede0 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
(async function() {
TestRunner.addResult(
`Ensure transactions created within Promise callbacks are not deactivated due to console activity\n`);
await TestRunner.loadModule('console_test_runner');
await TestRunner.loadModule('application_test_runner');
// Note: every test that uses a storage API must manually clean-up state from previous tests.
await ApplicationTestRunner.resetState();
var dbname = location.href;
indexedDB.deleteDatabase(dbname).onsuccess = function() {
var openRequest = indexedDB.open(dbname);
openRequest.onupgradeneeded = function() {
openRequest.result.createObjectStore('store');
};
openRequest.onsuccess = function(event) {
var db = event.target.result;
Promise.resolve().then(function() {
tx = db.transaction('store');
ConsoleTestRunner.evaluateInConsole('1 + 2');
try {
tx.objectStore('store').get(0);
TestRunner.addResult('PASS: Transaction is still active');
} catch (ex) {
TestRunner.addResult('FAIL: ' + ex.message);
} finally {
TestRunner.completeTest();
}
});
};
};
})();