-
Notifications
You must be signed in to change notification settings - Fork 18.6k
Expand file tree
/
Copy pathslop-diff.ts
More file actions
220 lines (196 loc) · 6.7 KB
/
Copy pathslop-diff.ts
File metadata and controls
220 lines (196 loc) · 6.7 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
#!/usr/bin/env bun
/**
* slop-diff: show NEW slop-scan findings introduced on this branch.
*
* Runs slop-scan on HEAD and on the merge-base, then diffs the results
* to show only findings that were added. Line-number-insensitive comparison
* so shifting code doesn't create false positives.
*
* Usage:
* bun run slop:diff # diff against main
* bun run slop:diff origin/release # diff against another base
*/
import { spawnSync } from "child_process";
import * as fs from "fs";
import * as os from "os";
import * as path from "path";
const base = process.argv[2] || "main";
// 1. Find changed files
const diffResult = spawnSync("git", ["diff", "--name-only", `${base}...HEAD`], {
encoding: "utf-8",
timeout: 10000,
});
const changedFiles = new Set(
(diffResult.stdout || "").trim().split("\n").filter(Boolean),
);
if (changedFiles.size === 0) {
console.log("No files changed vs", base, "— nothing to check.");
process.exit(0);
}
/**
* Run `npx slop-scan scan <target> --json` with stdout redirected to a temp
* FILE and return the report text.
*
* Why not capture the pipe: slop-scan@0.3.0 writes its report with async
* stdout writes and then calls process.exit(), so on a PIPED stdout the
* output is truncated at the first ~8KB chunk (a full-repo report is
* multi-MB). File writes are synchronous, so redirecting to a file yields
* the complete report regardless of size. Returns null when slop-scan is
* unavailable or produced no output.
*/
function runSlopScan(target: string): string | null {
const outFile = path.join(
os.tmpdir(),
`slop-scan-out-${process.pid}-${Date.now()}.json`,
);
const outFd = fs.openSync(outFile, "w");
try {
spawnSync("npx", ["slop-scan", "scan", target, "--json"], {
stdio: ["ignore", outFd, "pipe"],
timeout: 120000,
shell: process.platform === "win32",
});
fs.closeSync(outFd);
const raw = fs.readFileSync(outFile, "utf-8");
return raw.length > 0 ? raw : null;
} catch {
return null;
} finally {
fs.rmSync(outFile, { force: true });
}
}
// 2. Run slop-scan on HEAD
const scanHeadOut = runSlopScan(".");
if (!scanHeadOut) {
console.log("slop-scan not available. Install: npm i -g slop-scan");
process.exit(0);
}
let headReport: any;
try {
headReport = JSON.parse(scanHeadOut);
} catch {
console.log("slop-scan returned invalid JSON.");
process.exit(0);
}
// 3. Get base branch findings using git stash approach
// Check out base versions of changed files, scan, then restore
const mergeBase = spawnSync("git", ["merge-base", base, "HEAD"], {
encoding: "utf-8",
timeout: 5000,
}).stdout?.trim();
// Fingerprint: strip line numbers so shifting code doesn't create false positives
// "line 142: empty catch, boundary=none" -> "empty catch, boundary=none"
function stripLineNum(evidence: string): string {
return evidence.replace(/^line \d+: /, "").replace(/ at line \d+ /, " ");
}
// Count evidence items per (rule, file, stripped-evidence) for the base
const baseCounts = new Map<string, number>();
if (mergeBase) {
// Create temp worktree for base scan
const tmpWorktree = path.join(os.tmpdir(), `slop-base-${Date.now()}`);
const wtResult = spawnSync(
"git",
["worktree", "add", "--detach", tmpWorktree, mergeBase],
{
encoding: "utf-8",
timeout: 30000,
},
);
if (wtResult.status === 0) {
// Copy slop-scan config if it exists
const configFile = "slop-scan.config.json";
if (fs.existsSync(configFile)) {
try {
fs.copyFileSync(configFile, path.join(tmpWorktree, configFile));
} catch {}
}
const scanBaseOut = runSlopScan(tmpWorktree);
if (scanBaseOut) {
try {
const baseReport = JSON.parse(scanBaseOut);
for (const f of baseReport.findings) {
// Remap worktree paths back to repo-relative
const realPath = f.path.replace(tmpWorktree + "/", "");
if (!changedFiles.has(realPath)) continue;
for (const ev of f.evidence || []) {
const key = `${f.ruleId}|${realPath}|${stripLineNum(ev)}`;
baseCounts.set(key, (baseCounts.get(key) || 0) + 1);
}
}
} catch {}
}
// Clean up worktree
spawnSync("git", ["worktree", "remove", "--force", tmpWorktree], {
timeout: 10000,
});
}
}
// 4. Find genuinely new findings
// For each evidence item on HEAD, check if the base had the same (rule, file, stripped-evidence).
// Use counts to handle duplicates: if base had 2 and HEAD has 3, that's 1 new.
const headCounts = new Map<string, { count: number; evidence: string[] }>();
const headFindings = headReport.findings.filter((f: any) =>
changedFiles.has(f.path),
);
for (const f of headFindings) {
for (const ev of f.evidence || []) {
const key = `${f.ruleId}|${f.path}|${stripLineNum(ev)}`;
const entry = headCounts.get(key) || { count: 0, evidence: [] };
entry.count++;
entry.evidence.push(ev);
headCounts.set(key, entry);
}
}
// Compute net new
type NewFinding = { ruleId: string; filePath: string; evidence: string };
const newFindings: NewFinding[] = [];
let removedCount = 0;
for (const [key, entry] of headCounts) {
const baseCount = baseCounts.get(key) || 0;
const netNew = entry.count - baseCount;
if (netNew > 0) {
const [ruleId, filePath] = key.split("|");
// Take the last N evidence items as the "new" ones
for (const ev of entry.evidence.slice(-netNew)) {
newFindings.push({ ruleId, filePath, evidence: ev });
}
}
}
for (const [key, baseCount] of baseCounts) {
const headCount = headCounts.get(key)?.count || 0;
if (headCount < baseCount) removedCount += baseCount - headCount;
}
// 5. Print results
if (newFindings.length === 0) {
if (removedCount > 0) {
console.log(
`\n slop-scan: no new findings. Removed ${removedCount} pre-existing findings.\n`,
);
} else {
console.log(
`\n slop-scan: no new findings in ${changedFiles.size} changed files.\n`,
);
}
process.exit(0);
}
console.log(
`\n── slop-scan: ${newFindings.length} new findings (+${newFindings.length} / -${removedCount}) ──\n`,
);
// Group by file, then by rule
const grouped = new Map<string, Map<string, string[]>>();
for (const { ruleId, filePath, evidence } of newFindings) {
if (!grouped.has(filePath)) grouped.set(filePath, new Map());
const rules = grouped.get(filePath)!;
if (!rules.has(ruleId)) rules.set(ruleId, []);
rules.get(ruleId)!.push(evidence);
}
for (const [filePath, rules] of grouped) {
console.log(` ${filePath}`);
for (const [ruleId, evidence] of rules) {
console.log(` ${ruleId}:`);
for (const ev of evidence) {
console.log(` ${ev}`);
}
}
}
console.log(`\n Net: +${newFindings.length} new, -${removedCount} removed\n`);