File size: 9,063 Bytes
7a1ad33 | 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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 | /**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import fs from 'node:fs';
import path from 'node:path';
import { glob } from 'glob';
import {
analyzeEvalSource,
type EvalCaseRecord,
type EvalFileAnalysis,
type EvalAnalysisDiagnostic,
type EvalPolicy,
} from './eval-analysis.js';
const POLICY_ORDER: EvalPolicy[] = [
'ALWAYS_PASSES',
'USUALLY_PASSES',
'USUALLY_FAILS',
'unknown',
];
export interface InventoryResult {
totalFiles: number;
totalCases: number;
repoRoot: string;
files: EvalFileAnalysis[];
cases: readonly EvalCaseRecord[];
diagnostics: readonly EvalAnalysisDiagnostic[];
}
/**
* Discovers all eval files under the given repo root and runs
* the static analyzer on each, returning the aggregated results.
*/
export async function collectInventory(
repoRoot: string,
): Promise<InventoryResult> {
const evalsDir = path.join(repoRoot, 'evals');
try {
const stat = await fs.promises.stat(evalsDir);
if (!stat.isDirectory()) {
throw new Error(`evals path exists but is not a directory: ${evalsDir}`);
}
} catch (err: unknown) {
if (isNodeError(err) && err.code === 'ENOENT') {
throw new Error(
`evals directory not found under repo root: ${evalsDir}\n` +
`Make sure --root points to the repository root.`,
);
}
throw err;
}
const pattern = '**/*.eval.{ts,tsx}';
const evalFiles = await glob(pattern, {
cwd: evalsDir,
absolute: true,
nodir: true,
});
evalFiles.sort();
const files: EvalFileAnalysis[] = [];
const allCases: EvalCaseRecord[] = [];
const allDiagnostics: EvalAnalysisDiagnostic[] = [];
for (const filePath of evalFiles) {
const sourceText = await fs.promises.readFile(filePath, 'utf-8');
const analysis = analyzeEvalSource(sourceText, { filePath, repoRoot });
files.push(analysis);
allCases.push(...analysis.cases);
allDiagnostics.push(...analysis.diagnostics);
}
return {
totalFiles: files.length,
totalCases: allCases.length,
repoRoot,
files,
cases: allCases,
diagnostics: allDiagnostics,
};
}
/**
* Formats an InventoryResult into a human-readable report string.
*/
export function formatInventoryReport(result: InventoryResult): string {
const lines: string[] = [];
lines.push('Eval Inventory');
lines.push('ββββββββββββββ');
lines.push('');
lines.push(
`${result.totalFiles} files Β· ${result.totalCases} cases Β· ${result.diagnostics.length} diagnostics`,
);
lines.push('');
// --- By Policy ---
lines.push('By Policy');
lines.push('βββββββββ');
const byPolicyMap = groupBy(result.cases, (c) => c.policy);
const renderedPolicies = new Set<string>();
for (const policy of POLICY_ORDER) {
const cases = byPolicyMap.get(policy);
if (!cases || cases.length === 0) {
continue;
}
renderedPolicies.add(policy);
lines.push(`${policy} (${cases.length} cases)`);
const byFile = groupBy(cases, (c) => c.relativePath);
for (const [filePath, fileCases] of byFile) {
lines.push(` ${filePath}`);
for (const evalCase of fileCases) {
lines.push(` β’ ${evalCase.name} [${evalCase.helperName}]`);
}
}
lines.push('');
}
for (const [policy, cases] of byPolicyMap) {
if (renderedPolicies.has(policy) || !cases || cases.length === 0) {
continue;
}
lines.push(`${policy} (${cases.length} cases)`);
const byFile = groupBy(cases, (c) => c.relativePath);
for (const [filePath, fileCases] of byFile) {
lines.push(` ${filePath}`);
for (const evalCase of fileCases) {
lines.push(` β’ ${evalCase.name} [${evalCase.helperName}]`);
}
}
lines.push('');
}
// --- By Suite ---
lines.push('By Suite');
lines.push('ββββββββ');
const bySuite = groupBy(result.cases, (c) => c.suiteName ?? '(no suite)');
const suiteNames = [...bySuite.keys()].sort((a, b) => {
if (a === b) return 0;
if (a === '(no suite)') return 1;
if (b === '(no suite)') return -1;
return a.localeCompare(b, 'en');
});
for (const suite of suiteNames) {
const cases = bySuite.get(suite)!;
lines.push(`${suite} (${cases.length} cases)`);
for (const evalCase of cases) {
lines.push(
` β’ ${evalCase.name} [${evalCase.relativePath}] (${evalCase.policy})`,
);
}
lines.push('');
}
// --- Diagnostics ---
if (result.diagnostics.length > 0) {
const filePaths = new Map<string, string>();
for (const f of result.files) {
filePaths.set(f.filePath, f.relativePath);
}
lines.push('Diagnostics');
lines.push('βββββββββββ');
for (const diagnostic of result.diagnostics) {
const displayPath = resolveRelativePath(
diagnostic.filePath,
filePaths,
result.repoRoot,
);
lines.push(
`β ${displayPath}:${diagnostic.location.line}:${diagnostic.location.column} β ${diagnostic.message}`,
);
}
lines.push('');
}
return lines.join('\n');
}
export interface InventoryJsonOutput {
version: 1;
generated: string;
summary: {
totalFiles: number;
totalCases: number;
totalDiagnostics: number;
byPolicy: Record<string, number>;
};
cases: InventoryJsonCase[];
diagnostics: InventoryJsonDiagnostic[];
}
interface InventoryJsonCase {
name: string;
filePath: string;
helperName: string;
baseHelperName: string;
policy: string;
suiteName: string | null;
suiteType: string | null;
timeout: number | null;
hasFiles: boolean;
hasPrompt: boolean;
location: { line: number; column: number };
}
interface InventoryJsonDiagnostic {
severity: string;
message: string;
filePath: string;
location: { line: number; column: number };
}
export function formatInventoryJson(
result: InventoryResult,
now?: Date,
): string {
const filePathLookup = new Map<string, string>();
for (const f of result.files) {
filePathLookup.set(f.filePath, f.relativePath);
}
const policyCounts = new Map<string, number>();
for (const evalCase of result.cases) {
policyCounts.set(
evalCase.policy,
(policyCounts.get(evalCase.policy) ?? 0) + 1,
);
}
const byPolicy: Record<string, number> = {};
for (const policy of POLICY_ORDER) {
const count = policyCounts.get(policy);
if (count !== undefined) {
byPolicy[policy] = count;
}
}
for (const [policy, count] of policyCounts) {
if (!(policy in byPolicy)) {
byPolicy[policy] = count;
}
}
let generatedDate = now;
if (!generatedDate && process.env.SOURCE_DATE_EPOCH) {
const epoch = parseInt(process.env.SOURCE_DATE_EPOCH, 10);
if (!isNaN(epoch)) {
generatedDate = new Date(epoch * 1000);
}
}
if (
!generatedDate &&
(process.env.EVAL_INVENTORY_STABLE_DATE ||
process.env.EVAL_INVENTORY_DETERMINISTIC)
) {
generatedDate = new Date(0);
}
if (!generatedDate) {
generatedDate = new Date();
}
const output: InventoryJsonOutput = {
version: 1,
generated: generatedDate.toISOString(),
summary: {
totalFiles: result.totalFiles,
totalCases: result.totalCases,
totalDiagnostics: result.diagnostics.length,
byPolicy,
},
cases: result.cases.map((c) => ({
name: c.name,
filePath: c.relativePath,
helperName: c.helperName,
baseHelperName: c.baseHelperName,
policy: c.policy,
suiteName: c.suiteName ?? null,
suiteType: c.suiteType ?? null,
timeout: c.timeout ?? null,
hasFiles: c.hasFiles,
hasPrompt: c.hasPrompt,
location: { line: c.location.line, column: c.location.column },
})),
diagnostics: result.diagnostics.map((d) => {
const relativePath = resolveRelativePath(
d.filePath,
filePathLookup,
result.repoRoot,
);
return {
severity: d.severity,
message: d.message,
filePath: relativePath,
location: { line: d.location.line, column: d.location.column },
};
}),
};
return JSON.stringify(output, null, 2);
}
function groupBy<T>(
items: readonly T[],
keyFn: (item: T) => string,
): Map<string, T[]> {
const groups = new Map<string, T[]>();
for (const item of items) {
const key = keyFn(item);
const group = groups.get(key);
if (group) {
group.push(item);
} else {
groups.set(key, [item]);
}
}
return groups;
}
function resolveRelativePath(
filePath: string,
lookup: Map<string, string>,
baseDir: string,
): string {
if (filePath === '<inline>') {
return filePath;
}
const mapped = lookup.get(filePath);
if (mapped !== undefined) {
return mapped;
}
return path.isAbsolute(filePath)
? path.relative(baseDir, filePath).replace(/\\/g, '/')
: filePath;
}
function isNodeError(err: unknown): err is NodeJS.ErrnoException {
return err instanceof Error && 'code' in err;
}
|