-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.test.ts
More file actions
995 lines (863 loc) · 26.8 KB
/
setup.test.ts
File metadata and controls
995 lines (863 loc) · 26.8 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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
/**
* Setup Command Tests
*
* Tests the `sentry cli setup` command end-to-end through Stricli's run().
*
* Status messages go through consola (→ process.stderr). Tests capture stderr
* via a spy on process.stderr.write and assert on the collected output.
*/
import { afterEach, beforeEach, describe, expect, mock, test } from "bun:test";
import { existsSync, mkdirSync, rmSync, writeFileSync } from "node:fs";
import { join } from "node:path";
import { run } from "@stricli/core";
import { app } from "../../../src/app.js";
import type { SentryContext } from "../../../src/context.js";
import { getReleaseChannel } from "../../../src/lib/db/release-channel.js";
import { useTestConfigDir } from "../../helpers.js";
/** Store original fetch for restoration */
let originalFetch: typeof globalThis.fetch;
/** Helper to mock fetch without TypeScript errors about missing Bun-specific properties */
function mockFetch(
fn: (url: string | URL | Request, init?: RequestInit) => Promise<Response>
): void {
globalThis.fetch = fn as typeof globalThis.fetch;
}
/**
* Create a mock Stricli context and a stderr capture for consola output.
*
* The context provides process/env stubs for the setup command, while
* `getOutput()` returns the combined consola output captured from
* `process.stderr.write` (where consola routes all messages).
*/
function createMockContext(
overrides: Partial<{
homeDir: string;
env: Record<string, string | undefined>;
execPath: string;
}> = {}
): {
context: SentryContext;
getOutput: () => string;
clearOutput: () => void;
restore: () => void;
} {
const stderrChunks: string[] = [];
const origWrite = process.stderr.write.bind(process.stderr);
process.stderr.write = ((chunk: string | Uint8Array) => {
stderrChunks.push(String(chunk));
return true;
}) as typeof process.stderr.write;
const env: Record<string, string | undefined> = {
PATH: "/usr/bin:/bin",
SHELL: "/bin/bash",
...overrides.env,
};
const stdoutChunks: string[] = [];
const context = {
process: {
stdout: {
write: mock((s: string) => {
stdoutChunks.push(String(s));
return true;
}),
},
stderr: {
write: mock((_s: string) => true),
},
stdin: process.stdin,
env,
cwd: () => "/tmp",
execPath: overrides.execPath ?? "/usr/local/bin/sentry",
exit: mock(() => {
// no-op for tests
}),
exitCode: 0,
},
homeDir: overrides.homeDir ?? "/tmp/test-home",
cwd: "/tmp",
configDir: "/tmp/test-config",
env,
stdout: {
write: mock((s: string) => {
stdoutChunks.push(String(s));
return true;
}),
},
stderr: {
write: mock((_s: string) => true),
},
stdin: process.stdin,
setContext: () => {
// no-op for tests
},
setFlags: () => {
// no-op for tests
},
} as unknown as SentryContext;
return {
context,
getOutput: () => stdoutChunks.join("") + stderrChunks.join(""),
clearOutput: () => {
stdoutChunks.length = 0;
stderrChunks.length = 0;
},
restore: () => {
process.stderr.write = origWrite;
},
};
}
describe("sentry cli setup", () => {
let testDir: string;
let restoreStderr: (() => void) | undefined;
beforeEach(() => {
testDir = join(
"/tmp",
`setup-test-${Date.now()}-${Math.random().toString(36).slice(2)}`
);
mkdirSync(testDir, { recursive: true });
});
afterEach(() => {
restoreStderr?.();
restoreStderr = undefined;
rmSync(testDir, { recursive: true, force: true });
});
test("runs with --quiet and skips all output", async () => {
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
});
restoreStderr = restore;
await run(
app,
[
"cli",
"setup",
"--quiet",
"--no-modify-path",
"--no-completions",
"--no-agent-skills",
],
context
);
// With --quiet, no output should be produced
expect(getOutput()).toBe("");
});
test("produces no welcome or completion output without --install", async () => {
// Without --install, setup is being called for an upgrade or manual re-run.
// Output is suppressed — the upgrade command itself prints success.
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
});
restoreStderr = restore;
await run(
app,
[
"cli",
"setup",
"--no-modify-path",
"--no-completions",
"--no-agent-skills",
],
context
);
expect(getOutput()).toBe("");
});
test("records install method when --method is provided", async () => {
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
});
restoreStderr = restore;
await run(
app,
[
"cli",
"setup",
"--method",
"curl",
"--no-modify-path",
"--no-completions",
"--no-agent-skills",
],
context
);
expect(getOutput()).toContain("Recorded installation method: curl");
});
test("handles PATH modification when binary not in PATH", async () => {
// Create a .bashrc for the shell config to find
const bashrc = join(testDir, ".bashrc");
writeFileSync(bashrc, "# existing config\n");
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "bin", "sentry"),
env: {
PATH: "/usr/bin:/bin",
SHELL: "/bin/bash",
},
});
restoreStderr = restore;
await run(
app,
["cli", "setup", "--no-completions", "--no-agent-skills"],
context
);
expect(getOutput()).toContain("PATH:");
});
test("reports PATH already configured when binary dir is in PATH", async () => {
const binDir = join(testDir, "bin");
mkdirSync(binDir, { recursive: true });
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(binDir, "sentry"),
env: {
PATH: `/usr/bin:${binDir}:/bin`,
SHELL: "/bin/bash",
},
});
restoreStderr = restore;
await run(
app,
["cli", "setup", "--no-completions", "--no-agent-skills"],
context
);
expect(getOutput()).toContain("already in PATH");
});
test("reports no config file found for unknown shell", async () => {
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
env: {
PATH: "/usr/bin:/bin",
SHELL: "/bin/tcsh",
},
});
restoreStderr = restore;
await run(
app,
["cli", "setup", "--no-completions", "--no-agent-skills"],
context
);
expect(getOutput()).toContain("No shell config file found");
expect(getOutput()).toContain("Add manually");
});
test("installs completions when not skipped", async () => {
const bashrc = join(testDir, ".bashrc");
writeFileSync(bashrc, "# existing\n");
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "bin", "sentry"),
env: {
PATH: `/usr/bin:${join(testDir, "bin")}:/bin`,
SHELL: "/bin/bash",
},
});
restoreStderr = restore;
await run(
app,
["cli", "setup", "--no-modify-path", "--no-agent-skills"],
context
);
expect(getOutput()).toContain("Completions:");
});
test("adds fpath to .zshrc for zsh completions", async () => {
const zshrc = join(testDir, ".zshrc");
writeFileSync(zshrc, "# existing zshrc\n");
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "bin", "sentry"),
env: {
PATH: `/usr/bin:${join(testDir, "bin")}:/bin`,
SHELL: "/bin/zsh",
},
});
restoreStderr = restore;
await run(
app,
["cli", "setup", "--no-modify-path", "--no-agent-skills"],
context
);
expect(getOutput()).toContain("fpath");
expect(getOutput()).toContain("Completions:");
// Verify .zshrc was actually modified
const content = await Bun.file(zshrc).text();
expect(content).toContain("fpath=");
expect(content).toContain("site-functions");
});
test("skips fpath modification when already configured in .zshrc", async () => {
const zshrc = join(testDir, ".zshrc");
const completionDir = join(
testDir,
".local",
"share",
"zsh",
"site-functions"
);
writeFileSync(zshrc, `# existing\nfpath=("${completionDir}" $fpath)\n`);
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "bin", "sentry"),
env: {
PATH: `/usr/bin:${join(testDir, "bin")}:/bin`,
SHELL: "/bin/zsh",
},
});
restoreStderr = restore;
await run(
app,
["cli", "setup", "--no-modify-path", "--no-agent-skills"],
context
);
// Should still show "Installed to" but not "Added ... to fpath"
const output = getOutput();
expect(output).toContain("Completions: Installed to");
expect(output).not.toContain("Added sentry fpath in");
});
test("handles GitHub Actions PATH when GITHUB_ACTIONS is set", async () => {
const ghPathFile = join(testDir, "github_path");
writeFileSync(ghPathFile, "");
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "bin", "sentry"),
env: {
PATH: "/usr/bin:/bin",
SHELL: "/bin/bash",
GITHUB_ACTIONS: "true",
GITHUB_PATH: ghPathFile,
},
});
restoreStderr = restore;
await run(
app,
["cli", "setup", "--no-completions", "--no-agent-skills"],
context
);
expect(getOutput()).toContain("GITHUB_PATH");
});
test("falls back to bash completions for unsupported shell when bash is available", async () => {
// Create a fake bash executable in testDir/bin so isBashAvailable() returns
// true with PATH pointing there — no dependency on the host system.
const binDir = join(testDir, "bin");
mkdirSync(binDir, { recursive: true });
const { chmodSync, writeFileSync: wf } = await import("node:fs");
const fakeBash = join(binDir, "bash");
wf(fakeBash, "#!/bin/sh\necho fake-bash");
chmodSync(fakeBash, 0o755);
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "bin", "sentry"),
env: {
PATH: binDir,
SHELL: "/bin/xonsh",
},
});
restoreStderr = restore;
await run(
app,
["cli", "setup", "--no-modify-path", "--no-agent-skills"],
context
);
expect(getOutput()).toContain(
"Your shell (xonsh) is not directly supported"
);
expect(getOutput()).toContain("bash completions as a fallback");
expect(getOutput()).toContain("bash-completion");
});
test("silently skips completions for unsupported shell when bash is not in PATH", async () => {
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "bin", "sentry"),
env: {
// Empty PATH so isBashAvailable() returns false
PATH: "",
SHELL: "/bin/xonsh",
},
});
restoreStderr = restore;
await run(
app,
["cli", "setup", "--no-modify-path", "--no-agent-skills"],
context
);
// Nothing actionable — no message produced
expect(getOutput()).not.toContain("Completions:");
expect(getOutput()).not.toContain("Not supported");
});
test("suppresses completion messages on subsequent runs (upgrade scenario)", async () => {
const { context, getOutput, clearOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "bin", "sentry"),
env: {
PATH: `/usr/bin:${join(testDir, "bin")}:/bin`,
SHELL: "/bin/bash",
},
});
restoreStderr = restore;
// First run — should show "Installed to"
await run(
app,
["cli", "setup", "--no-modify-path", "--no-agent-skills"],
context
);
expect(getOutput()).toContain("Completions: Installed to");
// Second run — completion file already exists, should be silent
clearOutput();
await run(
app,
["cli", "setup", "--no-modify-path", "--no-agent-skills"],
context
);
expect(getOutput()).not.toContain("Completions:");
});
test("silently skips completions for sh shell", async () => {
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "bin", "sentry"),
env: {
PATH: `/usr/bin:${join(testDir, "bin")}:/bin`,
SHELL: "/bin/sh",
},
});
restoreStderr = restore;
await run(
app,
["cli", "setup", "--no-modify-path", "--no-agent-skills"],
context
);
// sh/ash shells silently skip completions — no message at all
expect(getOutput()).not.toContain("Completions:");
});
test("supports kebab-case flags", async () => {
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
});
restoreStderr = restore;
// Verify kebab-case works (--no-modify-path instead of --noModifyPath)
await run(
app,
[
"cli",
"setup",
"--no-modify-path",
"--no-completions",
"--no-agent-skills",
"--quiet",
],
context
);
// Should not error
expect(getOutput()).toBe("");
});
describe("--install flag", () => {
test("installs binary from temp location and shows welcome message", async () => {
// Create a fake source binary to "install"
const sourceDir = join(testDir, "tmp");
mkdirSync(sourceDir, { recursive: true });
const sourcePath = join(sourceDir, "sentry-download");
writeFileSync(sourcePath, "#!/bin/sh\necho test-binary");
const { chmodSync } = await import("node:fs");
chmodSync(sourcePath, 0o755);
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: sourcePath,
env: {
PATH: "/usr/bin:/bin",
SHELL: "/bin/bash",
SENTRY_INSTALL_DIR: join(testDir, "install-dir"),
},
});
restoreStderr = restore;
await run(
app,
[
"cli",
"setup",
"--install",
"--method",
"curl",
"--no-modify-path",
"--no-completions",
"--no-agent-skills",
],
context
);
const combined = getOutput();
// Should show welcome message, not "Setup complete!"
expect(combined).toContain("Installed sentry v");
expect(combined).toContain("Get started:");
expect(combined).toContain("sentry auth login");
expect(combined).toContain("sentry --help");
expect(combined).toContain("cli.sentry.dev");
expect(combined).not.toContain("Setup complete!");
// Should install binary to the target directory
const installedPath = join(testDir, "install-dir", "sentry");
expect(existsSync(installedPath)).toBe(true);
});
test("does not log 'Recorded installation method' with --install", async () => {
const sourceDir = join(testDir, "tmp");
mkdirSync(sourceDir, { recursive: true });
const sourcePath = join(sourceDir, "sentry-download");
writeFileSync(sourcePath, "binary-content");
const { chmodSync } = await import("node:fs");
chmodSync(sourcePath, 0o755);
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: sourcePath,
env: {
PATH: "/usr/bin:/bin",
SHELL: "/bin/bash",
SENTRY_INSTALL_DIR: join(testDir, "install-dir"),
},
});
restoreStderr = restore;
await run(
app,
[
"cli",
"setup",
"--install",
"--method",
"curl",
"--no-modify-path",
"--no-completions",
"--no-agent-skills",
],
context
);
// With --install, the "Recorded installation method" log is suppressed
expect(getOutput()).not.toContain("Recorded installation method");
});
test("--install suppresses welcome when binary already exists (upgrade)", async () => {
const installDir = join(testDir, "install-dir");
mkdirSync(installDir, { recursive: true });
// Pre-existing binary — this is an upgrade, not a fresh install
writeFileSync(join(installDir, "sentry"), "old-binary");
const sourceDir = join(testDir, "tmp");
mkdirSync(sourceDir, { recursive: true });
const sourcePath = join(sourceDir, "sentry-download");
writeFileSync(sourcePath, "new-binary");
const { chmodSync } = await import("node:fs");
chmodSync(sourcePath, 0o755);
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: sourcePath,
env: {
PATH: "/usr/bin:/bin",
SHELL: "/bin/bash",
SENTRY_INSTALL_DIR: installDir,
},
});
restoreStderr = restore;
await run(
app,
[
"cli",
"setup",
"--install",
"--method",
"curl",
"--no-modify-path",
"--no-completions",
"--no-agent-skills",
],
context
);
const combined = getOutput();
// Binary placement is still logged
expect(combined).toContain("Binary: Installed to");
// But welcome/getting-started is suppressed for upgrades
expect(combined).not.toContain("Get started:");
expect(combined).not.toContain("sentry auth login");
});
test("--install with --quiet suppresses all output", async () => {
const sourceDir = join(testDir, "tmp");
mkdirSync(sourceDir, { recursive: true });
const sourcePath = join(sourceDir, "sentry-download");
writeFileSync(sourcePath, "binary-content");
const { chmodSync } = await import("node:fs");
chmodSync(sourcePath, 0o755);
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: sourcePath,
env: {
PATH: "/usr/bin:/bin",
SHELL: "/bin/bash",
SENTRY_INSTALL_DIR: join(testDir, "install-dir"),
},
});
restoreStderr = restore;
await run(
app,
[
"cli",
"setup",
"--install",
"--method",
"curl",
"--no-modify-path",
"--no-completions",
"--no-agent-skills",
"--quiet",
],
context
);
expect(getOutput()).toBe("");
});
});
describe("agent skills", () => {
beforeEach(() => {
originalFetch = globalThis.fetch;
mockFetch(
async () =>
new Response("# Sentry CLI Skill\nTest content", { status: 200 })
);
});
afterEach(() => {
globalThis.fetch = originalFetch;
});
test("installs agent skills when Claude Code is detected", async () => {
// Create ~/.claude to simulate Claude Code being installed
mkdirSync(join(testDir, ".claude"), { recursive: true });
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "bin", "sentry"),
env: {
PATH: `/usr/bin:${join(testDir, "bin")}:/bin`,
SHELL: "/bin/bash",
},
});
restoreStderr = restore;
await run(
app,
["cli", "setup", "--no-modify-path", "--no-completions"],
context
);
expect(getOutput()).toContain("Agent skills:");
expect(getOutput()).toContain("Installed to");
// Verify the file was actually written
const skillPath = join(
testDir,
".claude",
"skills",
"sentry-cli",
"SKILL.md"
);
expect(existsSync(skillPath)).toBe(true);
});
test("silently skips when Claude Code is not detected", async () => {
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "bin", "sentry"),
env: {
PATH: `/usr/bin:${join(testDir, "bin")}:/bin`,
SHELL: "/bin/bash",
},
});
restoreStderr = restore;
await run(
app,
["cli", "setup", "--no-modify-path", "--no-completions"],
context
);
expect(getOutput()).not.toContain("Agent skills:");
});
test("suppresses agent skills message on subsequent runs (upgrade scenario)", async () => {
mkdirSync(join(testDir, ".claude"), { recursive: true });
const { context, getOutput, clearOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "bin", "sentry"),
env: {
PATH: `/usr/bin:${join(testDir, "bin")}:/bin`,
SHELL: "/bin/bash",
},
});
restoreStderr = restore;
// First run — should show "Installed to"
await run(
app,
["cli", "setup", "--no-modify-path", "--no-completions"],
context
);
expect(getOutput()).toContain("Agent skills: Installed to");
// Second run — skill file already exists, should be silent
clearOutput();
await run(
app,
["cli", "setup", "--no-modify-path", "--no-completions"],
context
);
expect(getOutput()).not.toContain("Agent skills:");
});
test("skips when --no-agent-skills is set", async () => {
mkdirSync(join(testDir, ".claude"), { recursive: true });
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "bin", "sentry"),
env: {
PATH: `/usr/bin:${join(testDir, "bin")}:/bin`,
SHELL: "/bin/bash",
},
});
restoreStderr = restore;
await run(
app,
[
"cli",
"setup",
"--no-modify-path",
"--no-completions",
"--no-agent-skills",
],
context
);
expect(getOutput()).not.toContain("Agent skills:");
});
test("does not break setup on network failure", async () => {
mkdirSync(join(testDir, ".claude"), { recursive: true });
mockFetch(async () => {
throw new Error("Network error");
});
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "bin", "sentry"),
env: {
PATH: `/usr/bin:${join(testDir, "bin")}:/bin`,
SHELL: "/bin/bash",
},
});
restoreStderr = restore;
await run(
app,
["cli", "setup", "--no-modify-path", "--no-completions"],
context
);
// Setup should still complete without errors (no output without --install)
expect(getOutput()).not.toContain("Agent skills:");
});
test("bestEffort catches errors from steps and setup still completes", async () => {
// Make the completions dir unwritable so installCompletions() fails.
// bestEffort() must catch the error and continue — setup still completes.
const { chmodSync: chmod } = await import("node:fs");
const homeDir = join(testDir, "home");
const xdgData = join(homeDir, ".local", "share");
mkdirSync(xdgData, { recursive: true });
// Create the zsh site-functions dir as unwritable so Bun.write() fails
const zshDir = join(xdgData, "zsh", "site-functions");
mkdirSync(zshDir, { recursive: true });
chmod(zshDir, 0o444); // read-only → completion write will throw
const { context, getOutput, restore } = createMockContext({
homeDir,
env: {
XDG_DATA_HOME: xdgData,
PATH: "/usr/bin:/bin",
SHELL: "/bin/zsh",
},
});
restoreStderr = restore;
await run(
app,
["cli", "setup", "--no-modify-path", "--no-agent-skills"],
context
);
const combined = getOutput();
// Setup must complete even though the completions step threw —
// the warning appears in the formatted output
expect(combined).toContain("Shell completions failed");
chmod(zshDir, 0o755);
});
});
});
describe("sentry cli setup — --channel flag", () => {
useTestConfigDir("test-setup-channel-");
let testDir: string;
let restoreStderr: (() => void) | undefined;
beforeEach(() => {
testDir = join(
"/tmp",
`setup-channel-test-${Date.now()}-${Math.random().toString(36).slice(2)}`
);
mkdirSync(testDir, { recursive: true });
});
afterEach(() => {
restoreStderr?.();
restoreStderr = undefined;
rmSync(testDir, { recursive: true, force: true });
});
test("persists 'nightly' channel when --channel nightly is passed", async () => {
const { context, restore } = createMockContext({ homeDir: testDir });
restoreStderr = restore;
expect(getReleaseChannel()).toBe("stable");
await run(
app,
[
"cli",
"setup",
"--channel",
"nightly",
"--no-modify-path",
"--no-completions",
"--no-agent-skills",
],
context
);
expect(getReleaseChannel()).toBe("nightly");
});
test("persists 'stable' channel when --channel stable is passed", async () => {
const { context, restore } = createMockContext({ homeDir: testDir });
restoreStderr = restore;
await run(
app,
[
"cli",
"setup",
"--channel",
"stable",
"--no-modify-path",
"--no-completions",
"--no-agent-skills",
],
context
);
expect(getReleaseChannel()).toBe("stable");
});
test("logs channel when not in --install mode", async () => {
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
});
restoreStderr = restore;
await run(
app,
[
"cli",
"setup",
"--channel",
"nightly",
"--no-modify-path",
"--no-completions",
"--no-agent-skills",
],
context
);
expect(getOutput()).toContain("Recorded release channel: nightly");
});
test("does not log channel in --install mode", async () => {
// In --install mode, the setup is silent about the channel
// (it's set during binary placement, before user sees output)
const { context, getOutput, restore } = createMockContext({
homeDir: testDir,
execPath: join(testDir, "sentry.download"),
});
restoreStderr = restore;
await run(
app,
[
"cli",
"setup",
"--install",
"--channel",
"nightly",
"--no-modify-path",
"--no-completions",
"--no-agent-skills",
],
context
);
expect(getOutput()).not.toContain("Recorded release channel: nightly");
});
});