diff options
| author | Abhi <[email protected]> | 2025-08-17 00:02:54 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-17 04:02:54 +0000 |
| commit | 33b9bdb11e9371dfa6891ba1be47a12b958f493d (patch) | |
| tree | 46ac192df7dd2aeaf35cb5eef5c121bc5decada9 /packages/core/src/utils/shell-utils.test.ts | |
| parent | e7dbc607a598c5270507d0ce7d55a3c98dcb0c0c (diff) | |
feat(cli): Introduce arguments for shell execution in custom commands (#5966)
Diffstat (limited to 'packages/core/src/utils/shell-utils.test.ts')
| -rw-r--r-- | packages/core/src/utils/shell-utils.test.ts | 157 |
1 files changed, 156 insertions, 1 deletions
diff --git a/packages/core/src/utils/shell-utils.test.ts b/packages/core/src/utils/shell-utils.test.ts index 22d316ad..913ec897 100644 --- a/packages/core/src/utils/shell-utils.test.ts +++ b/packages/core/src/utils/shell-utils.test.ts @@ -4,24 +4,47 @@ * SPDX-License-Identifier: Apache-2.0 */ -import { expect, describe, it, beforeEach } from 'vitest'; +import { expect, describe, it, beforeEach, vi, afterEach } from 'vitest'; import { checkCommandPermissions, + escapeShellArg, getCommandRoots, + getShellConfiguration, isCommandAllowed, stripShellWrapper, } from './shell-utils.js'; import { Config } from '../config/config.js'; +const mockPlatform = vi.hoisted(() => vi.fn()); +vi.mock('os', () => ({ + default: { + platform: mockPlatform, + }, + platform: mockPlatform, +})); + +const mockQuote = vi.hoisted(() => vi.fn()); +vi.mock('shell-quote', () => ({ + quote: mockQuote, +})); + let config: Config; beforeEach(() => { + mockPlatform.mockReturnValue('linux'); + mockQuote.mockImplementation((args: string[]) => + args.map((arg) => `'${arg}'`).join(' '), + ); config = { getCoreTools: () => [], getExcludeTools: () => [], } as unknown as Config; }); +afterEach(() => { + vi.clearAllMocks(); +}); + describe('isCommandAllowed', () => { it('should allow a command if no restrictions are provided', () => { const result = isCommandAllowed('ls -l', config); @@ -277,3 +300,135 @@ describe('stripShellWrapper', () => { expect(stripShellWrapper('ls -l')).toEqual('ls -l'); }); }); + +describe('escapeShellArg', () => { + describe('POSIX (bash)', () => { + it('should use shell-quote for escaping', () => { + mockQuote.mockReturnValueOnce("'escaped value'"); + const result = escapeShellArg('raw value', 'bash'); + expect(mockQuote).toHaveBeenCalledWith(['raw value']); + expect(result).toBe("'escaped value'"); + }); + + it('should handle empty strings', () => { + const result = escapeShellArg('', 'bash'); + expect(result).toBe(''); + expect(mockQuote).not.toHaveBeenCalled(); + }); + }); + + describe('Windows', () => { + describe('when shell is cmd.exe', () => { + it('should wrap simple arguments in double quotes', () => { + const result = escapeShellArg('search term', 'cmd'); + expect(result).toBe('"search term"'); + }); + + it('should escape internal double quotes by doubling them', () => { + const result = escapeShellArg('He said "Hello"', 'cmd'); + expect(result).toBe('"He said ""Hello"""'); + }); + + it('should handle empty strings', () => { + const result = escapeShellArg('', 'cmd'); + expect(result).toBe(''); + }); + }); + + describe('when shell is PowerShell', () => { + it('should wrap simple arguments in single quotes', () => { + const result = escapeShellArg('search term', 'powershell'); + expect(result).toBe("'search term'"); + }); + + it('should escape internal single quotes by doubling them', () => { + const result = escapeShellArg("It's a test", 'powershell'); + expect(result).toBe("'It''s a test'"); + }); + + it('should handle double quotes without escaping them', () => { + const result = escapeShellArg('He said "Hello"', 'powershell'); + expect(result).toBe('\'He said "Hello"\''); + }); + + it('should handle empty strings', () => { + const result = escapeShellArg('', 'powershell'); + expect(result).toBe(''); + }); + }); + }); +}); + +describe('getShellConfiguration', () => { + const originalEnv = { ...process.env }; + + afterEach(() => { + process.env = originalEnv; + }); + + it('should return bash configuration on Linux', () => { + mockPlatform.mockReturnValue('linux'); + const config = getShellConfiguration(); + expect(config.executable).toBe('bash'); + expect(config.argsPrefix).toEqual(['-c']); + expect(config.shell).toBe('bash'); + }); + + it('should return bash configuration on macOS (darwin)', () => { + mockPlatform.mockReturnValue('darwin'); + const config = getShellConfiguration(); + expect(config.executable).toBe('bash'); + expect(config.argsPrefix).toEqual(['-c']); + expect(config.shell).toBe('bash'); + }); + + describe('on Windows', () => { + beforeEach(() => { + mockPlatform.mockReturnValue('win32'); + }); + + it('should return cmd.exe configuration by default', () => { + delete process.env.ComSpec; + const config = getShellConfiguration(); + expect(config.executable).toBe('cmd.exe'); + expect(config.argsPrefix).toEqual(['/d', '/s', '/c']); + expect(config.shell).toBe('cmd'); + }); + + it('should respect ComSpec for cmd.exe', () => { + const cmdPath = 'C:\\WINDOWS\\system32\\cmd.exe'; + process.env.ComSpec = cmdPath; + const config = getShellConfiguration(); + expect(config.executable).toBe(cmdPath); + expect(config.argsPrefix).toEqual(['/d', '/s', '/c']); + expect(config.shell).toBe('cmd'); + }); + + it('should return PowerShell configuration if ComSpec points to powershell.exe', () => { + const psPath = + 'C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe'; + process.env.ComSpec = psPath; + const config = getShellConfiguration(); + expect(config.executable).toBe(psPath); + expect(config.argsPrefix).toEqual(['-NoProfile', '-Command']); + expect(config.shell).toBe('powershell'); + }); + + it('should return PowerShell configuration if ComSpec points to pwsh.exe', () => { + const pwshPath = 'C:\\Program Files\\PowerShell\\7\\pwsh.exe'; + process.env.ComSpec = pwshPath; + const config = getShellConfiguration(); + expect(config.executable).toBe(pwshPath); + expect(config.argsPrefix).toEqual(['-NoProfile', '-Command']); + expect(config.shell).toBe('powershell'); + }); + + it('should be case-insensitive when checking ComSpec', () => { + process.env.ComSpec = 'C:\\Path\\To\\POWERSHELL.EXE'; + const config = getShellConfiguration(); + expect(config.executable).toBe('C:\\Path\\To\\POWERSHELL.EXE'); + expect(config.argsPrefix).toEqual(['-NoProfile', '-Command']); + expect(config.shell).toBe('powershell'); + }); + }); +}); |
