This repository was archived by the owner on May 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathCommandExecution.spec.tsx
More file actions
659 lines (545 loc) · 20.4 KB
/
Copy pathCommandExecution.spec.tsx
File metadata and controls
659 lines (545 loc) · 20.4 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
// pnpm --filter @roo-code/vscode-webview test src/components/chat/__tests__/CommandExecution.spec.tsx
import React from "react"
import { render, screen, fireEvent } from "@testing-library/react"
import { CommandExecution } from "../CommandExecution"
import { ExtensionStateContext } from "../../../context/ExtensionStateContext"
// Mock dependencies
vi.mock("react-use", () => ({
useEvent: vi.fn(),
}))
import { vscode } from "../../../utils/vscode"
vi.mock("../../../utils/vscode", () => ({
vscode: {
postMessage: vi.fn(),
},
}))
vi.mock("../../common/CodeBlock", () => ({
default: ({ source }: { source: string }) => <div data-testid="code-block">{source}</div>,
}))
// Mock TerminalOutput
vi.mock("../TerminalOutput", () => ({
TerminalOutput: ({ content }: { content: string }) => <div data-testid="terminal-output">{content}</div>,
}))
vi.mock("../CommandPatternSelector", () => ({
CommandPatternSelector: ({ patterns, onAllowPatternChange, onDenyPatternChange }: any) => (
<div data-testid="command-pattern-selector">
{patterns.map((pattern: any, index: number) => (
<span key={index}>{pattern.pattern}</span>
))}
<button onClick={() => onAllowPatternChange(patterns[0]?.pattern)}>Allow</button>
<button onClick={() => onDenyPatternChange(patterns[0]?.pattern)}>Deny</button>
</div>
),
}))
// Mock ExtensionStateContext
const mockExtensionState = {
terminalShellIntegrationDisabled: false,
allowedCommands: ["npm"],
deniedCommands: ["rm"],
setAllowedCommands: vi.fn(),
setDeniedCommands: vi.fn(),
}
const ExtensionStateWrapper = ({ children }: { children: React.ReactNode }) => (
<ExtensionStateContext.Provider value={mockExtensionState as any}>{children}</ExtensionStateContext.Provider>
)
describe("CommandExecution", () => {
beforeEach(() => {
vi.clearAllMocks()
})
it("should render command without output", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-1" text="npm install" />
</ExtensionStateWrapper>,
)
expect(screen.getByTestId("code-block")).toHaveTextContent("npm install")
})
it("should render command with output", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-1" text="npm install\nOutput:\nInstalling packages..." />
</ExtensionStateWrapper>,
)
const codeBlocks = screen.getAllByTestId("code-block")
expect(codeBlocks[0]).toHaveTextContent("npm install")
const terminalOutput = screen.getByTestId("terminal-output")
expect(terminalOutput).toHaveTextContent("Installing packages...")
})
it("should render with custom icon and title", () => {
const icon = <span data-testid="custom-icon">📦</span>
const title = <span data-testid="custom-title">Installing Dependencies</span>
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-1" text="npm install" icon={icon} title={title} />
</ExtensionStateWrapper>,
)
expect(screen.getByTestId("custom-icon")).toBeInTheDocument()
expect(screen.getByTestId("custom-title")).toBeInTheDocument()
})
it("should show command pattern selector for commands", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-1" text="npm install express" />
</ExtensionStateWrapper>,
)
expect(screen.getByTestId("command-pattern-selector")).toBeInTheDocument()
// Check that the command is shown in the pattern selector
const selector = screen.getByTestId("command-pattern-selector")
expect(selector).toHaveTextContent("npm install express")
})
it("should handle allow command change", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-1" text="git push" />
</ExtensionStateWrapper>,
)
const allowButton = screen.getByText("Allow")
fireEvent.click(allowButton)
expect(mockExtensionState.setAllowedCommands).toHaveBeenCalledWith(["npm", "git push"])
expect(mockExtensionState.setDeniedCommands).toHaveBeenCalledWith(["rm"])
expect(vscode.postMessage).toHaveBeenCalledWith({
type: "updateSettings",
updatedSettings: {
allowedCommands: ["npm", "git push"],
deniedCommands: ["rm"],
},
})
})
it("should handle deny command change", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-1" text="docker run" />
</ExtensionStateWrapper>,
)
const denyButton = screen.getByText("Deny")
fireEvent.click(denyButton)
expect(mockExtensionState.setAllowedCommands).toHaveBeenCalledWith(["npm"])
expect(mockExtensionState.setDeniedCommands).toHaveBeenCalledWith(["rm", "docker run"])
expect(vscode.postMessage).toHaveBeenCalledWith({
type: "updateSettings",
updatedSettings: {
allowedCommands: ["npm"],
deniedCommands: ["rm", "docker run"],
},
})
})
it("should toggle allowed command", () => {
// Update the mock state to have "npm test" in allowedCommands
const stateWithNpmTest = {
...mockExtensionState,
allowedCommands: ["npm test"],
deniedCommands: ["rm"],
}
render(
<ExtensionStateContext.Provider value={stateWithNpmTest as any}>
<CommandExecution executionId="test-1" text="npm test" />
</ExtensionStateContext.Provider>,
)
const allowButton = screen.getByText("Allow")
fireEvent.click(allowButton)
// "npm test" is already in allowedCommands, so it should be removed
expect(stateWithNpmTest.setAllowedCommands).toHaveBeenCalledWith([])
expect(stateWithNpmTest.setDeniedCommands).toHaveBeenCalledWith(["rm"])
expect(vscode.postMessage).toHaveBeenCalledWith({
type: "updateSettings",
updatedSettings: {
allowedCommands: [],
deniedCommands: ["rm"],
},
})
})
it("should toggle denied command", () => {
// Update the mock state to have "rm -rf" in deniedCommands
const stateWithRmRf = {
...mockExtensionState,
allowedCommands: ["npm"],
deniedCommands: ["rm -rf"],
}
render(
<ExtensionStateContext.Provider value={stateWithRmRf as any}>
<CommandExecution executionId="test-1" text="rm -rf" />
</ExtensionStateContext.Provider>,
)
const denyButton = screen.getByText("Deny")
fireEvent.click(denyButton)
// "rm -rf" is already in deniedCommands, so it should be removed
expect(stateWithRmRf.setAllowedCommands).toHaveBeenCalledWith(["npm"])
expect(stateWithRmRf.setDeniedCommands).toHaveBeenCalledWith([])
expect(vscode.postMessage).toHaveBeenCalledWith({
type: "updateSettings",
updatedSettings: {
allowedCommands: ["npm"],
deniedCommands: [],
},
})
})
it("should parse command with Output: separator", () => {
const commandText = `npm install
Output:
Installing...`
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-1" text={commandText} />
</ExtensionStateWrapper>,
)
const codeBlocks = screen.getAllByTestId("code-block")
expect(codeBlocks[0]).toHaveTextContent("npm install")
})
it("should parse command with output", () => {
const commandText = `npm install
Output:
Suggested patterns: npm, npm install, npm run`
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-1" text={commandText} />
</ExtensionStateWrapper>,
)
// First check that the command was parsed correctly
const codeBlocks = screen.getAllByTestId("code-block")
expect(codeBlocks[0]).toHaveTextContent("npm install")
const terminalOutput = screen.getByTestId("terminal-output")
expect(terminalOutput).toHaveTextContent("Suggested patterns: npm, npm install, npm run")
const selector = screen.getByTestId("command-pattern-selector")
expect(selector).toBeInTheDocument()
// Should show the full command in the selector
expect(selector).toHaveTextContent("npm install")
})
it("should handle commands with pipes", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-1" text="ls -la | grep test" />
</ExtensionStateWrapper>,
)
const selector = screen.getByTestId("command-pattern-selector")
expect(selector).toBeInTheDocument()
// Should show one of the individual commands from the pipe
expect(selector.textContent).toMatch(/ls -la|grep test/)
})
it("should handle commands with && operator", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-1" text="npm install && npm test" />
</ExtensionStateWrapper>,
)
const selector = screen.getByTestId("command-pattern-selector")
expect(selector).toBeInTheDocument()
// Should show one of the individual commands from the && chain
expect(selector.textContent).toMatch(/npm install|npm test|npm/)
})
it("should not show pattern selector for empty commands", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-1" text="" />
</ExtensionStateWrapper>,
)
expect(screen.queryByTestId("command-pattern-selector")).not.toBeInTheDocument()
})
it("should expand output when terminal shell integration is disabled", () => {
const disabledState = {
...mockExtensionState,
terminalShellIntegrationDisabled: true,
}
const commandText = `npm install
Output:
Output here`
render(
<ExtensionStateContext.Provider value={disabledState as any}>
<CommandExecution executionId="test-1" text={commandText} />
</ExtensionStateContext.Provider>,
)
// Output should be visible when shell integration is disabled
const codeBlocks = screen.getAllByTestId("code-block")
expect(codeBlocks).toHaveLength(1) // Only command block
const terminalOutput = screen.getByTestId("terminal-output")
expect(terminalOutput).toHaveTextContent("Output here")
})
it("should handle undefined allowedCommands and deniedCommands", () => {
const stateWithUndefined = {
...mockExtensionState,
allowedCommands: undefined,
deniedCommands: undefined,
}
render(
<ExtensionStateContext.Provider value={stateWithUndefined as any}>
<CommandExecution executionId="test-1" text="npm install" />
</ExtensionStateContext.Provider>,
)
// Should show pattern selector when patterns are available
expect(screen.getByTestId("command-pattern-selector")).toBeInTheDocument()
})
it("should handle command change when moving from denied to allowed", () => {
// Update the mock state to have "rm file.txt" in deniedCommands
const stateWithRmInDenied = {
...mockExtensionState,
allowedCommands: ["npm"],
deniedCommands: ["rm file.txt"],
}
render(
<ExtensionStateContext.Provider value={stateWithRmInDenied as any}>
<CommandExecution executionId="test-1" text="rm file.txt" />
</ExtensionStateContext.Provider>,
)
const allowButton = screen.getByText("Allow")
fireEvent.click(allowButton)
// "rm file.txt" should be removed from denied and added to allowed
expect(stateWithRmInDenied.setAllowedCommands).toHaveBeenCalledWith(["npm", "rm file.txt"])
expect(stateWithRmInDenied.setDeniedCommands).toHaveBeenCalledWith([])
expect(vscode.postMessage).toHaveBeenCalledWith({
type: "updateSettings",
updatedSettings: {
allowedCommands: ["npm", "rm file.txt"],
deniedCommands: [],
},
})
})
describe("integration with CommandPatternSelector", () => {
it("should show complex commands with multiple operators", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-6" text="npm install && npm test || echo 'failed'" />
</ExtensionStateWrapper>,
)
const selector = screen.getByTestId("command-pattern-selector")
expect(selector).toBeInTheDocument()
// Should show one of the individual commands from the complex chain
expect(selector.textContent).toMatch(/npm install|npm test|echo|npm/)
})
it("should handle commands with output", () => {
const commandWithOutput = `npm install
Output:
Installing packages...
Other output here`
render(
<ExtensionStateWrapper>
<CommandExecution
executionId="test-6"
text={commandWithOutput}
icon={<span>icon</span>}
title={<span>Run Command</span>}
/>
</ExtensionStateWrapper>,
)
const selector = screen.getByTestId("command-pattern-selector")
expect(selector).toBeInTheDocument()
// Should show the command in the selector
expect(selector).toHaveTextContent("npm install")
})
it("should handle commands with subshells", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-7" text="echo $(whoami) && git status" />
</ExtensionStateWrapper>,
)
const selector = screen.getByTestId("command-pattern-selector")
expect(selector).toBeInTheDocument()
// Should show one of the individual commands
expect(selector.textContent).toMatch(/echo|whoami|git status|git/)
})
it("should handle commands with backtick subshells", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-8" text="git commit -m `date`" />
</ExtensionStateWrapper>,
)
const selector = screen.getByTestId("command-pattern-selector")
expect(selector).toBeInTheDocument()
// Should show one of the individual commands
expect(selector.textContent).toMatch(/git commit|date|git/)
})
it("should handle commands with special characters", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-9" text="cd ~/projects && npm start" />
</ExtensionStateWrapper>,
)
const selector = screen.getByTestId("command-pattern-selector")
expect(selector).toBeInTheDocument()
// Should show one of the individual commands
expect(selector.textContent).toMatch(/cd ~\/projects|npm start|cd|npm/)
})
it("should handle commands with mixed content including output", () => {
const commandWithMixedContent = `npm test
Output:
Running tests...
✓ Test 1 passed
✓ Test 2 passed`
render(
<ExtensionStateWrapper>
<CommandExecution
executionId="test-10"
text={commandWithMixedContent}
icon={<span>icon</span>}
title={<span>Run Command</span>}
/>
</ExtensionStateWrapper>,
)
const selector = screen.getByTestId("command-pattern-selector")
expect(selector).toBeInTheDocument()
// Should show the command in the selector
expect(selector).toHaveTextContent("npm test")
})
it("should update both allowed and denied lists when commands conflict", () => {
const conflictState = {
...mockExtensionState,
allowedCommands: ["git"],
deniedCommands: ["git push origin main"],
}
render(
<ExtensionStateContext.Provider value={conflictState as any}>
<CommandExecution executionId="test-11" text="git push origin main" />
</ExtensionStateContext.Provider>,
)
// Click to allow "git push origin main"
const allowButton = screen.getByText("Allow")
fireEvent.click(allowButton)
// Should add to allowed and remove from denied
expect(conflictState.setAllowedCommands).toHaveBeenCalledWith(["git", "git push origin main"])
expect(conflictState.setDeniedCommands).toHaveBeenCalledWith([])
})
it("should handle commands with special quotes", () => {
// Test with a command that has quotes
const commandWithQuotes = "echo 'test with unclosed quote"
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-12" text={commandWithQuotes} />
</ExtensionStateWrapper>,
)
// Should still render the command
expect(screen.getByTestId("code-block")).toHaveTextContent("echo 'test with unclosed quote")
// Should show pattern selector with a command pattern
const selector = screen.getByTestId("command-pattern-selector")
expect(selector).toBeInTheDocument()
expect(selector.textContent).toMatch(/echo/)
})
it("should handle empty or whitespace-only commands", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-13" text=" " />
</ExtensionStateWrapper>,
)
// Should render without errors
expect(screen.getByTestId("code-block")).toBeInTheDocument()
// Should not show pattern selector for empty commands
expect(screen.queryByTestId("command-pattern-selector")).not.toBeInTheDocument()
})
it("should handle commands with only output and no command prefix", () => {
const outputOnly = `Some output without a command
Multiple lines of output
Without any command prefix`
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-14" text={outputOnly} />
</ExtensionStateWrapper>,
)
// Should treat the entire text as command when no prefix is found
const codeBlock = screen.getByTestId("code-block")
// The mock CodeBlock component renders text content without preserving newlines
expect(codeBlock.textContent).toContain("Some output without a command")
expect(codeBlock.textContent).toContain("Multiple lines of output")
expect(codeBlock.textContent).toContain("Without any command prefix")
})
it("should handle simple commands", () => {
const plainCommand = "docker build ."
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-15" text={plainCommand} />
</ExtensionStateWrapper>,
)
// Should render the command
expect(screen.getByTestId("code-block")).toHaveTextContent("docker build .")
// Should show pattern selector with the full command
const selector = screen.getByTestId("command-pattern-selector")
expect(selector).toBeInTheDocument()
expect(selector).toHaveTextContent("docker build .")
// Verify no output is shown (since there's no Output: separator)
const codeBlocks = screen.getAllByTestId("code-block")
expect(codeBlocks).toHaveLength(1) // Only the command block, no output block
})
it("should handle commands with numeric output", () => {
const commandWithNumericOutput = `wc -l *.go *.java
Output:
10 file1.go
20 file2.go
15 Main.java
45 total`
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-16" text={commandWithNumericOutput} />
</ExtensionStateWrapper>,
)
// Should render the command and output
const codeBlocks = screen.getAllByTestId("code-block")
expect(codeBlocks[0]).toHaveTextContent("wc -l *.go *.java")
// Should show pattern selector
const selector = screen.getByTestId("command-pattern-selector")
expect(selector).toBeInTheDocument()
// Should show a command pattern
expect(selector.textContent).toMatch(/wc/)
// The output should still be displayed
const terminalOutput = screen.getByTestId("terminal-output")
expect(terminalOutput).toBeInTheDocument()
expect(terminalOutput.textContent).toContain("45 total")
})
it("should handle commands with zero output", () => {
const commandWithZeroTotal = `wc -l *.go *.java
Output:
0 total`
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-17" text={commandWithZeroTotal} />
</ExtensionStateWrapper>,
)
// Should show pattern selector
const selector = screen.getByTestId("command-pattern-selector")
expect(selector).toBeInTheDocument()
// Should show a command pattern
expect(selector.textContent).toMatch(/wc/)
// The output should still be displayed
const terminalOutput = screen.getByTestId("terminal-output")
expect(terminalOutput).toBeInTheDocument()
expect(terminalOutput).toHaveTextContent("0 total")
})
})
describe("denied commands banner", () => {
it("should show denied commands banner when command matches deny list", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-denied-1" text="rm -rf /" />
</ExtensionStateWrapper>,
)
const banner = screen.getByTestId("denied-commands-banner")
expect(banner).toBeInTheDocument()
expect(banner.textContent).toContain("rm -rf /")
})
it("should not show denied commands banner when command is allowed", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-denied-2" text="npm install" />
</ExtensionStateWrapper>,
)
expect(screen.queryByTestId("denied-commands-banner")).not.toBeInTheDocument()
})
it("should show denied commands in chained commands", () => {
render(
<ExtensionStateWrapper>
<CommandExecution executionId="test-denied-3" text="npm install && rm -rf /" />
</ExtensionStateWrapper>,
)
const banner = screen.getByTestId("denied-commands-banner")
expect(banner).toBeInTheDocument()
expect(banner.textContent).toContain("rm -rf /")
})
it("should not show banner when deniedCommands list is empty", () => {
const stateWithNoDenied = {
...mockExtensionState,
deniedCommands: [],
}
render(
<ExtensionStateContext.Provider value={stateWithNoDenied as any}>
<CommandExecution executionId="test-denied-4" text="rm -rf /" />
</ExtensionStateContext.Provider>,
)
expect(screen.queryByTestId("denied-commands-banner")).not.toBeInTheDocument()
})
})
})