38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { formatRawAssistantErrorForUi } from "./pi-embedded-helpers.js";
|
|
|
|
describe("formatRawAssistantErrorForUi", () => {
|
|
it("renders HTTP code + type + message from Anthropic payloads", () => {
|
|
const text = formatRawAssistantErrorForUi(
|
|
'429 {"type":"error","error":{"type":"rate_limit_error","message":"Rate limited."},"request_id":"req_123"}',
|
|
);
|
|
|
|
expect(text).toContain("HTTP 429");
|
|
expect(text).toContain("rate_limit_error");
|
|
expect(text).toContain("Rate limited.");
|
|
expect(text).toContain("req_123");
|
|
});
|
|
|
|
it("renders a generic unknown error message when raw is empty", () => {
|
|
expect(formatRawAssistantErrorForUi("")).toContain("unknown error");
|
|
});
|
|
|
|
it("formats plain HTTP status lines", () => {
|
|
expect(formatRawAssistantErrorForUi("500 Internal Server Error")).toBe(
|
|
"HTTP 500: Internal Server Error",
|
|
);
|
|
});
|
|
|
|
it("sanitizes HTML error pages into a clean unavailable message", () => {
|
|
const htmlError = `521 <!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head><title>Web server is down | example.com | Cloudflare</title></head>
|
|
<body>Ray ID: abc123</body>
|
|
</html>`;
|
|
|
|
expect(formatRawAssistantErrorForUi(htmlError)).toBe(
|
|
"The AI service is temporarily unavailable (HTTP 521). Please try again in a moment.",
|
|
);
|
|
});
|
|
});
|