forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbaseline.test.ts
More file actions
543 lines (494 loc) · 14.6 KB
/
Copy pathbaseline.test.ts
File metadata and controls
543 lines (494 loc) · 14.6 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
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
import { describe, it, expect, beforeEach, afterEach } from "vitest";
import fs from "node:fs";
import path from "node:path";
import os from "node:os";
import {
transformHarnessResponse,
loadBaseline,
saveBaseline,
captureBaseline,
type EvalBaseline,
} from "./baseline.js";
// ---------------------------------------------------------------------------
// Helpers
// ---------------------------------------------------------------------------
function tmpDir(): string {
return fs.mkdtempSync(path.join(os.tmpdir(), "baseline-test-"));
}
// ---------------------------------------------------------------------------
// transformHarnessResponse
// ---------------------------------------------------------------------------
describe("transformHarnessResponse", () => {
it("converts API probe list with services to slug-keyed baseline format", () => {
const response = {
probes: [
{
id: "e2e-deep",
kind: "e2e",
lastRun: {
startedAt: "2025-06-01T00:00:00.000Z",
finishedAt: "2025-06-01T00:05:00.000Z",
durationMs: 300_000,
state: "completed" as const,
summary: {
total: 10,
passed: 8,
failed: 2,
services: [
{
slug: "e2e-deep:showcase-mastra",
result: "green",
state: "completed",
},
{
slug: "e2e-deep:showcase-langgraph-python",
result: "red",
state: "completed",
},
],
},
},
},
{
id: "smoke-quick",
kind: "smoke",
lastRun: {
startedAt: "2025-06-01T00:00:00.000Z",
finishedAt: "2025-06-01T00:01:00.000Z",
durationMs: 60_000,
state: "completed" as const,
summary: {
total: 5,
passed: 5,
failed: 0,
services: [
{
slug: "smoke-quick:showcase-built-in-agent",
result: "green",
state: "completed",
},
],
},
},
},
],
};
const baseline = transformHarnessResponse(response);
expect(baseline.version).toBe(1);
expect(baseline.source).toBe("harness-prod");
expect(baseline.timestamp).toBeTruthy();
// Results keyed by integration slug with _status sub-key
expect(baseline.results["mastra"]).toBeDefined();
expect(baseline.results["mastra"]["_status"]).toEqual({
status: "pass",
});
expect(baseline.results["langgraph-python"]).toBeDefined();
expect(baseline.results["langgraph-python"]["_status"]).toEqual({
status: "fail",
});
expect(baseline.results["built-in-agent"]).toBeDefined();
expect(baseline.results["built-in-agent"]["_status"]).toEqual({
status: "pass",
});
// No probe-keyed results
expect(baseline.results["e2e-deep"]).toBeUndefined();
expect(baseline.results["smoke-quick"]).toBeUndefined();
expect(baseline.summary).toEqual({
total: 3,
pass: 2,
fail: 1,
skip: 0,
});
});
it("skips probes with null lastRun", () => {
const response = {
probes: [
{
id: "never-ran",
kind: "e2e",
lastRun: null,
},
{
id: "did-run",
kind: "smoke",
lastRun: {
startedAt: "2025-06-01T00:00:00.000Z",
finishedAt: "2025-06-01T00:01:00.000Z",
durationMs: 60_000,
state: "completed" as const,
summary: {
total: 3,
passed: 3,
failed: 0,
services: [
{
slug: "did-run:showcase-mastra",
result: "green",
state: "completed",
},
],
},
},
},
],
};
const baseline = transformHarnessResponse(response);
expect(baseline.results["mastra"]).toBeDefined();
expect(baseline.results["mastra"]["_status"]).toEqual({
status: "pass",
});
expect(baseline.summary.total).toBe(1);
expect(baseline.summary.skip).toBe(0);
});
it("skips probes with null summary", () => {
const response = {
probes: [
{
id: "no-summary",
kind: "e2e",
lastRun: {
startedAt: "2025-06-01T00:00:00.000Z",
finishedAt: "2025-06-01T00:01:00.000Z",
durationMs: 60_000,
state: "completed" as const,
summary: null,
},
},
{
id: "has-summary",
kind: "smoke",
lastRun: {
startedAt: "2025-06-01T00:00:00.000Z",
finishedAt: "2025-06-01T00:01:00.000Z",
durationMs: 60_000,
state: "completed" as const,
summary: {
total: 2,
passed: 2,
failed: 0,
services: [
{
slug: "has-summary:showcase-agno",
result: "green",
state: "completed",
},
],
},
},
},
],
};
const baseline = transformHarnessResponse(response);
expect(baseline.results["agno"]).toBeDefined();
expect(baseline.results["agno"]["_status"]).toEqual({
status: "pass",
});
expect(baseline.summary.total).toBe(1);
});
it("skips probes without services array gracefully", () => {
const response = {
probes: [
{
id: "legacy-probe",
kind: "e2e",
lastRun: {
startedAt: "2025-06-01T00:00:00.000Z",
finishedAt: "2025-06-01T00:05:00.000Z",
durationMs: 300_000,
state: "completed" as const,
summary: {
total: 10,
passed: 8,
failed: 2,
// no services array
},
},
},
{
id: "new-probe",
kind: "e2e",
lastRun: {
startedAt: "2025-06-01T00:00:00.000Z",
finishedAt: "2025-06-01T00:05:00.000Z",
durationMs: 300_000,
state: "completed" as const,
summary: {
total: 5,
passed: 5,
failed: 0,
services: [
{
slug: "new-probe:showcase-crewai-crews",
result: "green",
state: "completed",
},
],
},
},
},
],
};
const baseline = transformHarnessResponse(response);
// legacy-probe has no services — should be skipped entirely
expect(baseline.results["legacy-probe"]).toBeUndefined();
// new-probe's services should be captured
expect(baseline.results["crewai-crews"]).toBeDefined();
expect(baseline.results["crewai-crews"]["_status"]).toEqual({
status: "pass",
});
expect(baseline.summary).toEqual({
total: 1,
pass: 1,
fail: 0,
skip: 0,
});
});
it("keeps worst status when same slug appears in multiple probes", () => {
const response = {
probes: [
{
id: "e2e-deep",
kind: "e2e",
lastRun: {
startedAt: "2025-06-01T00:00:00.000Z",
finishedAt: "2025-06-01T00:05:00.000Z",
durationMs: 300_000,
state: "completed" as const,
summary: {
total: 5,
passed: 5,
failed: 0,
services: [
{
slug: "e2e-deep:showcase-mastra",
result: "green",
state: "completed",
},
{
slug: "e2e-deep:showcase-langgraph-python",
result: "green",
state: "completed",
},
],
},
},
},
{
id: "e2e-demos",
kind: "e2e",
lastRun: {
startedAt: "2025-06-01T00:00:00.000Z",
finishedAt: "2025-06-01T00:03:00.000Z",
durationMs: 180_000,
state: "completed" as const,
summary: {
total: 5,
passed: 3,
failed: 2,
services: [
{
slug: "e2e-demos:showcase-mastra",
result: "red",
state: "completed",
},
{
slug: "e2e-demos:showcase-langgraph-python",
result: "green",
state: "completed",
},
],
},
},
},
],
};
const baseline = transformHarnessResponse(response);
// mastra: green in e2e-deep, red in e2e-demos -> worst = fail
expect(baseline.results["mastra"]["_status"]).toEqual({
status: "fail",
});
// langgraph-python: green in both -> pass
expect(baseline.results["langgraph-python"]["_status"]).toEqual({
status: "pass",
});
expect(baseline.summary).toEqual({
total: 2,
pass: 1,
fail: 1,
skip: 0,
});
});
it("skips service slugs that do not contain :showcase- separator", () => {
const response = {
probes: [
{
id: "custom-probe",
kind: "e2e",
lastRun: {
startedAt: "2025-06-01T00:00:00.000Z",
finishedAt: "2025-06-01T00:05:00.000Z",
durationMs: 300_000,
state: "completed" as const,
summary: {
total: 3,
passed: 3,
failed: 0,
services: [
{
slug: "malformed-slug-no-separator",
result: "green",
state: "completed",
},
{
slug: "custom-probe:showcase-mastra",
result: "green",
state: "completed",
},
],
},
},
},
],
};
const baseline = transformHarnessResponse(response);
// Malformed slug should be skipped
expect(Object.keys(baseline.results)).toEqual(["mastra"]);
expect(baseline.summary.total).toBe(1);
});
it("returns empty results for response with no probes", () => {
const response = { probes: [] };
const baseline = transformHarnessResponse(response);
expect(baseline.results).toEqual({});
expect(baseline.summary).toEqual({
total: 0,
pass: 0,
fail: 0,
skip: 0,
});
});
});
// ---------------------------------------------------------------------------
// loadBaseline
// ---------------------------------------------------------------------------
describe("loadBaseline", () => {
let dir: string;
beforeEach(() => {
dir = tmpDir();
});
afterEach(() => {
fs.rmSync(dir, { recursive: true, force: true });
});
it("returns null when file does not exist", () => {
const result = loadBaseline(path.join(dir, "nonexistent.json"));
expect(result).toBeNull();
});
it("reads valid JSON from disk", () => {
const baseline: EvalBaseline = {
version: 1,
timestamp: "2025-06-01T00:00:00.000Z",
source: "harness-prod",
branch: "",
base: "",
level: "deep",
results: {
mastra: {
_status: { status: "pass" },
},
},
summary: { total: 1, pass: 1, fail: 0, skip: 0 },
};
const filePath = path.join(dir, "baseline.json");
fs.writeFileSync(filePath, JSON.stringify(baseline));
const loaded = loadBaseline(filePath);
expect(loaded).toEqual(baseline);
});
});
// ---------------------------------------------------------------------------
// saveBaseline
// ---------------------------------------------------------------------------
describe("saveBaseline", () => {
let dir: string;
beforeEach(() => {
dir = tmpDir();
});
afterEach(() => {
fs.rmSync(dir, { recursive: true, force: true });
});
it("writes valid JSON to disk", () => {
const baseline: EvalBaseline = {
version: 1,
timestamp: "2025-06-01T00:00:00.000Z",
source: "local-capture",
branch: "main",
base: "",
level: "deep",
results: {
"built-in-agent": {
_status: { status: "pass" },
},
},
summary: { total: 1, pass: 1, fail: 0, skip: 0 },
};
const filePath = path.join(dir, "out.json");
saveBaseline(baseline, filePath);
const raw = fs.readFileSync(filePath, "utf-8");
const parsed = JSON.parse(raw);
expect(parsed).toEqual(baseline);
});
});
// ---------------------------------------------------------------------------
// captureBaseline
// ---------------------------------------------------------------------------
describe("captureBaseline", () => {
let dir: string;
let outDir: string;
beforeEach(() => {
dir = tmpDir();
outDir = tmpDir();
});
afterEach(() => {
fs.rmSync(dir, { recursive: true, force: true });
fs.rmSync(outDir, { recursive: true, force: true });
});
it("copies latest eval result as baseline with source: local-capture", () => {
// Write two fake eval results — captureBaseline should pick the most
// recently modified one.
const older: EvalBaseline = {
version: 1,
timestamp: "2025-05-01T00:00:00.000Z",
source: "harness-prod",
branch: "old",
base: "",
level: "deep",
results: {},
summary: { total: 0, pass: 0, fail: 0, skip: 0 },
};
const newer: EvalBaseline = {
version: 1,
timestamp: "2025-06-01T00:00:00.000Z",
source: "harness-prod",
branch: "new",
base: "",
level: "deep",
results: {
mastra: {
_status: { status: "pass" },
},
},
summary: { total: 1, pass: 1, fail: 0, skip: 0 },
};
const olderPath = path.join(dir, "eval-2025-05-01.json");
const newerPath = path.join(dir, "eval-2025-06-01.json");
fs.writeFileSync(olderPath, JSON.stringify(older));
// Ensure newer file has a later mtime
const futureTime = new Date(Date.now() + 2000);
fs.writeFileSync(newerPath, JSON.stringify(newer));
fs.utimesSync(newerPath, futureTime, futureTime);
const baselinePath = path.join(outDir, "baseline.json");
captureBaseline(dir, baselinePath);
const captured = JSON.parse(fs.readFileSync(baselinePath, "utf-8"));
expect(captured.source).toBe("local-capture");
expect(captured.branch).toBe("new");
expect(captured.results).toEqual(newer.results);
});
});