| | |
| | |
| | |
| | |
| | |
| |
|
| | import { describe, it, expect, beforeAll } from 'vitest'; |
| | import { ShellExecutionService } from '../packages/core/src/services/shellExecutionService.js'; |
| | import * as fs from 'node:fs/promises'; |
| | import * as path from 'node:path'; |
| | import { vi } from 'vitest'; |
| |
|
| | describe('ShellExecutionService programmatic integration tests', () => { |
| | let testDir: string; |
| |
|
| | beforeAll(async () => { |
| | |
| | testDir = path.join( |
| | process.env['INTEGRATION_TEST_FILE_DIR']!, |
| | 'shell-service-tests', |
| | ); |
| | await fs.mkdir(testDir, { recursive: true }); |
| | }); |
| |
|
| | it('should execute a simple cross-platform command (echo)', async () => { |
| | const command = 'echo "hello from the service"'; |
| | const onOutputEvent = vi.fn(); |
| | const abortController = new AbortController(); |
| |
|
| | const handle = await ShellExecutionService.execute( |
| | command, |
| | testDir, |
| | onOutputEvent, |
| | abortController.signal, |
| | false, |
| | ); |
| |
|
| | const result = await handle.result; |
| |
|
| | expect(result.error).toBeNull(); |
| | expect(result.exitCode).toBe(0); |
| | |
| | expect(result.output).toContain('hello from the service'); |
| | }); |
| |
|
| | it.runIf(process.platform === 'win32')( |
| | 'should execute "dir" on Windows', |
| | async () => { |
| | const testFile = 'test-file-windows.txt'; |
| | await fs.writeFile(path.join(testDir, testFile), 'windows test'); |
| |
|
| | const command = 'dir'; |
| | const onOutputEvent = vi.fn(); |
| | const abortController = new AbortController(); |
| |
|
| | const handle = await ShellExecutionService.execute( |
| | command, |
| | testDir, |
| | onOutputEvent, |
| | abortController.signal, |
| | false, |
| | ); |
| |
|
| | const result = await handle.result; |
| |
|
| | expect(result.error).toBeNull(); |
| | expect(result.exitCode).toBe(0); |
| | expect(result.output).toContain(testFile); |
| | }, |
| | ); |
| |
|
| | it.skipIf(process.platform === 'win32')( |
| | 'should execute "ls -l" on Unix', |
| | async () => { |
| | const testFile = 'test-file-unix.txt'; |
| | await fs.writeFile(path.join(testDir, testFile), 'unix test'); |
| |
|
| | const command = 'ls -l'; |
| | const onOutputEvent = vi.fn(); |
| | const abortController = new AbortController(); |
| |
|
| | const handle = await ShellExecutionService.execute( |
| | command, |
| | testDir, |
| | onOutputEvent, |
| | abortController.signal, |
| | false, |
| | ); |
| |
|
| | const result = await handle.result; |
| |
|
| | expect(result.error).toBeNull(); |
| | expect(result.exitCode).toBe(0); |
| | expect(result.output).toContain(testFile); |
| | }, |
| | ); |
| |
|
| | it('should abort a running process', async () => { |
| | |
| | const command = process.platform === 'win32' ? 'timeout /t 20' : 'sleep 20'; |
| | const onOutputEvent = vi.fn(); |
| | const abortController = new AbortController(); |
| |
|
| | const handle = await ShellExecutionService.execute( |
| | command, |
| | testDir, |
| | onOutputEvent, |
| | abortController.signal, |
| | false, |
| | ); |
| |
|
| | |
| | setTimeout(() => abortController.abort(), 50); |
| |
|
| | const result = await handle.result; |
| |
|
| | |
| | console.log('Abort test result:', result); |
| |
|
| | expect(result.aborted).toBe(true); |
| | |
| | |
| | const exitedCleanly = result.exitCode === 0 && result.signal === null; |
| | expect(exitedCleanly, 'Process should not have exited cleanly').toBe(false); |
| | }); |
| |
|
| | it('should propagate environment variables to the child process', async () => { |
| | const varName = 'GEMINI_CLI_TEST_VAR'; |
| | const varValue = `test-value`; |
| | process.env[varName] = varValue; |
| |
|
| | try { |
| | const command = |
| | process.platform === 'win32' ? `echo %${varName}%` : `echo $${varName}`; |
| | const onOutputEvent = vi.fn(); |
| | const abortController = new AbortController(); |
| |
|
| | const handle = await ShellExecutionService.execute( |
| | command, |
| | testDir, |
| | onOutputEvent, |
| | abortController.signal, |
| | false, |
| | ); |
| |
|
| | const result = await handle.result; |
| |
|
| | expect(result.error).toBeNull(); |
| | expect(result.exitCode).toBe(0); |
| | expect(result.output).toContain(varValue); |
| | } finally { |
| | |
| | delete process.env[varName]; |
| | } |
| | }); |
| | }); |
| |
|