28 lines
1.1 KiB
JavaScript
28 lines
1.1 KiB
JavaScript
/* -*- 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 nsIOSReauthenticator.asyncReauthenticateUser().
|
|
// As this gets implemented on various platforms, running this test
|
|
// will result in a prompt from the OS. Consequently, we won't be able
|
|
// to run this in automation, but it will help in testing locally.
|
|
add_task(async function test_asyncReauthenticateUser() {
|
|
const reauthenticator = Cc[
|
|
"@mozilla.org/security/osreauthenticator;1"
|
|
].getService(Ci.nsIOSReauthenticator);
|
|
ok(reauthenticator, "nsIOSReauthenticator should be available");
|
|
const EXPECTED = false; // Change this variable to suit your needs while testing.
|
|
Assert.equal(
|
|
(
|
|
await reauthenticator.asyncReauthenticateUser(
|
|
"this is the prompt string",
|
|
"this is the caption string",
|
|
null
|
|
)
|
|
)[0],
|
|
EXPECTED,
|
|
"nsIOSReauthenticator.asyncReauthenticateUser should return a boolean array with the first item being the authentication result of: " +
|
|
EXPECTED
|
|
);
|
|
});
|