summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webauthn/credblob-supported.https.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/webauthn/credblob-supported.https.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/webauthn/credblob-supported.https.html')
-rw-r--r--testing/web-platform/tests/webauthn/credblob-supported.https.html93
1 files changed, 93 insertions, 0 deletions
diff --git a/testing/web-platform/tests/webauthn/credblob-supported.https.html b/testing/web-platform/tests/webauthn/credblob-supported.https.html
new file mode 100644
index 0000000000..c69091fbc4
--- /dev/null
+++ b/testing/web-platform/tests/webauthn/credblob-supported.https.html
@@ -0,0 +1,93 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>credBlob extension tests</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>
+"use strict";
+
+const blobu8 = new Uint8Array(16);
+window.crypto.getRandomValues(blobu8);
+const blob = blobu8.buffer;
+const authenticatorOptions = {
+ protocol: "ctap2_1",
+ extensions: ["credBlob"],
+};
+
+function compareBuffers(a, b) {
+ if (a.byteLength != b.byteLength) {
+ return false;
+ }
+ const a8 = new Uint8Array(a);
+ const b8 = new Uint8Array(b);
+ for (let i = 0; i < a8.length; i++) {
+ if (a8[i] != b8[i]) {
+ return false;
+ }
+ }
+ return true;
+}
+
+virtualAuthenticatorPromiseTest(async t => {
+ const cred = await createCredential({
+ options: {
+ publicKey: {},
+ },
+ });
+
+ const createExtensions = cred.getClientExtensionResults();
+ assert_not_own_property(createExtensions, "credBlob");
+
+ const assertion = await navigator.credentials.get({publicKey: {
+ challenge: new Uint8Array(),
+ allowCredentials: [{
+ id: cred.rawId,
+ type: "public-key",
+ }],
+ extensions: {
+ getCredBlob: true,
+ },
+ }});
+
+ const getExtensions = assertion.getClientExtensionResults();
+ assert_own_property(getExtensions, "getCredBlob");
+ const emptyBuffer = new Uint8Array();
+ assert_true(compareBuffers(getExtensions.getCredBlob, emptyBuffer));
+}, authenticatorOptions, "assertion without credBlob");
+
+virtualAuthenticatorPromiseTest(async t => {
+ const cred = await createCredential({
+ options: {
+ publicKey: {
+ extensions: {
+ credBlob: blob,
+ },
+ },
+ },
+ });
+
+ const createExtensions = cred.getClientExtensionResults();
+ assert_own_property(createExtensions, "credBlob");
+ assert_equals(createExtensions.credBlob, true, "extension supported at create time");
+
+ const assertion = await navigator.credentials.get({publicKey: {
+ challenge: new Uint8Array(),
+ allowCredentials: [{
+ id: cred.rawId,
+ type: "public-key",
+ }],
+ extensions: {
+ getCredBlob: true,
+ },
+ }});
+
+ const getExtensions = assertion.getClientExtensionResults();
+ assert_own_property(getExtensions, "getCredBlob");
+ assert_true(compareBuffers(getExtensions.getCredBlob, blob));
+}, authenticatorOptions, "assertion with credBlob");
+</script>