forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslug-map.test.ts
More file actions
430 lines (390 loc) · 17.2 KB
/
Copy pathslug-map.test.ts
File metadata and controls
430 lines (390 loc) · 17.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
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
/**
* Tests for showcase/scripts/lib/slug-map.ts.
*
* Pins the shared slug/examples mapping tables and the
* born-in-showcase set so all three validators agree.
*/
import { describe, it, expect, beforeAll, afterAll } from "vitest";
import fs from "fs";
import os from "os";
import path from "path";
import { fileURLToPath } from "url";
import {
BORN_IN_SHOWCASE,
SLUG_MAP,
SLUG_TO_EXAMPLES,
FALLBACK_MAP,
isShowcaseSlug,
} from "../slug-map.js";
import type { ShowcaseSlug } from "../slug-map.js";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const PACKAGES_DIR = path.resolve(__dirname, "..", "..", "..", "integrations");
describe("BORN_IN_SHOWCASE", () => {
it("contains the 6 known born-in-showcase slugs", () => {
expect(BORN_IN_SHOWCASE.has("ag2")).toBe(true);
expect(BORN_IN_SHOWCASE.has("claude-sdk-python")).toBe(true);
expect(BORN_IN_SHOWCASE.has("claude-sdk-typescript")).toBe(true);
expect(BORN_IN_SHOWCASE.has("langroid")).toBe(true);
expect(BORN_IN_SHOWCASE.has("ms-agent-harness-dotnet")).toBe(true);
expect(BORN_IN_SHOWCASE.has("spring-ai")).toBe(true);
});
it("has exactly 6 entries — guards against accidental additions", () => {
// Size assertion: if someone adds a new born-in-showcase slug without
// updating the test above, this pins the cardinality so the addition
// is caught rather than silently accepted.
expect(BORN_IN_SHOWCASE.size).toBe(6);
});
it("is a frozen / immutable ReadonlySet (add throws)", () => {
// Callers must not mutate the shared set at runtime. A ReadonlySet type
// is compile-time only; we back it with a frozen Set so a runtime
// `.add()` attempt throws in strict mode rather than silently diverging
// from the other validator copies.
const s = BORN_IN_SHOWCASE as unknown as Set<string>;
expect(() => s.add("sneaky-mutation")).toThrow();
});
it("rejects .delete and .clear on the frozen set", () => {
const s = BORN_IN_SHOWCASE as unknown as Set<string>;
expect(() => s.delete("ag2")).toThrow();
expect(() => s.clear()).toThrow();
});
});
describe("SLUG_TO_EXAMPLES (showcase slug → examples dir names)", () => {
// This test reads the live showcase/integrations/ tree. In sparse
// checkouts (CI shards, partial clones) the directory may be absent;
// skip rather than false-fail when that happens.
it.skipIf(!fs.existsSync(PACKAGES_DIR))(
"has no dead entries — every target dir exists under showcase/integrations/",
() => {
// Regression guard: the old audit.ts map contained crewai-flows,
// agent-spec-langgraph, and mcp-apps which produced phantom "no
// examples source" anomalies. Removing them here is the whole point of
// the extraction.
for (const slug of Object.keys(SLUG_TO_EXAMPLES)) {
const pkgPath = path.join(PACKAGES_DIR, slug);
expect(
fs.existsSync(pkgPath),
`SLUG_TO_EXAMPLES slug '${slug}' has no matching showcase/integrations/${slug}/`,
).toBe(true);
}
},
);
// Companion to the skipIf test above — runs UNCONDITIONALLY against a
// fixture tmpdir so the invariant ("every SLUG_TO_EXAMPLES key has a
// matching integrations/<slug>/ dir") is still exercised on sparse
// checkouts / CI shards / Docker build contexts where the real
// showcase/integrations/ tree is absent. A skipIf without a contra-positive
// assertion is indistinguishable from "test was deleted."
describe("fixture-based invariant (runs regardless of checkout layout)", () => {
let fixtureDir: string;
let fixturePackagesDir: string;
beforeAll(() => {
fixtureDir = fs.mkdtempSync(path.join(os.tmpdir(), "slug-map-fixture-"));
fixturePackagesDir = path.join(fixtureDir, "integrations");
fs.mkdirSync(fixturePackagesDir, { recursive: true });
// Seed a directory for every SLUG_TO_EXAMPLES key. This mirrors the
// expected layout of showcase/integrations/ — the invariant check below
// is identical in spirit to the skipIf test, just pointed at a
// fixture whose contents we fully control.
for (const slug of Object.keys(SLUG_TO_EXAMPLES)) {
fs.mkdirSync(path.join(fixturePackagesDir, slug), { recursive: true });
}
});
afterAll(() => {
fs.rmSync(fixtureDir, { recursive: true, force: true });
});
it("every SLUG_TO_EXAMPLES key resolves to a real dir in the fixture", () => {
const seen: string[] = [];
for (const slug of Object.keys(SLUG_TO_EXAMPLES)) {
const pkgPath = path.join(fixturePackagesDir, slug);
expect(
fs.existsSync(pkgPath),
`fixture missing integrations/${slug}/ — invariant seeding is broken`,
).toBe(true);
seen.push(slug);
}
// Sentinel: assert we actually iterated at least one slug. A silent
// empty SLUG_TO_EXAMPLES would otherwise pass vacuously.
expect(seen.length).toBeGreaterThan(0);
});
});
it("does not include the three known dead entries", () => {
expect(
(SLUG_TO_EXAMPLES as Record<string, unknown>)["crewai-flows"],
).toBeUndefined();
expect(
(SLUG_TO_EXAMPLES as Record<string, unknown>)["agent-spec-langgraph"],
).toBeUndefined();
expect(
(SLUG_TO_EXAMPLES as Record<string, unknown>)["mcp-apps"],
).toBeUndefined();
});
it("rejects adding a new top-level key at runtime", () => {
// Object.isFrozen is the weak form of this assertion: it only checks
// a flag. An actual mutation attempt is the real invariant — strict
// mode is active in ESM, so assignment on a frozen object throws.
expect(() => {
(SLUG_TO_EXAMPLES as unknown as Record<string, readonly string[]>)[
"bogus-new-slug"
] = ["nothing"];
}).toThrow();
});
it("rejects reassigning an existing top-level entry at runtime", () => {
expect(() => {
(SLUG_TO_EXAMPLES as unknown as Record<string, readonly string[]>)[
"mastra"
] = ["replaced"];
}).toThrow();
});
it("rejects mutating an inner array (element assignment throws)", () => {
// freezeMap2D must freeze BOTH the outer record AND each inner array.
// Without the inner freeze, `SLUG_TO_EXAMPLES.mastra[0] = "x"` would
// silently succeed even though the outer Object.isFrozen reports true.
expect(() => {
(SLUG_TO_EXAMPLES.mastra as unknown as string[])[0] = "mutated";
}).toThrow();
});
it("rejects .push on an inner array (all mutation methods fail)", () => {
expect(() => {
(SLUG_TO_EXAMPLES.mastra as unknown as string[]).push("extra");
}).toThrow();
});
});
describe("SLUG_MAP (examples dir → showcase slug)", () => {
it("contains the known mapping for langgraph-js → langgraph-typescript", () => {
// Sample entry inversely matched with SLUG_TO_EXAMPLES.
expect(SLUG_MAP.get("langgraph-js")).toBe("langgraph-typescript");
});
it("inverse of SLUG_MAP covers a sample SLUG_TO_EXAMPLES entry", () => {
// For a slug with a unique examples dir (not a fan-out like crewai-*),
// the entries should be bidirectionally consistent.
const exampleDirs = SLUG_TO_EXAMPLES["langgraph-typescript"];
expect(exampleDirs).toBeDefined();
for (const dir of exampleDirs!) {
expect(SLUG_MAP.get(dir)).toBe("langgraph-typescript");
}
});
// Reads the live showcase/integrations/ tree — skip in sparse checkouts
// where that directory is not materialized.
it.skipIf(!fs.existsSync(PACKAGES_DIR))(
"every VALUE in SLUG_MAP names a real showcase/integrations/<slug>/ dir",
() => {
// Dead-entry guard: the old SLUG_MAP carried values like `crewai`,
// `maf-dotnet`, `maf-python`, `aws-strands`, `agent-spec-langgraph`,
// `a2a`, `mcp-apps`, `pydanticai` that did NOT exist under
// showcase/integrations/. Those broke validate-pins.ts's reverse lookup
// and forced FALLBACK_MAP to re-express the corrections.
for (const [, slug] of SLUG_MAP) {
const pkgPath = path.join(PACKAGES_DIR, slug);
expect(
fs.existsSync(pkgPath),
`SLUG_MAP value '${slug}' has no matching showcase/integrations/${slug}/`,
).toBe(true);
}
},
);
// Companion to the skipIf test above — runs UNCONDITIONALLY against a
// fixture tmpdir so the SLUG_MAP value invariant is exercised even
// when showcase/integrations/ is absent. Without this, a sparse CI
// checkout would silently skip the invariant and a regression
// (reintroducing a dead value like `crewai` / `mcp-apps`) would pass.
describe("fixture-based SLUG_MAP invariant (runs regardless of checkout layout)", () => {
let fixtureDir: string;
let fixturePackagesDir: string;
beforeAll(() => {
fixtureDir = fs.mkdtempSync(path.join(os.tmpdir(), "slug-map-fixture-"));
fixturePackagesDir = path.join(fixtureDir, "integrations");
fs.mkdirSync(fixturePackagesDir, { recursive: true });
// Seed the fixture with every unique VALUE in SLUG_MAP plus every
// FALLBACK_MAP target — those are the invariants we enforce.
const targets = new Set<string>();
for (const [, slug] of SLUG_MAP) targets.add(slug);
for (const target of Object.values(FALLBACK_MAP)) targets.add(target);
for (const slug of targets) {
fs.mkdirSync(path.join(fixturePackagesDir, slug), { recursive: true });
}
});
afterAll(() => {
fs.rmSync(fixtureDir, { recursive: true, force: true });
});
it("every SLUG_MAP value resolves to a real dir in the fixture", () => {
let iter = 0;
for (const [, slug] of SLUG_MAP) {
const pkgPath = path.join(fixturePackagesDir, slug);
expect(
fs.existsSync(pkgPath),
`fixture missing integrations/${slug}/ — seeding is broken`,
).toBe(true);
iter++;
}
expect(iter).toBeGreaterThan(0);
});
it("every FALLBACK_MAP target resolves to a real dir in the fixture", () => {
let iter = 0;
for (const [slug, target] of Object.entries(FALLBACK_MAP)) {
const pkgPath = path.join(fixturePackagesDir, target);
expect(
fs.existsSync(pkgPath),
`FALLBACK_MAP['${slug}'] = '${target}' has no matching dir`,
).toBe(true);
iter++;
}
expect(iter).toBeGreaterThan(0);
});
});
it("is frozen — .set throws", () => {
const m = SLUG_MAP as unknown as Map<string, string>;
expect(() => m.set("bad", "mutation")).toThrow();
});
it("is frozen — .delete and .clear throw", () => {
const m = SLUG_MAP as unknown as Map<string, string>;
expect(() => m.delete("langgraph-js")).toThrow();
expect(() => m.clear()).toThrow();
});
});
describe("isShowcaseSlug runtime validator", () => {
it("accepts a non-empty, kebab-cased-or-plain slug string", () => {
expect(isShowcaseSlug("ag2")).toBe(true);
expect(isShowcaseSlug("langgraph-typescript")).toBe(true);
expect(isShowcaseSlug("ms-agent-framework-python")).toBe(true);
});
it("rejects the empty string", () => {
expect(isShowcaseSlug("")).toBe(false);
});
it("rejects non-string inputs via defensive typeof check", () => {
// Signature widened from (s: string) to (s: unknown) so the guard
// is a live validator at any API boundary. Pass the values directly
// — no `as unknown as string` casts needed now that the parameter
// type accepts unknown.
expect(isShowcaseSlug(null)).toBe(false);
expect(isShowcaseSlug(undefined)).toBe(false);
expect(isShowcaseSlug(42)).toBe(false);
expect(isShowcaseSlug({})).toBe(false);
expect(isShowcaseSlug([])).toBe(false);
expect(isShowcaseSlug(true)).toBe(false);
});
it("narrows its argument via a user-defined type predicate", () => {
// isShowcaseSlug is declared `(s: unknown): s is ShowcaseSlug`, so
// when it returns true the compiler narrows the caller's variable to
// ShowcaseSlug. This test is primarily a compile-time assertion; a
// runtime check backs it up.
const candidate: unknown = "ag2";
if (isShowcaseSlug(candidate)) {
// Must be assignable to ShowcaseSlug without further casts.
const s: ShowcaseSlug = candidate;
expect(s).toBe("ag2");
} else {
throw new Error("expected 'ag2' to satisfy isShowcaseSlug");
}
});
it("rejects slugs containing whitespace or path separators", () => {
// These are the most likely garbage-input patterns at the boundary.
expect(isShowcaseSlug("foo bar")).toBe(false);
expect(isShowcaseSlug("foo/bar")).toBe(false);
expect(isShowcaseSlug("foo\\bar")).toBe(false);
});
it("is applied at construction — every BORN_IN_SHOWCASE and SLUG_MAP slug satisfies it", () => {
for (const s of BORN_IN_SHOWCASE) expect(isShowcaseSlug(s)).toBe(true);
for (const [, slug] of SLUG_MAP) expect(isShowcaseSlug(slug)).toBe(true);
for (const slug of Object.keys(SLUG_TO_EXAMPLES))
expect(isShowcaseSlug(slug)).toBe(true);
for (const slug of Object.keys(FALLBACK_MAP))
expect(isShowcaseSlug(slug)).toBe(true);
});
});
describe("freezeSet / freezeMap behavioral invariants", () => {
it("BORN_IN_SHOWCASE rejects re-defining its mutation methods", () => {
// Behavioral form of the old descriptor-bit check: the concrete
// invariant is that a later caller cannot restore a working `.add`
// by re-replacing the property. Assert that any re-defineProperty
// attempt throws, rather than inspecting descriptor bits directly —
// tests should pin observable behavior, not implementation shape.
const s = BORN_IN_SHOWCASE as unknown as Set<string>;
expect(() => {
Object.defineProperty(s, "add", { value: (_v: string) => s });
}).toThrow();
expect(() => {
Object.defineProperty(s, "delete", { value: (_v: string) => true });
}).toThrow();
expect(() => {
Object.defineProperty(s, "clear", { value: () => undefined });
}).toThrow();
});
it("SLUG_MAP rejects re-defining its mutation methods", () => {
const m = SLUG_MAP as unknown as Map<string, string>;
expect(() => {
Object.defineProperty(m, "set", {
value: (_k: string, _v: string) => m,
});
}).toThrow();
expect(() => {
Object.defineProperty(m, "delete", { value: (_k: string) => true });
}).toThrow();
expect(() => {
Object.defineProperty(m, "clear", { value: () => undefined });
}).toThrow();
});
});
describe("SLUG_TO_EXAMPLES / FALLBACK_MAP / BORN_IN_SHOWCASE derive from one entries source", () => {
it("every FALLBACK_MAP entry names a slug also present in SLUG_TO_EXAMPLES", () => {
// Derivation invariant: both maps come from the same per-slug entry
// (slug, examples dirs, optional fallback). A FALLBACK_MAP key with
// no SLUG_TO_EXAMPLES counterpart would mean the two maps were edited
// independently and fell out of sync.
for (const slug of Object.keys(FALLBACK_MAP)) {
expect(
(SLUG_TO_EXAMPLES as Record<string, unknown>)[slug],
`FALLBACK_MAP slug '${slug}' missing from SLUG_TO_EXAMPLES`,
).toBeDefined();
}
});
it("FALLBACK_MAP target equals the first SLUG_TO_EXAMPLES candidate for the same slug", () => {
// Both maps share the same underlying entry; the fallback is simply
// the chosen preferred dir out of SLUG_TO_EXAMPLES[slug]. If someone
// edits one side but not the other, the two maps will disagree.
for (const [slug, target] of Object.entries(FALLBACK_MAP)) {
const dirs = SLUG_TO_EXAMPLES[slug];
expect(dirs).toBeDefined();
expect(dirs![0]).toBe(target);
}
});
it("BORN_IN_SHOWCASE and SLUG_TO_EXAMPLES are disjoint (no slug is both)", () => {
// A born-in-showcase slug has no examples counterpart by definition;
// putting it in SLUG_TO_EXAMPLES would contradict that. The derivation
// pipeline enforces that an entry with `bornInShowcase: true` has NO
// examples dirs, so the two outputs can never overlap.
for (const slug of BORN_IN_SHOWCASE) {
expect(
(SLUG_TO_EXAMPLES as Record<string, unknown>)[slug],
`'${slug}' is in both BORN_IN_SHOWCASE and SLUG_TO_EXAMPLES`,
).toBeUndefined();
}
});
it("BORN_IN_SHOWCASE and FALLBACK_MAP are disjoint", () => {
// Same pairing: born-in-showcase slugs have no examples dir, so a
// FALLBACK_MAP target for one would be nonsensical.
for (const slug of BORN_IN_SHOWCASE) {
expect(
(FALLBACK_MAP as Record<string, unknown>)[slug],
`'${slug}' is in both BORN_IN_SHOWCASE and FALLBACK_MAP`,
).toBeUndefined();
}
});
});
describe("FALLBACK_MAP (documents SLUG_MAP staleness)", () => {
it("contains the stale-mapping entries validate-pins.ts relied on", () => {
expect(FALLBACK_MAP["crewai-crews"]).toBe("crewai-crews");
expect(FALLBACK_MAP["ms-agent-dotnet"]).toBe("ms-agent-framework-dotnet");
expect(FALLBACK_MAP["ms-agent-python"]).toBe("ms-agent-framework-python");
expect(FALLBACK_MAP["pydantic-ai"]).toBe("pydantic-ai");
expect(FALLBACK_MAP["strands"]).toBe("strands-python");
});
it("rejects runtime mutation", () => {
expect(() => {
(FALLBACK_MAP as unknown as Record<string, string>)["new-key"] = "bogus";
}).toThrow();
expect(() => {
(FALLBACK_MAP as unknown as Record<string, string>)["strands"] = "other";
}).toThrow();
});
});