diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/webauthn/getcredential-large-blob-not-supported.https.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/webauthn/getcredential-large-blob-not-supported.https.html')
-rw-r--r-- | testing/web-platform/tests/webauthn/getcredential-large-blob-not-supported.https.html | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/testing/web-platform/tests/webauthn/getcredential-large-blob-not-supported.https.html b/testing/web-platform/tests/webauthn/getcredential-large-blob-not-supported.https.html new file mode 100644 index 0000000000..97cea30f27 --- /dev/null +++ b/testing/web-platform/tests/webauthn/getcredential-large-blob-not-supported.https.html @@ -0,0 +1,91 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>navigator.credentials.get() largeBlob extension tests with no authenticator support</title> +<meta name="timeout" content="long"> +<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> +standardSetup(async function() { + "use strict"; + + const credential = createCredential(); + + promise_test(async t => { + return promise_rejects_dom(t, "NotSupportedError", + navigator.credentials.get({publicKey: { + challenge: new Uint8Array(), + allowCredentials: [{ + id: (await credential).rawId, + type: "public-key", + }], + extensions: { + largeBlob: { + support: "preferred", + }, + }, + }})); + }, "navigator.credentials.get() with largeBlob.support set"); + + promise_test(async t => { + return promise_rejects_dom(t, "NotSupportedError", + navigator.credentials.get({publicKey: { + challenge: new Uint8Array(), + allowCredentials: [{ + id: (await credential).rawId, + type: "public-key", + }], + extensions: { + largeBlob: { + read: true, + write: new ArrayBuffer(), + }, + }, + }})); + }, "navigator.credentials.get() with largeBlob.read and largeBlob.write set"); + + promise_test(async t => { + const assertion = await navigator.credentials.get({publicKey: { + challenge: new Uint8Array(), + allowCredentials: [{ + id: (await credential).rawId, + type: "public-key", + }], + extensions: { + largeBlob: { + read: true, + }, + }, + }}); + assert_not_own_property(assertion.getClientExtensionResults().largeBlob, "supported"); + assert_not_own_property(assertion.getClientExtensionResults().largeBlob, "blob"); + assert_not_own_property(assertion.getClientExtensionResults().largeBlob, "written"); + }, "navigator.credentials.get() with largeBlob.read set without authenticator support"); + + promise_test(async t => { + const assertion = await navigator.credentials.get({publicKey: { + challenge: new Uint8Array(), + allowCredentials: [{ + id: (await credential).rawId, + type: "public-key", + }], + extensions: { + largeBlob: { + write: new TextEncoder().encode("Don't call me Shirley"), + }, + }, + }}); + assert_not_own_property(assertion.getClientExtensionResults().largeBlob, "supported"); + assert_not_own_property(assertion.getClientExtensionResults().largeBlob, "blob"); + assert_false(assertion.getClientExtensionResults().largeBlob.written); + }, "navigator.credentials.get() with largeBlob.write set without authenticator support"); +}, { + protocol: "ctap2_1", + hasResidentKey: true, + hasUserVerification: true, + isUserVerified: true, +}); +</script> |