mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 05:31:47 +00:00
Route API-key inference through Amazon Q first, enforce adjacent one-to-one tool use/result pairs after session replay, and treat payload-invalid HTTP 400 as terminal.
73 lines
2.5 KiB
JavaScript
73 lines
2.5 KiB
JavaScript
import { describe, it, expect, vi, beforeEach, afterEach } from "vitest";
|
|
import { KiroService } from "../../src/lib/oauth/services/kiro.js";
|
|
|
|
/**
|
|
* Regression tests for Kiro API-key auth.
|
|
*
|
|
* KiroService.validateApiKey validates against the Amazon Q model catalog and
|
|
* returns an account-bound credential without inventing a profileArn.
|
|
*
|
|
* Note: OAuth (Builder ID / IDC) profileArn resolution is handled upstream by
|
|
* fetchKiroProfileArn in providers.js and is covered there — not here.
|
|
*/
|
|
describe("kiro API-key auth (KiroService.validateApiKey)", () => {
|
|
beforeEach(() => vi.restoreAllMocks());
|
|
afterEach(() => vi.restoreAllMocks());
|
|
|
|
it("validates an API key against Amazon Q without inventing profileArn", async () => {
|
|
const fetchMock = vi.spyOn(globalThis, "fetch").mockResolvedValue({
|
|
ok: true,
|
|
json: async () => ({ models: [{ modelId: "claude-opus-5" }] }),
|
|
});
|
|
|
|
const svc = new KiroService();
|
|
const cred = await svc.validateApiKey(" my-secret-key ");
|
|
|
|
expect(cred).toEqual({
|
|
accessToken: "my-secret-key",
|
|
refreshToken: null,
|
|
profileArn: null,
|
|
region: "us-east-1",
|
|
authMethod: "api_key",
|
|
});
|
|
|
|
const [url, init] = fetchMock.mock.calls[0];
|
|
expect(url).toBe(
|
|
"https://q.us-east-1.amazonaws.com/ListAvailableModels?origin=AI_EDITOR"
|
|
);
|
|
expect(init.method).toBe("GET");
|
|
expect(init.headers.Authorization).toBe("Bearer my-secret-key");
|
|
expect(init.headers.TokenType).toBe("API_KEY");
|
|
});
|
|
|
|
it("rejects an empty API key without a network call", async () => {
|
|
const fetchMock = vi.spyOn(globalThis, "fetch");
|
|
const svc = new KiroService();
|
|
await expect(svc.validateApiKey(" ")).rejects.toThrow("API key is required");
|
|
expect(fetchMock).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("surfaces a validation error when the key is rejected", async () => {
|
|
vi.spyOn(globalThis, "fetch").mockResolvedValue({
|
|
ok: false,
|
|
status: 401,
|
|
text: async () => "Unauthorized",
|
|
});
|
|
const svc = new KiroService();
|
|
await expect(svc.validateApiKey("bad-key")).rejects.toThrow(
|
|
/API key validation failed/
|
|
);
|
|
});
|
|
|
|
it("rejects a 200 response with an empty model catalog", async () => {
|
|
vi.spyOn(globalThis, "fetch").mockResolvedValue({
|
|
ok: true,
|
|
json: async () => ({ models: [] }),
|
|
});
|
|
const svc = new KiroService();
|
|
await expect(svc.validateApiKey("empty-key")).rejects.toThrow(
|
|
/returned no available models/
|
|
);
|
|
});
|
|
});
|