blob: 01784a5fef7ee533132997119c19b1da435b92d7 (
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
|
/* -*- 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.
ok(
(
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
);
});
|