-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathcmd-scan-reach.test.mts
More file actions
1049 lines (989 loc) · 28.3 KB
/
cmd-scan-reach.test.mts
File metadata and controls
1049 lines (989 loc) · 28.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
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
996
997
998
999
1000
import path from 'node:path'
import { describe, expect, it } from 'vitest'
import constants, {
FLAG_CONFIG,
FLAG_DRY_RUN,
FLAG_HELP,
} from '../../../src/constants.mts'
import { cmdit, spawnSocketCli, testPath } from '../../../test/utils.mts'
const fixtureBaseDir = path.join(testPath, 'fixtures/commands/scan/reach')
describe('socket scan reach', async () => {
const { binCliPath } = constants
cmdit(
['scan', 'reach', FLAG_HELP, FLAG_CONFIG, '{}'],
`should support ${FLAG_HELP}`,
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`
"Compute tier 1 reachability
Usage
$ socket scan reach [options] [CWD=.]
API Token Requirements
- Quota: 1 unit
- Permissions: full-scans:create
Options
--cwd working directory, defaults to process.cwd()
--json Output as JSON
--markdown Output as Markdown
--org Force override the organization slug, overrides the default org from config
Reachability Options
--reach-analysis-memory-limit The maximum memory in MB to use for the reachability analysis. The default is 8192MB.
--reach-analysis-timeout Set timeout for the reachability analysis. Split analysis runs may cause the total scan time to exceed this timeout significantly.
--reach-concurrency Set the maximum number of concurrent reachability analysis runs. It is recommended to choose a concurrency level that ensures each analysis run has at least the --reach-analysis-memory-limit amount of memory available. NPM reachability analysis does not support concurrent execution, so the concurrency level is ignored for NPM.
--reach-disable-analysis-splitting Limits Coana to at most 1 reachability analysis run per workspace.
--reach-disable-analytics Disable reachability analytics sharing with Socket. Also disables caching-based optimizations.
--reach-ecosystems List of ecosystems to conduct reachability analysis on, as either a comma separated value or as multiple flags. Defaults to all ecosystems.
--reach-exclude-paths List of paths to exclude from reachability analysis, as either a comma separated value or as multiple flags.
--reach-skip-cache Skip caching-based optimizations. By default, the reachability analysis will use cached configurations from previous runs to speed up the analysis.
Runs the Socket reachability analysis without creating a scan in Socket.
The output is written to .socket.facts.json in the current working directory.
Note: Manifest files are uploaded to Socket's backend services because the
reachability analysis requires creating a Software Bill of Materials (SBOM)
from these files before the analysis can run.
Examples
$ socket scan reach
$ socket scan reach ./proj
$ socket scan reach ./proj --reach-ecosystems npm,pypi"
`)
expect(`\n ${stderr}`).toMatchInlineSnapshot(`
"
_____ _ _ /---------------
| __|___ ___| |_ ___| |_ | CLI: <redacted>
|__ | * | _| '_| -_| _| | token: <redacted>, org: <redacted>
|_____|___|___|_,_|___|_|.dev | Command: \`socket scan reach\`, cwd: <redacted>"
`)
expect(code, 'explicit help should exit with code 0').toBe(0)
expect(stderr, 'banner includes base command').toContain(
'`socket scan reach`',
)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should require args with just dry-run',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(`\n ${stderr}`).toMatchInlineSnapshot(`
"
_____ _ _ /---------------
| __|___ ___| |_ ___| |_ | CLI: <redacted>
|__ | * | _| '_| -_| _| | token: <redacted>, org: <redacted>
|_____|___|___|_,_|___|_|.dev | Command: \`socket scan reach\`, cwd: <redacted>"
`)
expect(code, 'dry-run should exit with code 0 if input ok').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--org',
'fakeOrg',
'--reach-disable-analytics',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept --reach-disable-analytics flag',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-analysis-memory-limit',
'4096',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept --reach-analysis-memory-limit flag',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-analysis-timeout',
'3600',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept --reach-analysis-timeout flag',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-concurrency',
'4',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept --reach-concurrency flag',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-disable-analysis-splitting',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept --reach-disable-analysis-splitting flag',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-ecosystems',
'npm,pypi',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept --reach-ecosystems with comma-separated values',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-ecosystems',
'npm',
'--reach-ecosystems',
'pypi',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept multiple --reach-ecosystems flags',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(code, 'should exit with code 0').toBe(0)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
},
)
cmdit(
[
'scan',
'reach',
'--reach-ecosystems',
'invalid-ecosystem',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should fail with invalid ecosystem',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
const output = stdout + stderr
expect(output).toContain('Invalid ecosystem: "invalid-ecosystem"')
expect(code, 'should exit with non-zero code').not.toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-exclude-paths',
'node_modules,dist',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept --reach-exclude-paths with comma-separated values',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-exclude-paths',
'node_modules',
'--reach-exclude-paths',
'dist',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept multiple --reach-exclude-paths flags',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-disable-analytics',
'--reach-analysis-memory-limit',
'4096',
'--reach-analysis-timeout',
'3600',
'--reach-concurrency',
'2',
'--reach-disable-analysis-splitting',
'--reach-ecosystems',
'npm,pypi',
'--reach-exclude-paths',
'node_modules,dist',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept all reachability flags together',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-analysis-memory-limit',
'1',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept minimal positive memory limit',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-ecosystems',
'npm',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should handle single ecosystem flag',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-exclude-paths',
'path1',
'--reach-exclude-paths',
'path2',
'--reach-exclude-paths',
'path3',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept many exclude paths flags',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-ecosystems',
'npm',
'--reach-ecosystems',
'pypi',
'--reach-ecosystems',
'cargo',
'--reach-ecosystems',
'maven',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept multiple different ecosystems',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-analysis-memory-limit',
'1024',
'--reach-analysis-timeout',
'300',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept custom memory limit and timeout values',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
'--reach-ecosystems',
'npm,invalid1,pypi,invalid2',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should fail when mixed valid and invalid ecosystems are provided',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
const output = stdout + stderr
expect(output).toContain('Invalid ecosystem: "invalid1"')
expect(code, 'should exit with non-zero code').not.toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--json',
'--markdown',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should fail when both json and markdown output flags are used',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
const output = stdout + stderr
expect(output).toContain('The json and markdown flags cannot be both set')
expect(code, 'should exit with non-zero code').not.toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--json',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept json output flag alone',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--markdown',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
],
'should accept markdown output flag alone',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
it(
'should accept comprehensive reachability configuration in dry-run: `scan reach --dry-run --reach-analysis-memory-limit 16384 --reach-analysis-timeout 7200 --reach-ecosystems npm --reach-exclude-paths node_modules --org fakeOrg --config {"apiToken":"fakeToken"}`',
{ timeout: 30_000 },
async () => {
const cmd = [
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-analysis-memory-limit',
'16384',
'--reach-analysis-timeout',
'7200',
'--reach-ecosystems',
'npm',
'--reach-exclude-paths',
'node_modules',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fakeToken"}',
]
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toMatchInlineSnapshot(`"[DryRun]: Bailing now"`)
expect(code, 'should exit with code 0').toBe(0)
},
)
describe('non dry-run tests', () => {
cmdit(
[
'scan',
'reach',
'test/fixtures/commands/scan/reach',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should handle reach analysis on test fixture',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
// Should fail due to fake token/org, but validates command parsing.
expect(code).toBeGreaterThan(0)
const output = stdout + stderr
expect(output.length).toBeGreaterThan(0)
},
)
cmdit(
[
'scan',
'reach',
'test/fixtures/commands/scan/reach',
'--reach-ecosystems',
'npm',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should handle npm ecosystem specification',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(code).toBeGreaterThan(0)
const output = stdout + stderr
expect(output.length).toBeGreaterThan(0)
},
)
cmdit(
[
'scan',
'reach',
'test/fixtures/commands/scan/reach',
'--reach-analysis-memory-limit',
'2048',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should handle custom memory limit',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(code).toBeGreaterThan(0)
const output = stdout + stderr
expect(output.length).toBeGreaterThan(0)
},
)
cmdit(
[
'scan',
'reach',
'test/fixtures/commands/scan/reach',
'--reach-analysis-timeout',
'1800',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should handle custom timeout',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(code).toBeGreaterThan(0)
const output = stdout + stderr
expect(output.length).toBeGreaterThan(0)
},
)
cmdit(
[
'scan',
'reach',
'test/fixtures/commands/scan/reach',
'--reach-exclude-paths',
'node_modules,dist',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should handle path exclusions',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(code).toBeGreaterThan(0)
const output = stdout + stderr
expect(output.length).toBeGreaterThan(0)
},
)
cmdit(
[
'scan',
'reach',
'test/fixtures/commands/scan/reach',
'--reach-disable-analytics',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should handle analytics disabled',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(code).toBeGreaterThan(0)
const output = stdout + stderr
expect(output.length).toBeGreaterThan(0)
},
)
cmdit(
[
'scan',
'reach',
'test/fixtures/commands/scan/reach',
'--reach-skip-cache',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should handle cache skipping',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(code).toBeGreaterThan(0)
const output = stdout + stderr
expect(output.length).toBeGreaterThan(0)
},
)
cmdit(
[
'scan',
'reach',
'test/fixtures/commands/scan/reach',
'--json',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should handle JSON output format',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(code).toBeGreaterThan(0)
// JSON output typically suppresses banner in stderr.
const output = stdout + stderr
expect(output.length).toBeGreaterThan(0)
},
)
cmdit(
[
'scan',
'reach',
'test/fixtures/commands/scan/reach',
'--markdown',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should handle markdown output format',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(code).toBeGreaterThan(0)
// Markdown output typically suppresses banner in stderr.
const output = stdout + stderr
expect(output.length).toBeGreaterThan(0)
},
)
cmdit(
[
'scan',
'reach',
'test/fixtures/commands/scan/reach',
'--reach-ecosystems',
'npm',
'--reach-analysis-memory-limit',
'2048',
'--reach-exclude-paths',
'node_modules',
'--reach-disable-analytics',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should handle comprehensive flag combination',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(code).toBeGreaterThan(0)
const output = stdout + stderr
expect(output.length).toBeGreaterThan(0)
},
)
})
describe('error handling and usability tests', () => {
cmdit(
[
'scan',
'reach',
'/nonexistent/directory',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should show clear error for non-existent directory',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
const output = stdout + stderr
expect(output).toMatch(
/Target directory must exist|no eligible files|file.*dir.*must contain|not.*found/i,
)
expect(code).toBeGreaterThan(0)
},
)
cmdit(
['scan', 'reach', FLAG_DRY_RUN, FLAG_CONFIG, '{}'],
'should show clear error when API token is missing',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
const output = stdout + stderr
expect(output).toMatch(/api token|authentication|token/i)
expect(code).toBeGreaterThan(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--org',
'',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should show clear error when org is empty',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
const output = stdout + stderr
expect(output).toMatch(/organization|org/i)
expect(code).toBeGreaterThan(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-analysis-memory-limit',
'not-a-number',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should show clear error for invalid memory limit',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
const output = stdout + stderr
expect(output).toContain('[DryRun]: Bailing now')
expect(code).toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-analysis-memory-limit',
'-1',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should show clear error for negative memory limit',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
const output = stdout + stderr
expect(output).toContain('[DryRun]: Bailing now')
expect(code).toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-analysis-timeout',
'invalid-timeout',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should show clear error for invalid timeout value',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
const output = stdout + stderr
expect(output).toContain('[DryRun]: Bailing now')
expect(code).toBe(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_DRY_RUN,
'--reach-analysis-timeout',
'0',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should show clear error for zero timeout',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
const output = stdout + stderr
expect(output).toContain('[DryRun]: Bailing now')
expect(code).toBe(0)
},
)
cmdit(
[
'scan',
'reach',
'test/fixtures/commands/scan/reach',
'--reach-analysis-memory-limit',
'999999999',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should handle extremely large memory limit values',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(code).toBeGreaterThan(0)
const output = stdout + stderr
expect(output.length).toBeGreaterThan(0)
},
)
cmdit(
[
'scan',
'reach',
'test/fixtures/commands/scan/reach',
'--reach-exclude-paths',
'',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should handle empty exclude paths gracefully',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(code).toBeGreaterThan(0)
const output = stdout + stderr
expect(output.length).toBeGreaterThan(0)
},
)
cmdit(
[
'scan',
'reach',
FLAG_HELP,
'--reach-ecosystems',
'npm',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{}',
],
'should prioritize help over other flags',
async cmd => {
const { code, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(stdout).toContain('Compute tier 1 reachability')
expect(code).toBe(0)
},
)
cmdit(
[
'scan',
'reach',
'test/fixtures/commands/scan/reach',
'--reach-ecosystems',
'npm,invalid-ecosystem,pypi',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should show clear error for mixed valid and invalid ecosystems',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
const output = stdout + stderr
expect(output).toMatch(/invalid.*ecosystem.*invalid-ecosystem/i)
expect(code).toBeGreaterThan(0)
},
)
cmdit(
[
'scan',
'reach',
'test/fixtures/commands/scan/reach',
'--reach-exclude-paths',
'/absolute/path,relative/path,../parent/path',
'--org',
'fakeOrg',
FLAG_CONFIG,
'{"apiToken":"fake-token"}',
],
'should handle various path formats in exclude paths',
async cmd => {
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
expect(code).toBeGreaterThan(0)
const output = stdout + stderr