import { describe, expect, it } from "vitest"; import { transcribeOpenAiCompatibleAudio } from "./audio.js"; const resolveRequestUrl = (input: RequestInfo | URL) => { if (typeof input === "string") return input; if (input instanceof URL) return input.toString(); return input.url; }; describe("transcribeOpenAiCompatibleAudio", () => { it("respects lowercase authorization header overrides", async () => { let seenAuth: string | null = null; const fetchFn = async (_input: RequestInfo | URL, init?: RequestInit) => { const headers = new Headers(init?.headers); seenAuth = headers.get("authorization"); return new Response(JSON.stringify({ text: "ok" }), { status: 200, headers: { "content-type": "application/json" }, }); }; const result = await transcribeOpenAiCompatibleAudio({ buffer: Buffer.from("audio"), fileName: "note.mp3", apiKey: "test-key", timeoutMs: 1000, headers: { authorization: "Bearer override" }, fetchFn, }); expect(seenAuth).toBe("Bearer override"); expect(result.text).toBe("ok"); }); it("builds the expected request payload", async () => { let seenUrl: string | null = null; let seenInit: RequestInit | undefined; const fetchFn = async (input: RequestInfo | URL, init?: RequestInit) => { seenUrl = resolveRequestUrl(input); seenInit = init; return new Response(JSON.stringify({ text: "hello" }), { status: 200, headers: { "content-type": "application/json" }, }); }; const result = await transcribeOpenAiCompatibleAudio({ buffer: Buffer.from("audio-bytes"), fileName: "voice.wav", apiKey: "test-key", timeoutMs: 1234, baseUrl: "https://api.example.com/v1/", model: " ", language: " en ", prompt: " hello ", mime: "audio/wav", headers: { "X-Custom": "1" }, fetchFn, }); expect(result.model).toBe("gpt-4o-mini-transcribe"); expect(result.text).toBe("hello"); expect(seenUrl).toBe("https://api.example.com/v1/audio/transcriptions"); expect(seenInit?.method).toBe("POST"); expect(seenInit?.signal).toBeInstanceOf(AbortSignal); const headers = new Headers(seenInit?.headers); expect(headers.get("authorization")).toBe("Bearer test-key"); expect(headers.get("x-custom")).toBe("1"); const form = seenInit?.body as FormData; expect(form).toBeInstanceOf(FormData); expect(form.get("model")).toBe("gpt-4o-mini-transcribe"); expect(form.get("language")).toBe("en"); expect(form.get("prompt")).toBe("hello"); const file = form.get("file") as Blob | { type?: string; name?: string } | null; expect(file).not.toBeNull(); if (file) { expect(file.type).toBe("audio/wav"); if ("name" in file && typeof file.name === "string") { expect(file.name).toBe("voice.wav"); } } }); });