File size: 3,758 Bytes
3201ca6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | import { describe, it, expect, vi, beforeEach, afterEach } from "vitest";
import { trackError } from "#/utils/error-handler";
import { trackEvent } from "#/services/telemetry";
vi.mock("#/services/telemetry", () => ({
trackEvent: vi.fn(),
}));
describe("Error Handler", () => {
beforeEach(() => {
window.history.replaceState({}, "", "/test-error");
});
beforeEach(() => {
vi.clearAllMocks();
});
afterEach(() => {
vi.clearAllMocks();
});
describe("trackError", () => {
it("should send error to PostHog with basic info", () => {
const error = {
source: "test",
};
trackError(error);
expect(trackEvent).toHaveBeenCalledWith("error_outcome", {
current_url: window.location.href,
error_source: "test",
error_kind: "unknown",
error_telemetry: "diagnostic",
});
});
it("merges metadata while reserving error outcome fields", () => {
const error = {
source: "test",
metadata: {
extra: "info",
details: { foo: "bar" },
error_kind: "spoofed",
error_telemetry: "outcome",
error_id: "spoofed",
},
};
trackError(error);
expect(trackEvent).toHaveBeenCalledWith("error_outcome", {
current_url: window.location.href,
error_source: "test",
error_kind: "unknown",
error_telemetry: "diagnostic",
extra: "info",
details: { foo: "bar" },
});
});
it("keeps a classified error ID without recording the message", () => {
trackError({
source: "agent",
classification: {
kind: "internal",
retryable: false,
user_action: "none",
error_id: "error-123",
},
});
expect(trackEvent).toHaveBeenCalledWith("error_outcome", {
current_url: window.location.href,
error_source: "agent",
error_kind: "internal",
error_id: "error-123",
error_telemetry: "diagnostic",
});
});
it("promotes a string metadata eventId as the error_id fallback", () => {
trackError({
source: "chat",
metadata: { msgId: "m-1", eventId: "evt-42", extra: "info" },
});
expect(trackEvent).toHaveBeenCalledWith("error_outcome", {
current_url: window.location.href,
error_source: "chat",
error_kind: "unknown",
error_id: "evt-42",
error_telemetry: "diagnostic",
msgId: "m-1",
extra: "info",
});
});
it("lets a classification error_id win over a metadata eventId", () => {
trackError({
source: "agent",
metadata: { msgId: "m-1", eventId: "evt-42" },
classification: {
kind: "auth",
retryable: false,
user_action: "settings",
error_id: "cls-7",
},
});
expect(trackEvent).toHaveBeenCalledWith(
"error_outcome",
expect.objectContaining({
current_url: window.location.href,
error_id: "cls-7",
error_telemetry: "outcome",
}),
);
expect(trackEvent).not.toHaveBeenCalledWith(
"error_outcome",
expect.objectContaining({ eventId: "evt-42" }),
);
});
it("records non-internal classifications as outcomes", () => {
trackError({
source: "agent",
classification: {
kind: "auth",
retryable: false,
user_action: "settings",
},
});
expect(trackEvent).toHaveBeenCalledWith("error_outcome", {
current_url: window.location.href,
error_source: "agent",
error_kind: "auth",
error_telemetry: "outcome",
});
});
});
});
|