-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathinit.test.ts
More file actions
384 lines (336 loc) · 14.2 KB
/
init.test.ts
File metadata and controls
384 lines (336 loc) · 14.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
/**
* Tests for the `sentry init` command entry point.
*
* Uses spyOn on the wizard-runner and resolve-target namespaces to
* capture runWizard calls and mock resolveProjectBySlug without
* mock.module (which leaks across test files).
*/
import { afterEach, beforeEach, describe, expect, spyOn, test } from "bun:test";
import path from "node:path";
import { initCommand } from "../../src/commands/init.js";
import { ContextError } from "../../src/lib/errors.js";
// biome-ignore lint/performance/noNamespaceImport: spyOn requires object reference
import * as prefetchNs from "../../src/lib/init/prefetch.js";
import { resetPrefetch } from "../../src/lib/init/prefetch.js";
// biome-ignore lint/performance/noNamespaceImport: spyOn requires object reference
import * as wizardRunner from "../../src/lib/init/wizard-runner.js";
// biome-ignore lint/performance/noNamespaceImport: spyOn requires object reference
import * as resolveTarget from "../../src/lib/resolve-target.js";
// ── Spy setup ─────────────────────────────────────────────────────────────
let capturedArgs: Record<string, unknown> | undefined;
let runWizardSpy: ReturnType<typeof spyOn>;
let resolveProjectSpy: ReturnType<typeof spyOn>;
let warmSpy: ReturnType<typeof spyOn>;
const func = (await initCommand.loader()) as unknown as (
this: {
cwd: string;
stdout: { write: () => boolean };
stderr: { write: () => boolean };
stdin: typeof process.stdin;
},
flags: Record<string, unknown>,
first?: string,
second?: string
) => Promise<void>;
function makeContext(cwd = "/projects/app") {
return {
cwd,
stdout: { write: () => true },
stderr: { write: () => true },
stdin: process.stdin,
};
}
const DEFAULT_FLAGS = { yes: true, "dry-run": false } as const;
beforeEach(() => {
capturedArgs = undefined;
resetPrefetch();
runWizardSpy = spyOn(wizardRunner, "runWizard").mockImplementation(
(args: Record<string, unknown>) => {
capturedArgs = args;
return Promise.resolve();
}
);
// Default: mock resolveProjectBySlug to return a match
resolveProjectSpy = spyOn(
resolveTarget,
"resolveProjectBySlug"
).mockImplementation(async (slug: string) => ({
org: "resolved-org",
project: slug,
}));
// Spy on warmOrgDetection to verify it's called/skipped appropriately.
// The mock prevents real DSN scans and API calls from the background.
warmSpy = spyOn(prefetchNs, "warmOrgDetection").mockImplementation(
// biome-ignore lint/suspicious/noEmptyBlockStatements: intentional no-op mock
() => {}
);
});
afterEach(() => {
runWizardSpy.mockRestore();
resolveProjectSpy.mockRestore();
warmSpy.mockRestore();
resetPrefetch();
});
describe("init command func", () => {
// ── Features parsing ──────────────────────────────────────────────────
describe("features parsing", () => {
test("splits comma-separated features", async () => {
const ctx = makeContext();
await func.call(ctx, {
...DEFAULT_FLAGS,
features: ["errors,tracing,logs"],
});
expect(capturedArgs?.features).toEqual(["errors", "tracing", "logs"]);
});
test("splits plus-separated features", async () => {
const ctx = makeContext();
await func.call(ctx, {
...DEFAULT_FLAGS,
features: ["errors+tracing+logs"],
});
expect(capturedArgs?.features).toEqual(["errors", "tracing", "logs"]);
});
test("splits space-separated features", async () => {
const ctx = makeContext();
await func.call(ctx, {
...DEFAULT_FLAGS,
features: ["errors tracing logs"],
});
expect(capturedArgs?.features).toEqual(["errors", "tracing", "logs"]);
});
test("merges multiple --features flags", async () => {
const ctx = makeContext();
await func.call(ctx, {
...DEFAULT_FLAGS,
features: ["errors,tracing", "logs"],
});
expect(capturedArgs?.features).toEqual(["errors", "tracing", "logs"]);
});
test("trims whitespace from features", async () => {
const ctx = makeContext();
await func.call(ctx, {
...DEFAULT_FLAGS,
features: [" errors , tracing "],
});
expect(capturedArgs?.features).toEqual(["errors", "tracing"]);
});
test("filters empty segments", async () => {
const ctx = makeContext();
await func.call(ctx, {
...DEFAULT_FLAGS,
features: ["errors,,tracing,"],
});
expect(capturedArgs?.features).toEqual(["errors", "tracing"]);
});
test("passes undefined when features not provided", async () => {
const ctx = makeContext();
await func.call(ctx, DEFAULT_FLAGS);
expect(capturedArgs?.features).toBeUndefined();
});
});
// ── No arguments ──────────────────────────────────────────────────────
describe("no arguments", () => {
test("defaults to cwd with auto-detect", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS);
expect(capturedArgs?.directory).toBe("/projects/app");
expect(capturedArgs?.org).toBeUndefined();
expect(capturedArgs?.project).toBeUndefined();
});
});
// ── Single path argument ──────────────────────────────────────────────
describe("single path argument", () => {
test(". resolves to cwd", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS, ".");
expect(capturedArgs?.directory).toBe(path.resolve("/projects/app", "."));
expect(capturedArgs?.org).toBeUndefined();
expect(capturedArgs?.project).toBeUndefined();
});
test("./subdir resolves relative to cwd", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS, "./subdir");
expect(capturedArgs?.directory).toBe(
path.resolve("/projects/app", "./subdir")
);
expect(capturedArgs?.org).toBeUndefined();
});
test("../other resolves relative to cwd", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS, "../other");
expect(capturedArgs?.directory).toBe(
path.resolve("/projects/app", "../other")
);
expect(capturedArgs?.org).toBeUndefined();
});
test("/absolute/path used as-is", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS, "/absolute/path");
expect(capturedArgs?.directory).toBe("/absolute/path");
expect(capturedArgs?.org).toBeUndefined();
});
test("~/path treated as literal path (no shell expansion)", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS, "~/projects/other");
expect(capturedArgs?.directory).toBe(
path.resolve("/projects/app", "~/projects/other")
);
expect(capturedArgs?.org).toBeUndefined();
});
});
// ── Single target argument ────────────────────────────────────────────
describe("single target argument", () => {
test("org/ sets explicit org, dir = cwd", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS, "acme/");
expect(capturedArgs?.org).toBe("acme");
expect(capturedArgs?.project).toBeUndefined();
expect(capturedArgs?.directory).toBe("/projects/app");
});
test("org/project sets both, dir = cwd", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS, "acme/my-app");
expect(capturedArgs?.org).toBe("acme");
expect(capturedArgs?.project).toBe("my-app");
expect(capturedArgs?.directory).toBe("/projects/app");
});
test("bare slug resolves project via resolveProjectBySlug", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS, "my-app");
expect(resolveProjectSpy).toHaveBeenCalledWith(
"my-app",
expect.any(String),
expect.any(String)
);
expect(capturedArgs?.org).toBe("resolved-org");
expect(capturedArgs?.project).toBe("my-app");
expect(capturedArgs?.directory).toBe("/projects/app");
});
});
// ── Two arguments: target + directory ─────────────────────────────────
describe("two arguments (target + directory)", () => {
test("org/ + path", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS, "acme/", "./subdir");
expect(capturedArgs?.org).toBe("acme");
expect(capturedArgs?.project).toBeUndefined();
expect(capturedArgs?.directory).toBe(
path.resolve("/projects/app", "./subdir")
);
});
test("org/project + path", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS, "acme/my-app", "./subdir");
expect(capturedArgs?.org).toBe("acme");
expect(capturedArgs?.project).toBe("my-app");
expect(capturedArgs?.directory).toBe(
path.resolve("/projects/app", "./subdir")
);
});
test("bare slug + path", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS, "my-app", "./subdir");
expect(resolveProjectSpy).toHaveBeenCalled();
expect(capturedArgs?.org).toBe("resolved-org");
expect(capturedArgs?.project).toBe("my-app");
expect(capturedArgs?.directory).toBe(
path.resolve("/projects/app", "./subdir")
);
});
});
// ── Swapped arguments ─────────────────────────────────────────────────
describe("swapped arguments (path first, target second)", () => {
test(". org/ swaps with warning", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS, ".", "acme/");
expect(capturedArgs?.org).toBe("acme");
expect(capturedArgs?.project).toBeUndefined();
expect(capturedArgs?.directory).toBe(path.resolve("/projects/app", "."));
});
test("./subdir org/project swaps with warning", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS, "./subdir", "acme/my-app");
expect(capturedArgs?.org).toBe("acme");
expect(capturedArgs?.project).toBe("my-app");
expect(capturedArgs?.directory).toBe(
path.resolve("/projects/app", "./subdir")
);
});
});
// ── Error cases ───────────────────────────────────────────────────────
describe("error cases", () => {
test("two paths throws ContextError", async () => {
const ctx = makeContext();
expect(func.call(ctx, DEFAULT_FLAGS, "./dir1", "./dir2")).rejects.toThrow(
ContextError
);
});
test("two targets throws ContextError", async () => {
const ctx = makeContext();
expect(func.call(ctx, DEFAULT_FLAGS, "acme/", "other/")).rejects.toThrow(
ContextError
);
});
test("invalid org slug (whitespace) throws", async () => {
const ctx = makeContext();
expect(func.call(ctx, DEFAULT_FLAGS, "acme corp/")).rejects.toThrow();
});
});
// ── Flag forwarding ───────────────────────────────────────────────────
describe("flag forwarding", () => {
test("forwards yes and dry-run flags", async () => {
const ctx = makeContext();
await func.call(ctx, { yes: true, "dry-run": true });
expect(capturedArgs?.yes).toBe(true);
expect(capturedArgs?.dryRun).toBe(true);
});
test("forwards team flag alongside org/project", async () => {
const ctx = makeContext();
await func.call(
ctx,
{ ...DEFAULT_FLAGS, team: "backend" },
"acme/my-app"
);
expect(capturedArgs?.org).toBe("acme");
expect(capturedArgs?.project).toBe("my-app");
expect(capturedArgs?.team).toBe("backend");
});
});
// ── Background org detection ──────────────────────────────────────────
describe("background org detection", () => {
test("warms prefetch when org is not explicit", async () => {
const ctx = makeContext();
await func.call(ctx, DEFAULT_FLAGS);
expect(warmSpy).toHaveBeenCalledTimes(1);
expect(warmSpy).toHaveBeenCalledWith("/projects/app");
});
test("skips prefetch when org is explicit", async () => {
const ctx = makeContext();
await func.call(ctx, DEFAULT_FLAGS, "acme/my-app");
expect(warmSpy).not.toHaveBeenCalled();
});
test("skips prefetch when org-only is explicit", async () => {
const ctx = makeContext();
await func.call(ctx, DEFAULT_FLAGS, "acme/");
expect(warmSpy).not.toHaveBeenCalled();
});
test("skips prefetch for bare slug (project-search resolves org)", async () => {
const ctx = makeContext();
await func.call(ctx, DEFAULT_FLAGS, "my-app");
// resolveProjectBySlug returns { org: "resolved-org" } → org is known
expect(warmSpy).not.toHaveBeenCalled();
});
test("warms prefetch for path-only arg", async () => {
const ctx = makeContext();
await func.call(ctx, DEFAULT_FLAGS, "./subdir");
expect(warmSpy).toHaveBeenCalledTimes(1);
});
test("warms prefetch with resolved directory path", async () => {
const ctx = makeContext("/projects/app");
await func.call(ctx, DEFAULT_FLAGS, "./subdir");
expect(warmSpy).toHaveBeenCalledWith(
path.resolve("/projects/app", "./subdir")
);
});
});
});