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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/* 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"
);
function CanDecryptEngine() {
SyncEngine.call(this, "CanDecrypt", Service);
}
CanDecryptEngine.prototype = {
// Override these methods with mocks for the test
async canDecrypt() {
return true;
},
wasWiped: false,
async wipeClient() {
this.wasWiped = true;
},
};
Object.setPrototypeOf(CanDecryptEngine.prototype, SyncEngine.prototype);
function CannotDecryptEngine() {
SyncEngine.call(this, "CannotDecrypt", Service);
}
CannotDecryptEngine.prototype = {
// Override these methods with mocks for the test
async canDecrypt() {
return false;
},
wasWiped: false,
async wipeClient() {
this.wasWiped = true;
},
};
Object.setPrototypeOf(CannotDecryptEngine.prototype, SyncEngine.prototype);
let canDecryptEngine;
let cannotDecryptEngine;
add_task(async function setup() {
await Service.engineManager.clear();
await Service.engineManager.register(CanDecryptEngine);
await Service.engineManager.register(CannotDecryptEngine);
canDecryptEngine = Service.engineManager.get("candecrypt");
cannotDecryptEngine = Service.engineManager.get("cannotdecrypt");
});
add_task(async function test_withEngineList() {
try {
_("Ensure initial scenario.");
Assert.ok(!canDecryptEngine.wasWiped);
Assert.ok(!cannotDecryptEngine.wasWiped);
_("Wipe local engine data.");
await Service.wipeClient(["candecrypt", "cannotdecrypt"]);
_("Ensure only the engine that can decrypt was wiped.");
Assert.ok(canDecryptEngine.wasWiped);
Assert.ok(!cannotDecryptEngine.wasWiped);
} finally {
canDecryptEngine.wasWiped = false;
cannotDecryptEngine.wasWiped = false;
await Service.startOver();
}
});
add_task(async function test_startOver_clears_keys() {
syncTestLogging();
await generateNewKeys(Service.collectionKeys);
Assert.ok(!!Service.collectionKeys.keyForCollection());
await Service.startOver();
syncTestLogging();
Assert.ok(!Service.collectionKeys.keyForCollection());
});
|