blob: 83fdf4a0726568ec65a427bbf18e82d6d657071c (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
add_task(async function () {
let testnum = 0;
try {
// ===== test init =====
let testfile = do_get_file("formhistory_v3v4.sqlite");
let profileDir = Services.dirsvc.get("ProfD", Ci.nsIFile);
// Cleanup from any previous tests or failures.
let destFile = profileDir.clone();
destFile.append("formhistory.sqlite");
if (destFile.exists()) {
destFile.remove(false);
}
testfile.copyTo(profileDir, "formhistory.sqlite");
Assert.equal(3, getDBVersion(testfile));
// ===== 1 =====
testnum++;
destFile = profileDir.clone();
destFile.append("formhistory.sqlite");
let dbConnection = Services.storage.openUnsharedDatabase(destFile);
// Do something that will cause FormHistory to access and upgrade the
// database
await FormHistory.count({});
// check for upgraded schema.
Assert.equal(CURRENT_SCHEMA, getDBVersion(destFile));
// Check that the index was added
Assert.ok(dbConnection.tableExists("moz_deleted_formhistory"));
dbConnection.close();
// check that an entry still exists
Assert.ok((await promiseCountEntries("name-A", "value-A")) > 0);
} catch (e) {
throw new Error(`FAILED in test #${testnum} -- ${e}`);
}
});
|