72 lines
3 KiB
HTML
72 lines
3 KiB
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>WebAuthn navigator.credentials.get() timeout Tests</title>
|
|
<meta name="timeout" content="long">
|
|
<link rel="author" title="Adam Powers" href="mailto:adam@fidoalliance.org">
|
|
<link rel="help" href="https://w3c.github.io/webauthn/#iface-credential">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/resources/testdriver.js"></script>
|
|
<script src="/resources/testdriver-vendor.js"></script>
|
|
<script src=helpers.js></script>
|
|
<body></body>
|
|
<script>
|
|
promise_test(async t => {
|
|
"use strict";
|
|
|
|
let credentialId;
|
|
try {
|
|
// if available, set up a mock authenticator that does not respond to user input with a credential
|
|
let authenticator = await window.test_driver.add_virtual_authenticator({
|
|
protocol: "ctap1/u2f",
|
|
transport: "usb",
|
|
isUserConsenting: false,
|
|
});
|
|
t.add_cleanup(() => window.test_driver.remove_virtual_authenticator(authenticator));
|
|
const private_key =
|
|
"MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg8_zMDQDYAxlU-Q"
|
|
+ "hk1Dwkf0v18GZca1DMF3SaJ9HPdmShRANCAASNYX5lyVCOZLzFZzrIKmeZ2jwU"
|
|
+ "RmgsJYxGP__fWN_S-j5sN4tT15XEpN_7QZnt14YvI6uvAgO0uJEboFaZlOEB";
|
|
credentialId = new Uint8Array([..."cred-1"].map(c => c.charCodeAt(0)));
|
|
await window.test_driver.add_credential(authenticator, {
|
|
credentialId: btoa("cred-1"),
|
|
rpId: window.location.hostname,
|
|
privateKey: private_key,
|
|
signCount: 0,
|
|
isResidentCredential: false,
|
|
});
|
|
} catch (error) {
|
|
if (error !== "error: Action add_virtual_authenticator not implemented") {
|
|
throw error;
|
|
}
|
|
// configure a manual authenticator by creating a credential.
|
|
credentialId = (await createCredential()).rawId;
|
|
}
|
|
|
|
// bad timeout values
|
|
// TODO: there is some debate as to whether MAX_UNSIGNED_LONG + 1 and / or -1 should be disallowed since they get converted to valid values internally
|
|
// new GetCredentialsTest({path: "options.publicKey.timeout", value: -1})
|
|
// .addCredential(credPromise)
|
|
// .runTest("Bad timeout: negative", TypeError);
|
|
// new GetCredentialsTest({path: "options.publicKey.timeout", value: 4294967295 + 1})
|
|
// .addCredential(credPromise)
|
|
// .runTest("Bad timeout: too big", TypeError);
|
|
|
|
// timeout test
|
|
return promise_rejects_dom(t, "NotAllowedError", navigator.credentials.get({
|
|
publicKey: {
|
|
challenge: new Uint8Array([1, 2, 3]),
|
|
allowCredentials: [{
|
|
id: credentialId,
|
|
type: "public-key",
|
|
}],
|
|
timeout: 1,
|
|
},
|
|
}));
|
|
// TODO: createCredential.timeout > 1s && setTimeout < 1s
|
|
// TODO: createCredential.timeout < 5s && setTimeout > 5s
|
|
});
|
|
|
|
/* JSHINT */
|
|
/* globals standardSetup, GetCredentialsTest, createCredential, promise_rejects_dom */
|
|
</script>
|