forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalidate-integration-pins.test.ts
More file actions
201 lines (185 loc) · 5.92 KB
/
Copy pathvalidate-integration-pins.test.ts
File metadata and controls
201 lines (185 loc) · 5.92 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
import { afterEach, describe, expect, it } from "vitest";
import * as fs from "node:fs";
import * as os from "node:os";
import * as path from "node:path";
import {
validatePins,
formatViolations,
} from "../validate-integration-pins.js";
function makePkg(deps: Record<string, string>): string {
return JSON.stringify({ name: "fixture", dependencies: deps });
}
function setupFixture(
integrations: Record<string, Record<string, string>>,
): string {
const root = fs.mkdtempSync(path.join(os.tmpdir(), "validate-pins-"));
for (const [name, deps] of Object.entries(integrations)) {
const dir = path.join(root, name);
fs.mkdirSync(dir);
fs.writeFileSync(path.join(dir, "package.json"), makePkg(deps));
}
return root;
}
describe("validatePins", () => {
let fixtureDir: string;
afterEach(() => {
if (fixtureDir) fs.rmSync(fixtureDir, { recursive: true, force: true });
});
const ENFORCED = new Set(["adk"]);
it("returns no violations when every enforced integration matches the expected version", () => {
fixtureDir = setupFixture({
adk: { "@copilotkit/react-core": "1.56.4" },
});
const violations = validatePins({
expectedVersion: "1.56.4",
integrationsDir: fixtureDir,
enforced: ENFORCED,
});
expect(violations).toEqual([]);
});
it("flags stale exact-pinned versions in enforced integrations", () => {
fixtureDir = setupFixture({
adk: { "@copilotkit/react-core": "1.55.2" },
});
const violations = validatePins({
expectedVersion: "1.56.4",
integrationsDir: fixtureDir,
enforced: ENFORCED,
});
expect(violations).toHaveLength(1);
expect(violations[0].reason).toBe("stale");
});
it("flags floating dist-tag pins like 'latest' and 'next'", () => {
fixtureDir = setupFixture({
adk: { "@copilotkit/react-core": "latest" },
});
const violations = validatePins({
expectedVersion: "1.56.4",
integrationsDir: fixtureDir,
enforced: ENFORCED,
});
expect(violations).toHaveLength(1);
expect(violations[0].reason).toBe("floating-tag");
});
it("ignores integrations not on the allowlist (the 14 others left for QA)", () => {
fixtureDir = setupFixture({
adk: { "@copilotkit/react-core": "1.56.4" },
mastra: { "@copilotkit/react-core": "1.55.2" },
"mcp-apps": { "@copilotkit/runtime": "1.52.1" },
"a2a-middleware": { "@copilotkit/react-core": "latest" },
});
const violations = validatePins({
expectedVersion: "1.56.4",
integrationsDir: fixtureDir,
enforced: ENFORCED,
});
expect(violations).toEqual([]);
});
it("ignores intentional pre-release pins (e.g. ag-ui pre-release tags)", () => {
fixtureDir = setupFixture({
adk: {
"@copilotkit/react-core": "0.0.0-mme-ag-ui-0-0-46-20260227141603",
},
});
const violations = validatePins({
expectedVersion: "1.56.4",
integrationsDir: fixtureDir,
enforced: ENFORCED,
});
expect(violations).toEqual([]);
});
it("ignores non-@copilotkit dependencies entirely", () => {
fixtureDir = setupFixture({
adk: {
"@copilotkit/react-core": "1.56.4",
next: "16.1.1",
"@ag-ui/client": "0.0.52",
},
});
const violations = validatePins({
expectedVersion: "1.56.4",
integrationsDir: fixtureDir,
enforced: ENFORCED,
});
expect(violations).toEqual([]);
});
it("checks devDependencies too", () => {
fixtureDir = fs.mkdtempSync(path.join(os.tmpdir(), "validate-pins-dev-"));
const dir = path.join(fixtureDir, "adk");
fs.mkdirSync(dir);
fs.writeFileSync(
path.join(dir, "package.json"),
JSON.stringify({
name: "adk",
devDependencies: { "@copilotkit/react-core": "1.55.2" },
}),
);
const violations = validatePins({
expectedVersion: "1.56.4",
integrationsDir: fixtureDir,
enforced: ENFORCED,
});
expect(violations).toHaveLength(1);
expect(violations[0].dep).toBe("@copilotkit/react-core");
});
it("skips integrations without a package.json", () => {
fixtureDir = fs.mkdtempSync(path.join(os.tmpdir(), "validate-pins-skip-"));
fs.mkdirSync(path.join(fixtureDir, "adk"));
const violations = validatePins({
expectedVersion: "1.56.4",
integrationsDir: fixtureDir,
enforced: ENFORCED,
});
expect(violations).toEqual([]);
});
});
describe("formatViolations", () => {
it("returns an empty string when there are no violations", () => {
expect(formatViolations([], "1.56.4")).toBe("");
});
it("formats violations with reason, dep, and expected version", () => {
const out = formatViolations(
[
{
integration: "adk",
dep: "@copilotkit/react-core",
pinned: "1.55.2",
reason: "stale",
},
{
integration: "a2a-middleware",
dep: "@copilotkit/runtime",
pinned: "latest",
reason: "floating-tag",
},
],
"1.56.4",
);
expect(out).toContain("Found 2 stale pin(s)");
expect(out).toContain("[stale] adk: @copilotkit/react-core@1.55.2");
expect(out).toContain(
"[floating-tag] a2a-middleware: @copilotkit/runtime@latest",
);
expect(out).toContain("expected 1.56.4");
});
});
describe("live tree", () => {
it("examples/integrations/* @copilotkit pins match the monorepo release version", () => {
const repoRoot = path.resolve(__dirname, "..", "..");
const reactCorePkg = JSON.parse(
fs.readFileSync(
path.join(repoRoot, "packages", "react-core", "package.json"),
"utf8",
),
);
const expectedVersion = reactCorePkg.version;
const violations = validatePins({
expectedVersion,
integrationsDir: path.join(repoRoot, "examples", "integrations"),
});
if (violations.length > 0) {
console.error(formatViolations(violations, expectedVersion));
}
expect(violations).toEqual([]);
});
});