blob: 7028c1d5c23684cf2f8ebef3264ad30d21af000c (
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
47
48
49
50
51
52
53
54
55
56
57
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/*
* Tests that the profile service refuses to flush when the profiles.ini file
* has been modified.
*/
function check_unchanged(service) {
Assert.ok(
!service.isListOutdated,
"Should not have detected a modification."
);
try {
service.flush();
Assert.ok(true, "Should have flushed.");
} catch (e) {
Assert.ok(false, "Should have succeeded flushing.");
}
}
function check_outdated(service) {
Assert.ok(service.isListOutdated, "Should have detected a modification.");
try {
service.flush();
Assert.ok(false, "Should have failed to flush.");
} catch (e) {
Assert.equal(
e.result,
Cr.NS_ERROR_DATABASE_CHANGED,
"Should have refused to flush."
);
}
}
add_task(async () => {
let service = getProfileService();
Assert.ok(!service.isListOutdated, "Should not be modified yet.");
let profilesini = gDataHome.clone();
profilesini.append("profiles.ini");
Assert.ok(!profilesini.exists(), "File should not exist yet.");
profilesini.create(Ci.nsIFile.NORMAL_FILE_TYPE, 0o644);
check_outdated(service);
profilesini.remove(false);
check_unchanged(service);
let oldTime = profilesini.lastModifiedTime;
profilesini.lastModifiedTime = oldTime - 10000;
check_outdated(service);
// We can't reset the modification time back to exactly what it was, so I
// guess we can't do much more here :(
});
|