forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport.ts
More file actions
77 lines (67 loc) · 2.2 KB
/
Copy pathreport.ts
File metadata and controls
77 lines (67 loc) · 2.2 KB
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
export type Severity = "ok" | "warn" | "error";
export interface DriftItem {
severity: Severity;
instance: string;
kind:
| "verbatim-file"
| "package-json"
| "agent-tool"
| "agent-state"
| "prompt"
| "missing-instance";
subject: string;
detail?: string;
expected?: string;
actual?: string;
}
export interface Report {
instance: string;
items: DriftItem[];
}
export function hasErrors(reports: Report[]): boolean {
return reports.some((r) => r.items.some((i) => i.severity === "error"));
}
const RESET = "\x1b[0m";
const RED = "\x1b[31m";
const YEL = "\x1b[33m";
const GRN = "\x1b[32m";
const BOLD = "\x1b[1m";
const DIM = "\x1b[2m";
function color(enabled: boolean, code: string, s: string): string {
return enabled ? `${code}${s}${RESET}` : s;
}
export function printReports(reports: Report[], useColor = true): void {
for (const r of reports) {
const errors = r.items.filter((i) => i.severity === "error");
const warns = r.items.filter((i) => i.severity === "warn");
const oks = r.items.filter((i) => i.severity === "ok");
const header = color(
useColor,
BOLD,
`\n${r.instance} — ${oks.length} ok, ${warns.length} warn, ${errors.length} error`,
);
process.stdout.write(header + "\n");
for (const item of [...errors, ...warns]) {
const tag =
item.severity === "error"
? color(useColor, RED, " ✗")
: color(useColor, YEL, " !");
const kindStr = color(useColor, DIM, `[${item.kind}]`);
process.stdout.write(`${tag} ${kindStr} ${item.subject}\n`);
if (item.detail) process.stdout.write(` ${item.detail}\n`);
if (item.expected !== undefined || item.actual !== undefined) {
if (item.expected !== undefined)
process.stdout.write(` expected: ${truncate(item.expected)}\n`);
if (item.actual !== undefined)
process.stdout.write(` actual: ${truncate(item.actual)}\n`);
}
}
if (errors.length === 0 && warns.length === 0) {
process.stdout.write(color(useColor, GRN, " ✓ no drift\n"));
}
}
}
function truncate(s: string, max = 120): string {
if (s.length <= max) return s;
return s.slice(0, max) + "…";
}