https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 87ab33ad66664bc19c0b9b54493a496e621ccf96 authored by L. David Baron on 04 April 2018, 23:15:54 UTC
Sync Mozilla tests as of https://hg.mozilla.org/mozilla-central/rev/071ee904485e21e19ca08456d32bce6825b77a26 .
Tip revision: 87ab33a
upgrade-transaction-deactivation-timing.html
<!DOCTYPE html>
<meta charset=utf-8>
<title>Upgrade transaction deactivation timing</title>
<link rel="help" href="http://localhost:4201/#upgrade-transaction-steps">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=support.js></script>
<script>

indexeddb_test(
  (t, db, tx) => {
    db.createObjectStore('store');
    assert_true(is_transaction_active(tx, 'store'),
                'Transaction should be active in upgradeneeded callback');
  },
  (t, db) => { t.done(); },
  'Upgrade transactions are active in upgradeneeded callback');

indexeddb_test(
  (t, db, tx) => {
    db.createObjectStore('store');
    assert_true(is_transaction_active(tx, 'store'),
                'Transaction should be active in upgradeneeded callback');

    Promise.resolve().then(t.step_func(() => {
      assert_true(is_transaction_active(tx, 'store'),
                  'Transaction should be active in microtask checkpoint');
    }));
  },
  (t, db) => { t.done(); },
  'Upgrade transactions are active in upgradeneeded callback and microtasks');


indexeddb_test(
  (t, db, tx) => {
    db.createObjectStore('store');
    const release_tx = keep_alive(tx, 'store');

    setTimeout(t.step_func(() => {
      assert_false(is_transaction_active(tx, 'store'),
                   'Transaction should be inactive in next task');
      release_tx();
    }), 0);
  },
  (t, db) => { t.done(); },
  'Upgrade transactions are deactivated before next task');

</script>
back to top