-
Notifications
You must be signed in to change notification settings - Fork 387
Expand file tree
/
Copy pathrun-inspect.test.ts
More file actions
410 lines (387 loc) · 14.3 KB
/
run-inspect.test.ts
File metadata and controls
410 lines (387 loc) · 14.3 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
import * as Effect from "effect/Effect";
import * as Exit from "effect/Exit";
import * as Layer from "effect/Layer";
import * as Ref from "effect/Ref";
import * as Stream from "effect/Stream";
import { describe, expect, it } from "vite-plus/test";
import type { Diagnostic, ProjectInfo } from "@react-doctor/core";
import {
DeadCodeAnalysisFailed,
GitInvocationFailed,
NoReactDependency,
OxlintSpawnFailed,
ReactDoctorError,
} from "../src/errors.js";
import { runInspect, type InspectInput } from "../src/run-inspect.js";
import { Config } from "../src/services/config.js";
import { DeadCode } from "../src/services/dead-code.js";
import { Files } from "../src/services/files.js";
import { Git } from "../src/services/git.js";
import { LintPartialFailures, Linter } from "../src/services/linter.js";
import { Progress } from "../src/services/progress.js";
import { Project } from "../src/services/project.js";
import { Reporter, ReporterCapture } from "../src/services/reporter.js";
import { Score } from "../src/services/score.js";
const sampleProject: ProjectInfo = {
rootDirectory: "/repo",
projectName: "sample-app",
reactVersion: "19.0.0",
reactMajorVersion: 19,
tailwindVersion: null,
framework: "vite",
hasTypeScript: true,
hasReactCompiler: false,
hasTanStackQuery: false,
hasSolid: false,
hasReactNativeWorkspace: false,
sourceFileCount: 1,
};
const lintDiagnostic: Diagnostic = {
filePath: "/repo/src/App.tsx",
plugin: "react-doctor",
rule: "no-derived-state",
severity: "error",
message: "Avoid useState(propX)",
help: "Use propX directly",
line: 1,
column: 1,
category: "Correctness",
};
const deadCodeDiagnostic: Diagnostic = {
filePath: "src/Unused.tsx",
plugin: "deslop",
rule: "unused-file",
severity: "warning",
message: "Unused file",
help: "Delete it.",
line: 0,
column: 0,
category: "Dead Code",
};
const baseInput: InspectInput = {
directory: "/repo",
includePaths: [],
customRulesOnly: false,
respectInlineDisables: true,
adoptExistingLintConfig: true,
ignoredTags: new Set<string>(),
runDeadCode: true,
isCi: false,
};
const layersOf = (config: {
diagnostics?: ReadonlyArray<Diagnostic>;
deadCode?: ReadonlyArray<Diagnostic>;
githubViewerPermission?: string | null;
}) =>
Layer.mergeAll(
Project.layerOf(sampleProject),
Config.layerOf({ config: null, resolvedDirectory: "/repo", configSourceDirectory: null }),
Files.layerInMemory(new Map()),
Linter.layerOf(config.diagnostics ?? []),
LintPartialFailures.layerLive,
DeadCode.layerOf(config.deadCode ?? []),
Git.layerOf({
headSha: "abc123",
githubRepo: "millionco/sample-app",
defaultBranch: "main",
githubViewerPermission: config.githubViewerPermission,
}),
Score.layerOf({ score: 85, label: "Good" }),
Progress.layerNoop,
Reporter.layerCapture,
);
describe("runInspect — happy path", () => {
it("collects diagnostics from Linter, DeadCode, and emits them through Reporter", async () => {
const result = await Effect.runPromise(
Effect.gen(function* () {
const output = yield* runInspect(baseInput);
const ref = yield* ReporterCapture;
const captured = yield* Ref.get(ref);
return { output, captured };
}).pipe(
Effect.provide(layersOf({ diagnostics: [lintDiagnostic], deadCode: [deadCodeDiagnostic] })),
),
);
expect(result.output.diagnostics).toHaveLength(2);
expect(result.output.diagnostics.map((d) => d.rule)).toEqual([
"no-derived-state",
"unused-file",
]);
expect(result.output.didLintFail).toBe(false);
expect(result.output.didDeadCodeFail).toBe(false);
expect(result.output.score).toEqual({ score: 85, label: "Good" });
expect(result.output.project.projectName).toBe("sample-app");
expect(result.output.scoreMetadata).toEqual({
repo: "millionco/sample-app",
sha: "abc123",
framework: "vite",
reactVersion: "19.0.0",
sourceFileCount: 1,
defaultBranch: "main",
});
expect(result.output.userConfig).toBeNull();
expect(result.output.resolvedDirectory).toBe("/repo");
expect(result.output.lintPartialFailures).toEqual([]);
expect(result.captured).toHaveLength(2);
expect(result.captured.map((d) => d.rule)).toEqual(["no-derived-state", "unused-file"]);
});
it("returns empty diagnostics when no service emits", async () => {
const output = await Effect.runPromise(
runInspect(baseInput).pipe(Effect.provide(layersOf({}))),
);
expect(output.diagnostics).toEqual([]);
expect(output.didLintFail).toBe(false);
expect(output.didDeadCodeFail).toBe(false);
});
it("adds local authenticated GitHub viewer permission to score metadata", async () => {
const output = await Effect.runPromise(
runInspect({ ...baseInput, resolveLocalGithubViewerPermission: true }).pipe(
Effect.provide(layersOf({ githubViewerPermission: "maintain" })),
),
);
expect(output.scoreMetadata).toMatchObject({
repo: "millionco/sample-app",
githubViewerPermission: "maintain",
});
});
it("does not query local GitHub viewer permission in CI", async () => {
const output = await Effect.runPromise(
runInspect({
...baseInput,
isCi: true,
resolveLocalGithubViewerPermission: true,
}).pipe(Effect.provide(layersOf({ githubViewerPermission: "maintain" }))),
);
expect(output.scoreMetadata).not.toHaveProperty("githubViewerPermission");
});
it("falls back when local GitHub viewer permission cannot resolve", async () => {
const failingGit = Layer.mock(Git, {
githubRepo: () => Effect.succeed("millionco/sample-app"),
headSha: () => Effect.succeed("abc123"),
defaultBranch: () => Effect.succeed("main"),
githubViewerPermission: () =>
Effect.fail(
new ReactDoctorError({
reason: new GitInvocationFailed({
args: ["api", "graphql"],
directory: "/repo",
cause: new Error("gh unavailable"),
}),
}),
),
});
const layers = Layer.mergeAll(
Project.layerOf(sampleProject),
Config.layerOf({ config: null, resolvedDirectory: "/repo", configSourceDirectory: null }),
Files.layerInMemory(new Map()),
Linter.layerOf([]),
LintPartialFailures.layerLive,
DeadCode.layerOf([]),
failingGit,
Score.layerOf({ score: 85, label: "Good" }),
Progress.layerNoop,
Reporter.layerCapture,
);
const output = await Effect.runPromise(
runInspect({ ...baseInput, resolveLocalGithubViewerPermission: true }).pipe(
Effect.provide(layers),
),
);
expect(output.scoreMetadata).toMatchObject({
repo: "millionco/sample-app",
sha: "abc123",
defaultBranch: "main",
});
expect(output.scoreMetadata).not.toHaveProperty("githubViewerPermission");
});
});
describe("runInspect — missing React dependency", () => {
it("fails with a tagged NoReactDependency reason", async () => {
const projectWithoutReact: ProjectInfo = { ...sampleProject, reactVersion: null };
const layers = Layer.mergeAll(
Project.layerOf(projectWithoutReact),
Config.layerOf({ config: null, resolvedDirectory: "/repo", configSourceDirectory: null }),
Files.layerInMemory(new Map()),
Linter.layerOf([]),
LintPartialFailures.layerLive,
DeadCode.layerOf([]),
Git.layerOf({}),
Score.layerOf(null),
Progress.layerNoop,
Reporter.layerNoop,
);
// Note: runInspect doesn't currently check reactVersion (that check
// happens in the legacy inspect.ts before calling). For PR 5 the api
// package adds the boundary check. This test verifies the orchestrator
// *would* propagate a tagged error if one came from Project.
const explicitFailLayers = Layer.mergeAll(
Layer.mock(Project, {
discover: () =>
Effect.fail(
new ReactDoctorError({ reason: new NoReactDependency({ directory: "/repo" }) }),
),
}),
Config.layerOf({ config: null, resolvedDirectory: "/repo", configSourceDirectory: null }),
Files.layerInMemory(new Map()),
Linter.layerOf([]),
LintPartialFailures.layerLive,
DeadCode.layerOf([]),
Git.layerOf({}),
Score.layerOf(null),
Progress.layerNoop,
Reporter.layerNoop,
);
void layers;
const exit = await Effect.runPromiseExit(
runInspect(baseInput).pipe(Effect.provide(explicitFailLayers)),
);
expect(Exit.isFailure(exit)).toBe(true);
if (Exit.isFailure(exit)) {
const failures = exit.cause.reasons;
const failedReason = failures.find((r) => r._tag === "Fail");
expect(failedReason).toBeDefined();
if (failedReason && failedReason._tag === "Fail") {
const error = failedReason.error as ReactDoctorError;
expect(error._tag).toBe("ReactDoctorError");
expect(error.reason._tag).toBe("NoReactDependency");
}
}
});
});
describe("runInspect — mid-stream lint failure", () => {
it("folds a Stream.fail into didLintFail without sinking the scan", async () => {
const failingLinter = Layer.mock(Linter, {
run: () =>
Stream.fail(
new ReactDoctorError({
reason: new OxlintSpawnFailed({ cause: "synthetic failure" }),
}),
),
});
const layers = Layer.mergeAll(
Project.layerOf(sampleProject),
Config.layerOf({ config: null, resolvedDirectory: "/repo", configSourceDirectory: null }),
Files.layerInMemory(new Map()),
failingLinter,
LintPartialFailures.layerLive,
DeadCode.layerOf([deadCodeDiagnostic]),
Git.layerOf({}),
Score.layerOf({ score: 50, label: "Needs Improvement" }),
Progress.layerNoop,
Reporter.layerNoop,
);
const output = await Effect.runPromise(runInspect(baseInput).pipe(Effect.provide(layers)));
expect(output.didLintFail).toBe(true);
expect(output.lintFailureReasonTag).toBe("OxlintSpawnFailed");
expect(output.lintFailureReason).toContain("oxlint");
expect(output.score).toBeNull();
expect(output.diagnostics).toHaveLength(0);
});
});
describe("runInspect — dead-code failure", () => {
it("folds DeadCode failure without sinking the scan", async () => {
const failingDeadCode = Layer.mock(DeadCode, {
run: () =>
Stream.fail(
new ReactDoctorError({
reason: new DeadCodeAnalysisFailed({ cause: "synthetic boom" }),
}),
),
});
const layers = Layer.mergeAll(
Project.layerOf(sampleProject),
Config.layerOf({ config: null, resolvedDirectory: "/repo", configSourceDirectory: null }),
Files.layerInMemory(new Map()),
Linter.layerOf([lintDiagnostic]),
LintPartialFailures.layerLive,
failingDeadCode,
Git.layerOf({}),
Score.layerOf(null),
Progress.layerNoop,
Reporter.layerNoop,
);
const output = await Effect.runPromise(runInspect(baseInput).pipe(Effect.provide(layers)));
expect(output.didDeadCodeFail).toBe(true);
expect(output.deadCodeFailureReason).toContain("Dead-code analysis failed");
expect(output.didLintFail).toBe(false);
expect(output.diagnostics).toHaveLength(1);
expect(output.diagnostics[0].rule).toBe("no-derived-state");
});
});
describe("runInspect — hooks fire in order", () => {
it("calls beforeLint before any diagnostic emission and afterLint after", async () => {
const events: string[] = [];
const output = await Effect.runPromise(
runInspect(baseInput, {
beforeLint: (project) =>
Effect.sync(() => {
events.push(`beforeLint:${project.projectName}`);
}),
afterLint: (didFail) =>
Effect.sync(() => {
events.push(`afterLint:${didFail}`);
}),
}).pipe(Effect.provide(layersOf({ diagnostics: [lintDiagnostic] }))),
);
expect(output.diagnostics).toHaveLength(1);
expect(events).toEqual(["beforeLint:sample-app", "afterLint:false"]);
});
});
describe("runInspect — diff mode skips dead-code", () => {
it("treats includePaths.length > 0 as diff mode and skips DeadCode.run", async () => {
const output = await Effect.runPromise(
runInspect({ ...baseInput, includePaths: ["src/App.tsx"] }).pipe(
Effect.provide(layersOf({ diagnostics: [lintDiagnostic], deadCode: [deadCodeDiagnostic] })),
),
);
// Lint diagnostic flows through; dead-code stream is replaced with empty.
expect(output.diagnostics.map((d) => d.rule)).toEqual(["no-derived-state"]);
expect(output.didDeadCodeFail).toBe(false);
});
});
describe("runInspect — runDeadCode=false short-circuits dead-code", () => {
it("skips DeadCode entirely when runDeadCode: false", async () => {
const output = await Effect.runPromise(
runInspect({ ...baseInput, runDeadCode: false }).pipe(
Effect.provide(layersOf({ diagnostics: [lintDiagnostic], deadCode: [deadCodeDiagnostic] })),
),
);
expect(output.diagnostics.map((d) => d.rule)).toEqual(["no-derived-state"]);
expect(output.didDeadCodeFail).toBe(false);
});
});
describe("runInspect — Reporter sees post-filter diagnostics", () => {
it("filters out a diagnostic on a file ignored by config, then emits remaining", async () => {
const ignoredDiagnostic: Diagnostic = {
...lintDiagnostic,
filePath: "src/ignored.test.tsx",
rule: "no-derived-state",
};
const layers = Layer.mergeAll(
Project.layerOf(sampleProject),
Config.layerOf({
config: { ignore: { files: ["src/ignored.*"] } } as never,
resolvedDirectory: "/repo",
configSourceDirectory: null,
}),
Files.layerInMemory(new Map()),
Linter.layerOf([ignoredDiagnostic, lintDiagnostic]),
LintPartialFailures.layerLive,
DeadCode.layerOf([]),
Git.layerOf({}),
Score.layerOf(null),
Progress.layerNoop,
Reporter.layerCapture,
);
const result = await Effect.runPromise(
Effect.gen(function* () {
const output = yield* runInspect(baseInput);
const ref = yield* ReporterCapture;
const captured = yield* Ref.get(ref);
return { output, captured };
}).pipe(Effect.provide(layers)),
);
expect(result.output.diagnostics.map((d) => d.filePath)).toEqual(["/repo/src/App.tsx"]);
expect(result.captured.map((d) => d.filePath)).toEqual(["/repo/src/App.tsx"]);
});
});