mirror of
https://github.com/tiennm99/claude-status-webhook.git
synced 2026-04-17 11:20:30 +00:00
- Statuspage webhook always returns 200 to prevent subscriber removal - Fix parseKvKey returning string chatId instead of number - Queue consumer retries on Telegram 5xx instead of acking (prevents message loss) - Fix observability top-level enabled flag (false → true) - Add defensive null checks for webhook payload body - Cache Bot instance per isolate to avoid middleware rebuild per request - Add vitest + @cloudflare/vitest-pool-workers with 31 tests - Document DLQ and KV sharding as declined features
64 lines
1.9 KiB
JavaScript
64 lines
1.9 KiB
JavaScript
import { describe, it, expect } from "vitest";
|
|
import {
|
|
escapeHtml,
|
|
humanizeStatus,
|
|
statusIndicator,
|
|
formatComponentLine,
|
|
formatOverallStatus,
|
|
} from "../src/status-fetcher.js";
|
|
|
|
describe("escapeHtml", () => {
|
|
it("escapes HTML special chars", () => {
|
|
expect(escapeHtml('<script>"alert&"</script>')).toBe(
|
|
"<script>"alert&"</script>"
|
|
);
|
|
});
|
|
|
|
it("returns empty string for null/undefined", () => {
|
|
expect(escapeHtml(null)).toBe("");
|
|
expect(escapeHtml(undefined)).toBe("");
|
|
});
|
|
});
|
|
|
|
describe("humanizeStatus", () => {
|
|
it("maps known statuses", () => {
|
|
expect(humanizeStatus("operational")).toBe("Operational");
|
|
expect(humanizeStatus("major_outage")).toBe("Major Outage");
|
|
expect(humanizeStatus("resolved")).toBe("Resolved");
|
|
});
|
|
|
|
it("returns raw string for unknown status", () => {
|
|
expect(humanizeStatus("custom_status")).toBe("custom_status");
|
|
});
|
|
});
|
|
|
|
describe("statusIndicator", () => {
|
|
it("returns green check for operational", () => {
|
|
expect(statusIndicator("operational")).toBe("\u2705");
|
|
});
|
|
|
|
it("returns question mark for unknown", () => {
|
|
expect(statusIndicator("unknown_status")).toBe("\u2753");
|
|
});
|
|
});
|
|
|
|
describe("formatComponentLine", () => {
|
|
it("formats component with indicator and escaped name", () => {
|
|
const line = formatComponentLine({ name: "API", status: "operational" });
|
|
expect(line).toContain("\u2705");
|
|
expect(line).toContain("<b>API</b>");
|
|
expect(line).toContain("Operational");
|
|
});
|
|
});
|
|
|
|
describe("formatOverallStatus", () => {
|
|
it("maps known indicators", () => {
|
|
expect(formatOverallStatus("none")).toContain("All Systems Operational");
|
|
expect(formatOverallStatus("critical")).toContain("Critical System Outage");
|
|
});
|
|
|
|
it("returns raw value for unknown indicator", () => {
|
|
expect(formatOverallStatus("custom")).toBe("custom");
|
|
});
|
|
});
|