| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697 | 
							- /*
 
-  * Copyright 2002-2024 the original author or authors.
 
-  *
 
-  * Licensed under the Apache License, Version 2.0 (the "License");
 
-  * you may not use this file except in compliance with the License.
 
-  * You may obtain a copy of the License at
 
-  *
 
-  *      https://www.apache.org/licenses/LICENSE-2.0
 
-  *
 
-  * Unless required by applicable law or agreed to in writing, software
 
-  * distributed under the License is distributed on an "AS IS" BASIS,
 
-  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
-  * See the License for the specific language governing permissions and
 
-  * limitations under the License.
 
-  */
 
- "use strict";
 
- import "./bootstrap.js";
 
- import { expect } from "chai";
 
- import { assert, fake, match, stub } from "sinon";
 
- import http from "../lib/http.js";
 
- import webauthn from "../lib/webauthn-core.js";
 
- import base64url from "../lib/base64url.js";
 
- describe("webauthn-core", () => {
 
-   beforeEach(() => {
 
-     global.window = {
 
-       btoa: (str) => Buffer.from(str, "binary").toString("base64"),
 
-       atob: (b64) => Buffer.from(b64, "base64").toString("binary"),
 
-     };
 
-   });
 
-   afterEach(() => {
 
-     delete global.window;
 
-   });
 
-   describe("isConditionalMediationAvailable", () => {
 
-     afterEach(() => {
 
-       delete global.window.PublicKeyCredential;
 
-     });
 
-     it("is available", async () => {
 
-       global.window = {
 
-         PublicKeyCredential: {
 
-           isConditionalMediationAvailable: fake.resolves(true),
 
-         },
 
-       };
 
-       const result = await webauthn.isConditionalMediationAvailable();
 
-       expect(result).to.be.true;
 
-     });
 
-     describe("is not available", async () => {
 
-       it("PublicKeyCredential does not exist", async () => {
 
-         global.window = {};
 
-         const result = await webauthn.isConditionalMediationAvailable();
 
-         expect(result).to.be.false;
 
-       });
 
-       it("PublicKeyCredential.isConditionalMediationAvailable undefined", async () => {
 
-         global.window = {
 
-           PublicKeyCredential: {},
 
-         };
 
-         const result = await webauthn.isConditionalMediationAvailable();
 
-         expect(result).to.be.false;
 
-       });
 
-       it("PublicKeyCredential.isConditionalMediationAvailable false", async () => {
 
-         global.window = {
 
-           PublicKeyCredential: {
 
-             isConditionalMediationAvailable: fake.resolves(false),
 
-           },
 
-         };
 
-         const result = await webauthn.isConditionalMediationAvailable();
 
-         expect(result).to.be.false;
 
-       });
 
-     });
 
-   });
 
-   describe("authenticate", () => {
 
-     let httpPostStub;
 
-     const contextPath = "/some/path";
 
-     const credentialsGetOptions = {
 
-       challenge: "nRbOrtNKTfJ1JaxfUDKs8j3B-JFqyGQw8DO4u6eV3JA",
 
-       timeout: 300000,
 
-       rpId: "localhost",
 
-       allowCredentials: [],
 
-       userVerification: "preferred",
 
-       extensions: {},
 
-     };
 
-     // This is kind of a self-fulfilling prophecy type of test: we produce array buffers by calling
 
-     // base64url.decode ; they will then be re-encoded to the same string in the production code.
 
-     // The ArrayBuffer API is not super friendly.
 
-     beforeEach(() => {
 
-       httpPostStub = stub(http, "post");
 
-       httpPostStub.withArgs(contextPath + "/webauthn/authenticate/options", match.any).resolves({
 
-         ok: true,
 
-         status: 200,
 
-         json: fake.resolves(credentialsGetOptions),
 
-       });
 
-       httpPostStub.withArgs(`${contextPath}/login/webauthn`, match.any, match.any).resolves({
 
-         ok: true,
 
-         status: 200,
 
-         json: fake.resolves({
 
-           authenticated: true,
 
-           redirectUrl: "/success",
 
-         }),
 
-       });
 
-       const validAuthenticatorResponse = {
 
-         id: "UgghgP5QKozwsSUK1twCj8mpgZs",
 
-         rawId: base64url.decode("UgghgP5QKozwsSUK1twCj8mpgZs"),
 
-         response: {
 
-           authenticatorData: base64url.decode("y9GqwTRaMpzVDbXq1dyEAXVOxrou08k22ggRC45MKNgdAAAAAA"),
 
-           clientDataJSON: base64url.decode(
 
-             "eyJ0eXBlIjoid2ViYXV0aG4uZ2V0IiwiY2hhbGxlbmdlIjoiUTdlR0NkNUw2cG9fa01meWNIQnBWRlR5dmd3RklCV0QxZWg5OUktRFhnWSIsIm9yaWdpbiI6Imh0dHBzOi8vZXhhbXBsZS5sb2NhbGhvc3Q6ODQ0MyJ9",
 
-           ),
 
-           signature: base64url.decode(
 
-             "MEUCIGT9PAWfU3lMicOXFMpHGcl033dY-sNSJvehlXvvoivyAiEA_D_yOsChERlXX2rFcK6Qx5BaAbx5qdU2hgYDVN6W770",
 
-           ),
 
-           userHandle: base64url.decode("tyRDnKxdj7uWOT5jrchXu54lo6nf3bWOUvMQnGOXk7g"),
 
-         },
 
-         getClientExtensionResults: () => ({}),
 
-         authenticatorAttachment: "platform",
 
-         type: "public-key",
 
-       };
 
-       global.navigator = {
 
-         credentials: {
 
-           get: fake.resolves(validAuthenticatorResponse),
 
-         },
 
-       };
 
-     });
 
-     afterEach(() => {
 
-       http.post.restore();
 
-       delete global.navigator;
 
-     });
 
-     it("succeeds", async () => {
 
-       const redirectUrl = await webauthn.authenticate({ "x-custom": "some-value" }, contextPath, false);
 
-       expect(redirectUrl).to.equal("/success");
 
-       assert.calledWith(
 
-         httpPostStub.lastCall,
 
-         `${contextPath}/login/webauthn`,
 
-         { "x-custom": "some-value" },
 
-         {
 
-           id: "UgghgP5QKozwsSUK1twCj8mpgZs",
 
-           rawId: "UgghgP5QKozwsSUK1twCj8mpgZs",
 
-           credType: "public-key",
 
-           response: {
 
-             authenticatorData: "y9GqwTRaMpzVDbXq1dyEAXVOxrou08k22ggRC45MKNgdAAAAAA",
 
-             clientDataJSON:
 
-               "eyJ0eXBlIjoid2ViYXV0aG4uZ2V0IiwiY2hhbGxlbmdlIjoiUTdlR0NkNUw2cG9fa01meWNIQnBWRlR5dmd3RklCV0QxZWg5OUktRFhnWSIsIm9yaWdpbiI6Imh0dHBzOi8vZXhhbXBsZS5sb2NhbGhvc3Q6ODQ0MyJ9",
 
-             signature:
 
-               "MEUCIGT9PAWfU3lMicOXFMpHGcl033dY-sNSJvehlXvvoivyAiEA_D_yOsChERlXX2rFcK6Qx5BaAbx5qdU2hgYDVN6W770",
 
-             userHandle: "tyRDnKxdj7uWOT5jrchXu54lo6nf3bWOUvMQnGOXk7g",
 
-           },
 
-           clientExtensionResults: {},
 
-           authenticatorAttachment: "platform",
 
-         },
 
-       );
 
-     });
 
-     it("calls the authenticator with the correct options", async () => {
 
-       await webauthn.authenticate({}, contextPath, false);
 
-       assert.calledOnceWithMatch(global.navigator.credentials.get, {
 
-         publicKey: {
 
-           challenge: base64url.decode("nRbOrtNKTfJ1JaxfUDKs8j3B-JFqyGQw8DO4u6eV3JA"),
 
-           timeout: 300000,
 
-           rpId: "localhost",
 
-           allowCredentials: [],
 
-           userVerification: "preferred",
 
-           extensions: {},
 
-         },
 
-         signal: match.any,
 
-       });
 
-     });
 
-     describe("authentication failures", () => {
 
-       it("when authentication options call", async () => {
 
-         httpPostStub
 
-           .withArgs(`${contextPath}/webauthn/authenticate/options`, match.any)
 
-           .rejects(new Error("Connection refused"));
 
-         try {
 
-           await webauthn.authenticate({}, contextPath, false);
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal(
 
-             "Authentication failed. Could not fetch authentication options: Connection refused",
 
-           );
 
-           return;
 
-         }
 
-         expect.fail("authenticate should throw");
 
-       });
 
-       it("when authentication options call returns does not return HTTP 200 OK", async () => {
 
-         httpPostStub.withArgs(`${contextPath}/webauthn/authenticate/options`, match.any).resolves({
 
-           ok: false,
 
-           status: 400,
 
-         });
 
-         try {
 
-           await webauthn.authenticate({}, contextPath, false);
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal("Authentication failed. Could not fetch authentication options: HTTP 400");
 
-           return;
 
-         }
 
-         expect.fail("authenticate should throw");
 
-       });
 
-       it("when authentication options are not valid json", async () => {
 
-         httpPostStub.withArgs(`${contextPath}/webauthn/authenticate/options`, match.any).resolves({
 
-           ok: true,
 
-           status: 200,
 
-           json: fake.rejects(new Error("Not valid JSON")),
 
-         });
 
-         try {
 
-           await webauthn.authenticate({}, contextPath, false);
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal("Authentication failed. Could not fetch authentication options: Not valid JSON");
 
-           return;
 
-         }
 
-         expect.fail("authenticate should throw");
 
-       });
 
-       it("when navigator.credentials.get fails", async () => {
 
-         global.navigator.credentials.get = fake.rejects(new Error("Operation was aborted"));
 
-         try {
 
-           await webauthn.authenticate({}, contextPath, false);
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal(
 
-             "Authentication failed. Call to navigator.credentials.get failed: Operation was aborted",
 
-           );
 
-           return;
 
-         }
 
-         expect.fail("authenticate should throw");
 
-       });
 
-       it("when authentication call fails", async () => {
 
-         httpPostStub
 
-           .withArgs(`${contextPath}/login/webauthn`, match.any, match.any)
 
-           .rejects(new Error("Connection refused"));
 
-         try {
 
-           await webauthn.authenticate({}, contextPath, false);
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal(
 
-             "Authentication failed. Could not process the authentication request: Connection refused",
 
-           );
 
-           return;
 
-         }
 
-         expect.fail("authenticate should throw");
 
-       });
 
-       it("when authentication call does not return HTTP 200 OK", async () => {
 
-         httpPostStub.withArgs(`${contextPath}/login/webauthn`, match.any, match.any).resolves({
 
-           ok: false,
 
-           status: 400,
 
-         });
 
-         try {
 
-           await webauthn.authenticate({}, contextPath, false);
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal("Authentication failed. Could not process the authentication request: HTTP 400");
 
-           return;
 
-         }
 
-         expect.fail("authenticate should throw");
 
-       });
 
-       it("when authentication call does not return JSON", async () => {
 
-         httpPostStub.withArgs(`${contextPath}/login/webauthn`, match.any, match.any).resolves({
 
-           ok: true,
 
-           status: 200,
 
-           json: fake.rejects(new Error("Not valid JSON")),
 
-         });
 
-         try {
 
-           await webauthn.authenticate({}, contextPath, false);
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal(
 
-             "Authentication failed. Could not process the authentication request: Not valid JSON",
 
-           );
 
-           return;
 
-         }
 
-         expect.fail("authenticate should throw");
 
-       });
 
-       it("when authentication call returns null", async () => {
 
-         httpPostStub.withArgs(`${contextPath}/login/webauthn`, match.any, match.any).resolves({
 
-           ok: true,
 
-           status: 200,
 
-           json: fake.resolves(null),
 
-         });
 
-         try {
 
-           await webauthn.authenticate({}, contextPath, false);
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal(
 
-             'Authentication failed. Expected {"authenticated": true, "redirectUrl": "..."}, server responded with: null',
 
-           );
 
-           return;
 
-         }
 
-         expect.fail("authenticate should throw");
 
-       });
 
-       it('when authentication call returns {"authenticated":false}', async () => {
 
-         httpPostStub.withArgs(`${contextPath}/login/webauthn`, match.any, match.any).resolves({
 
-           ok: true,
 
-           status: 200,
 
-           json: fake.resolves({
 
-             authenticated: false,
 
-           }),
 
-         });
 
-         try {
 
-           await webauthn.authenticate({}, contextPath, false);
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal(
 
-             'Authentication failed. Expected {"authenticated": true, "redirectUrl": "..."}, server responded with: {"authenticated":false}',
 
-           );
 
-           return;
 
-         }
 
-         expect.fail("authenticate should throw");
 
-       });
 
-       it("when authentication call returns no redirectUrl", async () => {
 
-         httpPostStub.withArgs(`${contextPath}/login/webauthn`, match.any, match.any).resolves({
 
-           ok: true,
 
-           status: 200,
 
-           json: fake.resolves({
 
-             authenticated: true,
 
-           }),
 
-         });
 
-         try {
 
-           await webauthn.authenticate({}, contextPath, false);
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal(
 
-             'Authentication failed. Expected {"authenticated": true, "redirectUrl": "..."}, server responded with: {"authenticated":true}',
 
-           );
 
-           return;
 
-         }
 
-         expect.fail("authenticate should throw");
 
-       });
 
-     });
 
-   });
 
-   describe("register", () => {
 
-     let httpPostStub;
 
-     const contextPath = "/some/path";
 
-     beforeEach(() => {
 
-       const credentialsCreateOptions = {
 
-         rp: {
 
-           name: "Spring Security Relying Party",
 
-           id: "example.localhost",
 
-         },
 
-         user: {
 
-           name: "user",
 
-           id: "eatPy60xmXG_58JrIiIBa5wq8Y76c7MD6mnY5vW8yP8",
 
-           displayName: "user",
 
-         },
 
-         challenge: "s0hBOfkSaVLXdsbyD8jii6t2IjUd-eiTP1Cmeuo1qUo",
 
-         pubKeyCredParams: [
 
-           {
 
-             type: "public-key",
 
-             alg: -8,
 
-           },
 
-           {
 
-             type: "public-key",
 
-             alg: -7,
 
-           },
 
-           {
 
-             type: "public-key",
 
-             alg: -257,
 
-           },
 
-         ],
 
-         timeout: 300000,
 
-         excludeCredentials: [
 
-           {
 
-             id: "nOsjw8eaaqSwVdTBBYE1FqfGdHs",
 
-             type: "public-key",
 
-             transports: [],
 
-           },
 
-         ],
 
-         authenticatorSelection: {
 
-           residentKey: "required",
 
-           userVerification: "preferred",
 
-         },
 
-         attestation: "direct",
 
-         extensions: { credProps: true },
 
-       };
 
-       const validAuthenticatorResponse = {
 
-         authenticatorAttachment: "platform",
 
-         id: "9wAuex_025BgEQrs7fOypo5SGBA",
 
-         rawId: base64url.decode("9wAuex_025BgEQrs7fOypo5SGBA"),
 
-         response: {
 
-           attestationObject: base64url.decode(
 
-             "o2NmbXRkbm9uZWdhdHRTdG10oGhhdXRoRGF0YViYy9GqwTRaMpzVDbXq1dyEAXVOxrou08k22ggRC45MKNhdAAAAAPv8MAcVTk7MjAtuAgVX170AFPcALnsf9NuQYBEK7O3zsqaOUhgQpQECAyYgASFYIMB9pM2BeSeEG83fAKFVSLKIfvDBBVoyGgMoiGxE-6WgIlggazAojM5sduQy2M7rz1do55nVaNLGXh8k4xBHz-Oy91E",
 
-           ),
 
-           getAuthenticatorData: () =>
 
-             base64url.decode(
 
-               "y9GqwTRaMpzVDbXq1dyEAXVOxrou08k22ggRC45MKNhdAAAAAPv8MAcVTk7MjAtuAgVX170AFPcALnsf9NuQYBEK7O3zsqaOUhgQpQECAyYgASFYIMB9pM2BeSeEG83fAKFVSLKIfvDBBVoyGgMoiGxE-6WgIlggazAojM5sduQy2M7rz1do55nVaNLGXh8k4xBHz-Oy91E",
 
-             ),
 
-           clientDataJSON: base64url.decode(
 
-             "eyJ0eXBlIjoid2ViYXV0aG4uY3JlYXRlIiwiY2hhbGxlbmdlIjoiUVdwd3lUcXJpYVlqbVdnOWFvZ0FxUlRKNVFYMFBGV2JWR2xNeGNsVjZhcyIsIm9yaWdpbiI6Imh0dHBzOi8vZXhhbXBsZS5sb2NhbGhvc3Q6ODQ0MyJ9",
 
-           ),
 
-           getPublicKey: () =>
 
-             base64url.decode(
 
-               "MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwH2kzYF5J4Qbzd8AoVVIsoh-8MEFWjIaAyiIbET7paBrMCiMzmx25DLYzuvPV2jnmdVo0sZeHyTjEEfP47L3UQ",
 
-             ),
 
-           getPublicKeyAlgorithm: () => -7,
 
-           getTransports: () => ["internal"],
 
-         },
 
-         type: "public-key",
 
-         getClientExtensionResults: () => ({}),
 
-       };
 
-       global.navigator = {
 
-         credentials: {
 
-           create: fake.resolves(validAuthenticatorResponse),
 
-         },
 
-       };
 
-       httpPostStub = stub(http, "post");
 
-       httpPostStub.withArgs(contextPath + "/webauthn/register/options", match.any).resolves({
 
-         ok: true,
 
-         status: 200,
 
-         json: fake.resolves(credentialsCreateOptions),
 
-       });
 
-       httpPostStub.withArgs(`${contextPath}/webauthn/register`, match.any, match.any).resolves({
 
-         ok: true,
 
-         json: fake.resolves({
 
-           success: true,
 
-         }),
 
-       });
 
-     });
 
-     afterEach(() => {
 
-       httpPostStub.restore();
 
-       delete global.navigator;
 
-     });
 
-     it("succeeds", async () => {
 
-       const contextPath = "/some/path";
 
-       const headers = { _csrf: "csrf-value" };
 
-       await webauthn.register(headers, contextPath, "my passkey");
 
-       assert.calledWithExactly(
 
-         httpPostStub.lastCall,
 
-         `${contextPath}/webauthn/register`,
 
-         headers,
 
-         match({
 
-           publicKey: {
 
-             credential: {
 
-               id: "9wAuex_025BgEQrs7fOypo5SGBA",
 
-               rawId: "9wAuex_025BgEQrs7fOypo5SGBA",
 
-               response: {
 
-                 attestationObject:
 
-                   "o2NmbXRkbm9uZWdhdHRTdG10oGhhdXRoRGF0YViYy9GqwTRaMpzVDbXq1dyEAXVOxrou08k22ggRC45MKNhdAAAAAPv8MAcVTk7MjAtuAgVX170AFPcALnsf9NuQYBEK7O3zsqaOUhgQpQECAyYgASFYIMB9pM2BeSeEG83fAKFVSLKIfvDBBVoyGgMoiGxE-6WgIlggazAojM5sduQy2M7rz1do55nVaNLGXh8k4xBHz-Oy91E",
 
-                 clientDataJSON:
 
-                   "eyJ0eXBlIjoid2ViYXV0aG4uY3JlYXRlIiwiY2hhbGxlbmdlIjoiUVdwd3lUcXJpYVlqbVdnOWFvZ0FxUlRKNVFYMFBGV2JWR2xNeGNsVjZhcyIsIm9yaWdpbiI6Imh0dHBzOi8vZXhhbXBsZS5sb2NhbGhvc3Q6ODQ0MyJ9",
 
-                 transports: ["internal"],
 
-               },
 
-               type: "public-key",
 
-               clientExtensionResults: {},
 
-               authenticatorAttachment: "platform",
 
-             },
 
-             label: "my passkey",
 
-           },
 
-         }),
 
-       );
 
-     });
 
-     it("calls the authenticator with the correct options", async () => {
 
-       await webauthn.register({}, contextPath, "my passkey");
 
-       assert.calledOnceWithExactly(
 
-         global.navigator.credentials.create,
 
-         match({
 
-           publicKey: {
 
-             rp: {
 
-               name: "Spring Security Relying Party",
 
-               id: "example.localhost",
 
-             },
 
-             user: {
 
-               name: "user",
 
-               id: base64url.decode("eatPy60xmXG_58JrIiIBa5wq8Y76c7MD6mnY5vW8yP8"),
 
-               displayName: "user",
 
-             },
 
-             challenge: base64url.decode("s0hBOfkSaVLXdsbyD8jii6t2IjUd-eiTP1Cmeuo1qUo"),
 
-             pubKeyCredParams: [
 
-               {
 
-                 type: "public-key",
 
-                 alg: -8,
 
-               },
 
-               {
 
-                 type: "public-key",
 
-                 alg: -7,
 
-               },
 
-               {
 
-                 type: "public-key",
 
-                 alg: -257,
 
-               },
 
-             ],
 
-             timeout: 300000,
 
-             excludeCredentials: [
 
-               {
 
-                 id: base64url.decode("nOsjw8eaaqSwVdTBBYE1FqfGdHs"),
 
-                 type: "public-key",
 
-                 transports: [],
 
-               },
 
-             ],
 
-             authenticatorSelection: {
 
-               residentKey: "required",
 
-               userVerification: "preferred",
 
-             },
 
-             attestation: "direct",
 
-             extensions: { credProps: true },
 
-           },
 
-           signal: match.any,
 
-         }),
 
-       );
 
-     });
 
-     describe("registration failures", () => {
 
-       it("when label is missing", async () => {
 
-         try {
 
-           await webauthn.register({}, "/", "");
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal("Error: Passkey Label is required");
 
-           return;
 
-         }
 
-         expect.fail("register should throw");
 
-       });
 
-       it("when cannot get the registration options", async () => {
 
-         httpPostStub.withArgs(match.any, match.any).rejects(new Error("Server threw an error"));
 
-         try {
 
-           await webauthn.register({}, "/", "my passkey");
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal(
 
-             "Registration failed. Could not fetch registration options: Server threw an error",
 
-           );
 
-           return;
 
-         }
 
-         expect.fail("register should throw");
 
-       });
 
-       it("when registration options call does not return HTTP 200 OK", async () => {
 
-         httpPostStub.withArgs(match.any, match.any).resolves({
 
-           ok: false,
 
-           status: 400,
 
-         });
 
-         try {
 
-           await webauthn.register({}, "/", "my passkey");
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal(
 
-             "Registration failed. Could not fetch registration options: Server responded with HTTP 400",
 
-           );
 
-           return;
 
-         }
 
-         expect.fail("register should throw");
 
-       });
 
-       it("when registration options are not valid JSON", async () => {
 
-         httpPostStub.withArgs(match.any, match.any).resolves({
 
-           ok: true,
 
-           status: 200,
 
-           json: fake.rejects(new Error("Not a JSON response")),
 
-         });
 
-         try {
 
-           await webauthn.register({}, "/", "my passkey");
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal(
 
-             "Registration failed. Could not fetch registration options: Not a JSON response",
 
-           );
 
-           return;
 
-         }
 
-         expect.fail("register should throw");
 
-       });
 
-       it("when navigator.credentials.create fails", async () => {
 
-         global.navigator = {
 
-           credentials: {
 
-             create: fake.rejects(new Error("authenticator threw an error")),
 
-           },
 
-         };
 
-         try {
 
-           await webauthn.register({}, contextPath, "my passkey");
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal(
 
-             "Registration failed. Call to navigator.credentials.create failed: authenticator threw an error",
 
-           );
 
-           expect(err.cause).to.deep.equal(new Error("authenticator threw an error"));
 
-           return;
 
-         }
 
-         expect.fail("register should throw");
 
-       });
 
-       it("when registration call fails", async () => {
 
-         httpPostStub
 
-           .withArgs(`${contextPath}/webauthn/register`, match.any, match.any)
 
-           .rejects(new Error("Connection refused"));
 
-         try {
 
-           await webauthn.register({}, contextPath, "my passkey");
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal(
 
-             "Registration failed. Could not process the registration request: Connection refused",
 
-           );
 
-           expect(err.cause).to.deep.equal(new Error("Connection refused"));
 
-           return;
 
-         }
 
-         expect.fail("register should throw");
 
-       });
 
-       it("when registration call does not return HTTP 200 OK", async () => {
 
-         httpPostStub.withArgs(`${contextPath}/webauthn/register`, match.any, match.any).resolves({
 
-           ok: false,
 
-           status: 400,
 
-         });
 
-         try {
 
-           await webauthn.register({}, contextPath, "my passkey");
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal("Registration failed. Could not process the registration request: HTTP 400");
 
-           return;
 
-         }
 
-         expect.fail("register should throw");
 
-       });
 
-       it("when registration call does not return JSON", async () => {
 
-         httpPostStub.withArgs(`${contextPath}/webauthn/register`, match.any, match.any).resolves({
 
-           ok: true,
 
-           status: 200,
 
-           json: fake.rejects(new Error("Not valid JSON")),
 
-         });
 
-         try {
 
-           await webauthn.register({}, contextPath, "my passkey");
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal(
 
-             "Registration failed. Could not process the registration request: Not valid JSON",
 
-           );
 
-           expect(err.cause).to.deep.equal(new Error("Not valid JSON"));
 
-           return;
 
-         }
 
-         expect.fail("register should throw");
 
-       });
 
-       it("when registration call returns null", async () => {
 
-         httpPostStub.withArgs(`${contextPath}/webauthn/register`, match.any, match.any).resolves({
 
-           ok: true,
 
-           status: 200,
 
-           json: fake.resolves(null),
 
-         });
 
-         try {
 
-           await webauthn.register({}, contextPath, "my passkey");
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal("Registration failed. Server responded with: null");
 
-           return;
 
-         }
 
-         expect.fail("register should throw");
 
-       });
 
-       it('when registration call returns {"success":false}', async () => {
 
-         httpPostStub.withArgs(`${contextPath}/webauthn/register`, match.any, match.any).resolves({
 
-           ok: true,
 
-           status: 200,
 
-           json: fake.resolves({ success: false }),
 
-         });
 
-         try {
 
-           await webauthn.register({}, contextPath, "my passkey");
 
-         } catch (err) {
 
-           expect(err).to.be.an("error");
 
-           expect(err.message).to.equal('Registration failed. Server responded with: {"success":false}');
 
-           return;
 
-         }
 
-         expect.fail("register should throw");
 
-       });
 
-     });
 
-   });
 
- });
 
 
  |