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
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/publicdomain/zero/1.0/
"use strict";
// Tests that the platform can load the osclientcerts module.
// Ensure that the appropriate initialization has happened.
Services.prefs.setBoolPref("security.osclientcerts.autoload", false);
do_get_profile();
const { TestUtils } = ChromeUtils.importESModule(
"resource://testing-common/TestUtils.sys.mjs"
);
async function check_osclientcerts_module_loaded() {
// Loading happens asynchronously, so we have to wait for the notification.
await TestUtils.topicObserved("psm:load-os-client-certs-module-task-ran");
let testModule = checkPKCS11ModuleExists(
"OS Client Cert Module",
"osclientcerts"
);
// Check that listing the slots for the osclientcerts module works.
let testModuleSlotNames = Array.from(
testModule.listSlots(),
slot => slot.name
);
testModuleSlotNames.sort();
const expectedSlotNames = ["OS Client Cert Slot"];
deepEqual(
testModuleSlotNames,
expectedSlotNames,
"Actual and expected slot names should be equal"
);
}
add_task(async function run_test() {
// Check that if we haven't loaded the osclientcerts module, we don't find it
// in the module list.
checkPKCS11ModuleNotPresent("OS Client Cert Module", "osclientcerts");
// Check that enabling the pref that loads the osclientcerts module makes it
// appear in the module list.
Services.prefs.setBoolPref("security.osclientcerts.autoload", true);
await check_osclientcerts_module_loaded();
// Check that disabling the pref that loads the osclientcerts module (thus
// unloading the module) makes it disappear from the module list.
Services.prefs.setBoolPref("security.osclientcerts.autoload", false);
checkPKCS11ModuleNotPresent("OS Client Cert Module", "osclientcerts");
// Check that loading the module again succeeds.
Services.prefs.setBoolPref("security.osclientcerts.autoload", true);
await check_osclientcerts_module_loaded();
// And once more check that unloading succeeds.
Services.prefs.setBoolPref("security.osclientcerts.autoload", false);
checkPKCS11ModuleNotPresent("OS Client Cert Module", "osclientcerts");
});
|