forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaudit.shared.ts
More file actions
93 lines (85 loc) · 3.02 KB
/
Copy pathaudit.shared.ts
File metadata and controls
93 lines (85 loc) · 3.02 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
// Shared helpers for audit.*.test.ts files.
//
// audit.test.ts was originally a single ~3000-line, 119-test file that ran
// ~71s on Node 22 in CI — over the hardcoded 60s birpc `onTaskUpdate` RPC
// window (upstream vitest #6129 — `DEFAULT_TIMEOUT = 6e4` in the bundled
// birpc). With `pool: 'forks'` (see showcase/scripts/vitest.config.ts) each
// file gets its own fresh worker + its own fresh 60s RPC budget, so the
// cliff is only hit per-file — splitting by describe-category dodges it.
//
// This module hosts the tmpdir / writePackage / makeConfig fixture
// builders and the AUDIT_SCRIPT path constant so we don't duplicate them
// across the split files.
import fs from "fs";
import os from "os";
import path from "path";
import { fileURLToPath } from "url";
import {
anomalyMessage,
type AuditConfig,
type PackageAudit,
} from "../audit.js";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
export const AUDIT_SCRIPT = path.resolve(__dirname, "..", "audit.ts");
/**
* Build a throwaway temp tree mimicking:
* <root>/integrations/<slug>/manifest.yaml
* <root>/integrations/<slug>/tests/e2e/*.spec.ts
* <root>/integrations/<slug>/qa/*.md
* <root>/examples/integrations/<name>/
*/
export function makeTmpTree(): string {
const root = fs.mkdtempSync(path.join(os.tmpdir(), "audit-fixture-"));
fs.mkdirSync(path.join(root, "integrations"), { recursive: true });
fs.mkdirSync(path.join(root, "examples", "integrations"), {
recursive: true,
});
return root;
}
export function makeConfig(root: string): AuditConfig {
return {
packagesDir: path.join(root, "integrations"),
examplesIntegrationsDir: path.join(root, "examples", "integrations"),
repoRoot: root,
};
}
export function writePackage(
root: string,
slug: string,
opts: {
manifest?: string; // raw YAML string; undefined = no manifest.yaml
specs?: string[];
qaFiles?: string[];
},
) {
const pkgDir = path.join(root, "integrations", slug);
fs.mkdirSync(pkgDir, { recursive: true });
if (opts.manifest !== undefined) {
fs.writeFileSync(path.join(pkgDir, "manifest.yaml"), opts.manifest);
}
if (opts.specs && opts.specs.length > 0) {
const e2eDir = path.join(pkgDir, "tests", "e2e");
fs.mkdirSync(e2eDir, { recursive: true });
for (const s of opts.specs) {
fs.writeFileSync(path.join(e2eDir, s), "// test\n");
}
}
if (opts.qaFiles && opts.qaFiles.length > 0) {
const qaDir = path.join(pkgDir, "qa");
fs.mkdirSync(qaDir, { recursive: true });
for (const q of opts.qaFiles) {
fs.writeFileSync(path.join(qaDir, q), "# qa\n");
}
}
}
export function makeExampleDir(root: string, name: string) {
fs.mkdirSync(path.join(root, "examples", "integrations", name), {
recursive: true,
});
}
// Helpers that recover the old string-based predicates so tests read like
// a behavioral spec even though the underlying type is now tagged.
export function anomalyStrings(a: PackageAudit): string[] {
return a.anomalies.map(anomalyMessage);
}