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
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
const { Service } = ChromeUtils.importESModule(
"resource://services-sync/service.sys.mjs"
);
add_task(async function test_tracker_basics() {
let tracker = new LegacyTracker("Tracker", Service);
let id = "the_id!";
_("Make sure nothing exists yet..");
let changes = await tracker.getChangedIDs();
Assert.equal(changes[id], null);
_("Make sure adding of time 0 works");
await tracker.addChangedID(id, 0);
changes = await tracker.getChangedIDs();
Assert.equal(changes[id], 0);
_("A newer time will replace the old 0");
await tracker.addChangedID(id, 10);
changes = await tracker.getChangedIDs();
Assert.equal(changes[id], 10);
_("An older time will not replace the newer 10");
await tracker.addChangedID(id, 5);
changes = await tracker.getChangedIDs();
Assert.equal(changes[id], 10);
_("Adding without time defaults to current time");
await tracker.addChangedID(id);
changes = await tracker.getChangedIDs();
Assert.ok(changes[id] > 10);
});
add_task(async function test_tracker_persistence() {
let tracker = new LegacyTracker("Tracker", Service);
let id = "abcdef";
let promiseSave = new Promise((resolve, reject) => {
let save = tracker._storage._save;
tracker._storage._save = function () {
save.call(tracker._storage).then(resolve, reject);
};
});
await tracker.addChangedID(id, 5);
await promiseSave;
_("IDs saved.");
const changes = await tracker.getChangedIDs();
Assert.equal(5, changes[id]);
let json = await Utils.jsonLoad(["changes", "tracker"], tracker);
Assert.equal(5, json[id]);
});
|