summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webauthn/createcredential-large-blob-not-supported.https.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
commit43a97878ce14b72f0981164f87f2e35e14151312 (patch)
tree620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/webauthn/createcredential-large-blob-not-supported.https.html
parentInitial commit. (diff)
downloadfirefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz
firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/webauthn/createcredential-large-blob-not-supported.https.html')
-rw-r--r--testing/web-platform/tests/webauthn/createcredential-large-blob-not-supported.https.html78
1 files changed, 78 insertions, 0 deletions
diff --git a/testing/web-platform/tests/webauthn/createcredential-large-blob-not-supported.https.html b/testing/web-platform/tests/webauthn/createcredential-large-blob-not-supported.https.html
new file mode 100644
index 0000000000..167a65b922
--- /dev/null
+++ b/testing/web-platform/tests/webauthn/createcredential-large-blob-not-supported.https.html
@@ -0,0 +1,78 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>navigator.credentials.create() 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(function() {
+ "use strict";
+
+ new CreateCredentialsTest("options.publicKey.extensions", {
+ largeBlob: {
+ write: new ArrayBuffer(),
+ },
+ }).runTest("navigator.credentials.create() with largeBlob.write set", "NotSupportedError");
+
+ new CreateCredentialsTest("options.publicKey.extensions", {
+ largeBlob: {
+ read: true,
+ },
+ }).runTest("navigator.credentials.create() with largeBlob.read set", "NotSupportedError");
+
+ promise_test(async t => {
+ const credential = await createCredential({
+ options: {
+ publicKey: {
+ authenticatorSelection: {
+ requireResidentKey: true,
+ },
+ extensions: {
+ largeBlob: {
+ support: "preferred",
+ },
+ },
+ },
+ },
+ });
+ assert_own_property(credential.getClientExtensionResults(), "largeBlob");
+ assert_false(credential.getClientExtensionResults().largeBlob.supported);
+ assert_not_own_property(credential.getClientExtensionResults().largeBlob, "blob");
+ assert_not_own_property(credential.getClientExtensionResults().largeBlob, "written");
+ }, "navigator.credentials.create() with largeBlob.support set to preferred and not supported by authenticator");
+
+ promise_test(async t => {
+ const credential = await createCredential({
+ options: {
+ publicKey: {
+ authenticatorSelection: {
+ requireResidentKey: true,
+ },
+ extensions: {
+ largeBlob: {},
+ },
+ },
+ },
+ });
+ assert_own_property(credential.getClientExtensionResults(), "largeBlob");
+ assert_false(credential.getClientExtensionResults().largeBlob.supported);
+ assert_not_own_property(credential.getClientExtensionResults().largeBlob, "blob");
+ assert_not_own_property(credential.getClientExtensionResults().largeBlob, "written");
+ }, "navigator.credentials.create() with largeBlob.support not set and not supported by authenticator");
+
+ new CreateCredentialsTest("options.publicKey.extensions", {
+ largeBlob: {
+ support: "required"
+ },
+ }).runTest("navigator.credentials.create() with largeBlob.support set to required and not supported by authenticator", "NotAllowedError");
+}, {
+ protocol: "ctap2_1",
+ hasResidentKey: true,
+ hasUserVerification: true,
+ isUserVerified: true,
+});
+</script>