summaryrefslogtreecommitdiffstats
path: root/browser/components/migration/tests/unit/test_MigrationUtils_timedRetry.js
blob: 5038f33f2b0d373518b03217f1225d2529f7f51c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"use strict";

ChromeUtils.defineModuleGetter(this, "OS", "resource://gre/modules/osfile.jsm");

let tmpFile = FileUtils.getDir("TmpD", [], true);
let dbConn;

add_task(async function setup() {
  tmpFile.append("TestDB");
  dbConn = await Sqlite.openConnection({ path: tmpFile.path });

  registerCleanupFunction(() => {
    dbConn.close();
    OS.File.remove(tmpFile.path);
  });
});

add_task(async function testgetRowsFromDBWithoutLocksRetries() {
  let promise = MigrationUtils.getRowsFromDBWithoutLocks(
    tmpFile.path,
    "Temp DB",
    "SELECT * FROM moz_temp_table"
  );
  await new Promise(resolve => do_timeout(50, resolve));
  dbConn.execute("CREATE TABLE moz_temp_table (id INTEGER PRIMARY KEY)");
  await promise;
});