Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: security/manager/ssl/tests/unit/xpcshell-smartcards.toml
// Any copyright is dedicated to the Public Domain.
"use strict";
// Tests the methods for interfacing with the PKCS #11 token database.
// Ensure that the appropriate initialization has happened.
do_get_profile();
function run_test() {
let tokenDB = Cc["@mozilla.org/security/pk11tokendb;1"].getService(
Ci.nsIPK11TokenDB
);
notEqual(
tokenDB.getInternalKeyToken(),
null,
"The internal token should be non-null"
);
}