1
0
Fork 0
firefox/security/manager/ssl/tests/unit/test_osreauthenticator.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

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
);
});