Fixes: 1. media.ts: wrap placeholder generation in try-catch 2. toolbar.ts: check r.ok, display error message in popover
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import type { Kysely } from "kysely";
|
|
import { describe, it, expect, beforeEach, afterEach, vi } from "vitest";
|
|
|
|
import { POST as verifyPasskey } from "../../../src/astro/routes/api/auth/passkey/verify.js";
|
|
import type { Database } from "../../../src/database/types.js";
|
|
import { setupTestDatabase, teardownTestDatabase } from "../../utils/test-db.js";
|
|
|
|
describe("passkey verify route", () => {
|
|
let db: Kysely<Database>;
|
|
|
|
beforeEach(async () => {
|
|
db = await setupTestDatabase();
|
|
});
|
|
|
|
afterEach(async () => {
|
|
await teardownTestDatabase(db);
|
|
});
|
|
|
|
it("returns unauthorized instead of internal server error when the credential is not registered", async () => {
|
|
const request = new Request("http://localhost:4321/_emdash/api/auth/passkey/verify", {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({
|
|
credential: {
|
|
id: "unregistered-credential",
|
|
rawId: "unregistered-credential",
|
|
type: "public-key",
|
|
response: {
|
|
clientDataJSON: "AA",
|
|
authenticatorData: "AA",
|
|
signature: "AA",
|
|
},
|
|
},
|
|
}),
|
|
});
|
|
|
|
const response = await verifyPasskey({
|
|
request,
|
|
locals: {
|
|
emdash: {
|
|
db,
|
|
config: {},
|
|
},
|
|
},
|
|
session: {
|
|
set: vi.fn(),
|
|
},
|
|
} as Parameters<typeof verifyPasskey>[0]);
|
|
|
|
expect(response.status).toBe(401);
|
|
await expect(response.json()).resolves.toEqual({
|
|
error: {
|
|
code: "UNAUTHORIZED",
|
|
message: "Authentication failed",
|
|
},
|
|
});
|
|
});
|
|
});
|