2025-07-25 21:56:49 -04:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import { vi, describe, it, expect, beforeEach, type Mock } from 'vitest';
|
2025-08-25 22:11:27 +02:00
|
|
|
import EventEmitter from 'node:events';
|
2025-08-26 00:04:53 +02:00
|
|
|
import type { Readable } from 'node:stream';
|
2025-08-25 22:11:27 +02:00
|
|
|
import { type ChildProcess } from 'node:child_process';
|
2025-12-04 20:33:55 -08:00
|
|
|
import type {
|
|
|
|
|
ShellOutputEvent,
|
|
|
|
|
ShellExecutionConfig,
|
|
|
|
|
} from './shellExecutionService.js';
|
2025-08-26 00:04:53 +02:00
|
|
|
import { ShellExecutionService } from './shellExecutionService.js';
|
2025-12-04 20:33:55 -08:00
|
|
|
import type { AnsiOutput, AnsiToken } from '../utils/terminalSerializer.js';
|
2025-07-25 21:56:49 -04:00
|
|
|
|
2025-08-19 16:03:51 -07:00
|
|
|
// Hoisted Mocks
|
|
|
|
|
const mockPtySpawn = vi.hoisted(() => vi.fn());
|
|
|
|
|
const mockCpSpawn = vi.hoisted(() => vi.fn());
|
2025-07-25 21:56:49 -04:00
|
|
|
const mockIsBinary = vi.hoisted(() => vi.fn());
|
2025-08-19 16:03:51 -07:00
|
|
|
const mockPlatform = vi.hoisted(() => vi.fn());
|
|
|
|
|
const mockGetPty = vi.hoisted(() => vi.fn());
|
2025-09-11 13:27:27 -07:00
|
|
|
const mockSerializeTerminalToObject = vi.hoisted(() => vi.fn());
|
2025-08-19 16:03:51 -07:00
|
|
|
|
|
|
|
|
// Top-level Mocks
|
|
|
|
|
vi.mock('@lydell/node-pty', () => ({
|
|
|
|
|
spawn: mockPtySpawn,
|
|
|
|
|
}));
|
2025-10-16 17:25:30 -07:00
|
|
|
vi.mock('node:child_process', async (importOriginal) => {
|
|
|
|
|
const actual =
|
|
|
|
|
(await importOriginal()) as typeof import('node:child_process');
|
|
|
|
|
return {
|
|
|
|
|
...actual,
|
|
|
|
|
spawn: mockCpSpawn,
|
|
|
|
|
};
|
|
|
|
|
});
|
2025-07-25 21:56:49 -04:00
|
|
|
vi.mock('../utils/textUtils.js', () => ({
|
|
|
|
|
isBinary: mockIsBinary,
|
|
|
|
|
}));
|
|
|
|
|
vi.mock('os', () => ({
|
|
|
|
|
default: {
|
|
|
|
|
platform: mockPlatform,
|
2025-08-19 16:03:51 -07:00
|
|
|
constants: {
|
|
|
|
|
signals: {
|
|
|
|
|
SIGTERM: 15,
|
|
|
|
|
SIGKILL: 9,
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-07-25 21:56:49 -04:00
|
|
|
},
|
|
|
|
|
platform: mockPlatform,
|
2025-08-19 16:03:51 -07:00
|
|
|
constants: {
|
|
|
|
|
signals: {
|
|
|
|
|
SIGTERM: 15,
|
|
|
|
|
SIGKILL: 9,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
vi.mock('../utils/getPty.js', () => ({
|
|
|
|
|
getPty: mockGetPty,
|
2025-07-25 21:56:49 -04:00
|
|
|
}));
|
2025-09-11 13:27:27 -07:00
|
|
|
vi.mock('../utils/terminalSerializer.js', () => ({
|
|
|
|
|
serializeTerminalToObject: mockSerializeTerminalToObject,
|
|
|
|
|
}));
|
|
|
|
|
|
2025-09-18 13:04:46 -07:00
|
|
|
const mockProcessKill = vi
|
|
|
|
|
.spyOn(process, 'kill')
|
|
|
|
|
.mockImplementation(() => true);
|
|
|
|
|
|
2025-12-04 20:33:55 -08:00
|
|
|
const shellExecutionConfig: ShellExecutionConfig = {
|
2025-09-11 13:27:27 -07:00
|
|
|
terminalWidth: 80,
|
|
|
|
|
terminalHeight: 24,
|
|
|
|
|
pager: 'cat',
|
|
|
|
|
showColor: false,
|
2025-09-30 13:44:58 -07:00
|
|
|
disableDynamicLineTrimming: true,
|
2025-09-11 13:27:27 -07:00
|
|
|
};
|
2025-07-25 21:56:49 -04:00
|
|
|
|
2025-09-18 13:04:46 -07:00
|
|
|
const createExpectedAnsiOutput = (text: string | string[]): AnsiOutput => {
|
|
|
|
|
const lines = Array.isArray(text) ? text : text.split('\n');
|
2025-12-04 20:33:55 -08:00
|
|
|
const len = (shellExecutionConfig.terminalHeight ?? 24) as number;
|
|
|
|
|
const expected: AnsiOutput = Array.from({ length: len }, (_, i) => [
|
|
|
|
|
{
|
|
|
|
|
text: expect.stringMatching((lines[i] || '').trim()),
|
|
|
|
|
bold: false,
|
|
|
|
|
italic: false,
|
|
|
|
|
underline: false,
|
|
|
|
|
dim: false,
|
|
|
|
|
inverse: false,
|
|
|
|
|
fg: '',
|
|
|
|
|
bg: '',
|
|
|
|
|
} as AnsiToken,
|
|
|
|
|
]);
|
2025-09-18 13:04:46 -07:00
|
|
|
return expected;
|
|
|
|
|
};
|
2025-08-15 10:27:33 -07:00
|
|
|
|
2025-07-25 21:56:49 -04:00
|
|
|
describe('ShellExecutionService', () => {
|
2025-08-19 16:03:51 -07:00
|
|
|
let mockPtyProcess: EventEmitter & {
|
|
|
|
|
pid: number;
|
|
|
|
|
kill: Mock;
|
|
|
|
|
onData: Mock;
|
|
|
|
|
onExit: Mock;
|
2025-09-11 13:27:27 -07:00
|
|
|
write: Mock;
|
|
|
|
|
resize: Mock;
|
|
|
|
|
};
|
|
|
|
|
let mockHeadlessTerminal: {
|
|
|
|
|
resize: Mock;
|
|
|
|
|
scrollLines: Mock;
|
2025-09-18 13:04:46 -07:00
|
|
|
buffer: {
|
|
|
|
|
active: {
|
|
|
|
|
viewportY: number;
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-08-19 16:03:51 -07:00
|
|
|
};
|
2025-07-25 21:56:49 -04:00
|
|
|
let onOutputEventMock: Mock<(event: ShellOutputEvent) => void>;
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
vi.clearAllMocks();
|
|
|
|
|
|
|
|
|
|
mockIsBinary.mockReturnValue(false);
|
2025-08-19 16:03:51 -07:00
|
|
|
mockPlatform.mockReturnValue('linux');
|
|
|
|
|
mockGetPty.mockResolvedValue({
|
|
|
|
|
module: { spawn: mockPtySpawn },
|
|
|
|
|
name: 'mock-pty',
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
onOutputEventMock = vi.fn();
|
2025-08-17 00:02:54 -04:00
|
|
|
|
2025-08-19 16:03:51 -07:00
|
|
|
mockPtyProcess = new EventEmitter() as EventEmitter & {
|
|
|
|
|
pid: number;
|
|
|
|
|
kill: Mock;
|
|
|
|
|
onData: Mock;
|
|
|
|
|
onExit: Mock;
|
2025-09-11 13:27:27 -07:00
|
|
|
write: Mock;
|
|
|
|
|
resize: Mock;
|
2025-08-19 16:03:51 -07:00
|
|
|
};
|
|
|
|
|
mockPtyProcess.pid = 12345;
|
|
|
|
|
mockPtyProcess.kill = vi.fn();
|
|
|
|
|
mockPtyProcess.onData = vi.fn();
|
|
|
|
|
mockPtyProcess.onExit = vi.fn();
|
2025-09-11 13:27:27 -07:00
|
|
|
mockPtyProcess.write = vi.fn();
|
|
|
|
|
mockPtyProcess.resize = vi.fn();
|
|
|
|
|
|
|
|
|
|
mockHeadlessTerminal = {
|
|
|
|
|
resize: vi.fn(),
|
|
|
|
|
scrollLines: vi.fn(),
|
2025-09-18 13:04:46 -07:00
|
|
|
buffer: {
|
|
|
|
|
active: {
|
|
|
|
|
viewportY: 0,
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-09-11 13:27:27 -07:00
|
|
|
};
|
2025-08-19 16:03:51 -07:00
|
|
|
|
|
|
|
|
mockPtySpawn.mockReturnValue(mockPtyProcess);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Helper function to run a standard execution simulation
|
|
|
|
|
const simulateExecution = async (
|
|
|
|
|
command: string,
|
|
|
|
|
simulation: (
|
|
|
|
|
ptyProcess: typeof mockPtyProcess,
|
|
|
|
|
ac: AbortController,
|
2025-10-10 15:14:37 -07:00
|
|
|
) => void | Promise<void>,
|
2025-09-11 13:27:27 -07:00
|
|
|
config = shellExecutionConfig,
|
2025-08-19 16:03:51 -07:00
|
|
|
) => {
|
|
|
|
|
const abortController = new AbortController();
|
|
|
|
|
const handle = await ShellExecutionService.execute(
|
|
|
|
|
command,
|
|
|
|
|
'/test/dir',
|
|
|
|
|
onOutputEventMock,
|
|
|
|
|
abortController.signal,
|
|
|
|
|
true,
|
2025-09-11 13:27:27 -07:00
|
|
|
config,
|
2025-08-19 16:03:51 -07:00
|
|
|
);
|
|
|
|
|
|
2025-09-11 13:27:27 -07:00
|
|
|
await new Promise((resolve) => process.nextTick(resolve));
|
2025-10-10 15:14:37 -07:00
|
|
|
await simulation(mockPtyProcess, abortController);
|
2025-08-19 16:03:51 -07:00
|
|
|
const result = await handle.result;
|
|
|
|
|
return { result, handle, abortController };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
describe('Successful Execution', () => {
|
|
|
|
|
it('should execute a command and capture output', async () => {
|
|
|
|
|
const { result, handle } = await simulateExecution('ls -l', (pty) => {
|
|
|
|
|
pty.onData.mock.calls[0][0]('file1.txt\n');
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(mockPtySpawn).toHaveBeenCalledWith(
|
|
|
|
|
'bash',
|
2025-11-04 11:11:29 -05:00
|
|
|
[
|
|
|
|
|
'-c',
|
|
|
|
|
'shopt -u promptvars nullglob extglob nocaseglob dotglob; ls -l',
|
|
|
|
|
],
|
2025-08-19 16:03:51 -07:00
|
|
|
expect.any(Object),
|
|
|
|
|
);
|
|
|
|
|
expect(result.exitCode).toBe(0);
|
|
|
|
|
expect(result.signal).toBeNull();
|
|
|
|
|
expect(result.error).toBeNull();
|
|
|
|
|
expect(result.aborted).toBe(false);
|
2025-09-11 13:27:27 -07:00
|
|
|
expect(result.output.trim()).toBe('file1.txt');
|
2025-08-19 16:03:51 -07:00
|
|
|
expect(handle.pid).toBe(12345);
|
|
|
|
|
|
|
|
|
|
expect(onOutputEventMock).toHaveBeenCalledWith({
|
|
|
|
|
type: 'data',
|
2025-09-18 13:04:46 -07:00
|
|
|
chunk: createExpectedAnsiOutput('file1.txt'),
|
2025-08-19 16:03:51 -07:00
|
|
|
});
|
2025-08-17 00:02:54 -04:00
|
|
|
});
|
2025-08-19 16:03:51 -07:00
|
|
|
|
|
|
|
|
it('should strip ANSI codes from output', async () => {
|
|
|
|
|
const { result } = await simulateExecution('ls --color=auto', (pty) => {
|
|
|
|
|
pty.onData.mock.calls[0][0]('a\u001b[31mred\u001b[0mword');
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
});
|
|
|
|
|
|
2025-09-11 13:27:27 -07:00
|
|
|
expect(result.output.trim()).toBe('aredword');
|
|
|
|
|
expect(onOutputEventMock).toHaveBeenCalledWith(
|
|
|
|
|
expect.objectContaining({
|
|
|
|
|
type: 'data',
|
2025-09-18 13:04:46 -07:00
|
|
|
chunk: createExpectedAnsiOutput('aredword'),
|
2025-09-11 13:27:27 -07:00
|
|
|
}),
|
|
|
|
|
);
|
2025-08-19 16:03:51 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should correctly decode multi-byte characters split across chunks', async () => {
|
|
|
|
|
const { result } = await simulateExecution('echo "你好"', (pty) => {
|
|
|
|
|
const multiByteChar = '你好';
|
|
|
|
|
pty.onData.mock.calls[0][0](multiByteChar.slice(0, 1));
|
|
|
|
|
pty.onData.mock.calls[0][0](multiByteChar.slice(1));
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
});
|
2025-09-11 13:27:27 -07:00
|
|
|
expect(result.output.trim()).toBe('你好');
|
2025-08-19 16:03:51 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should handle commands with no output', async () => {
|
2025-09-11 13:27:27 -07:00
|
|
|
await simulateExecution('touch file', (pty) => {
|
2025-08-19 16:03:51 -07:00
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
});
|
|
|
|
|
|
2025-09-11 13:27:27 -07:00
|
|
|
expect(onOutputEventMock).toHaveBeenCalledWith(
|
|
|
|
|
expect.objectContaining({
|
2025-09-18 13:04:46 -07:00
|
|
|
chunk: createExpectedAnsiOutput(''),
|
2025-09-11 13:27:27 -07:00
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
2025-12-04 20:33:55 -08:00
|
|
|
it('should capture large output (10000 lines)', async () => {
|
|
|
|
|
const lineCount = 10000;
|
|
|
|
|
const lines = Array.from({ length: lineCount }, (_, i) => `line ${i}`);
|
|
|
|
|
const expectedOutput = lines.join('\n');
|
|
|
|
|
|
|
|
|
|
const { result } = await simulateExecution(
|
|
|
|
|
'large-output-command',
|
|
|
|
|
(pty) => {
|
|
|
|
|
// Send data in chunks to simulate realistic streaming
|
|
|
|
|
// Use \r\n to ensure the terminal moves the cursor to the start of the line
|
|
|
|
|
const chunkSize = 1000;
|
|
|
|
|
for (let i = 0; i < lineCount; i += chunkSize) {
|
|
|
|
|
const chunk = lines.slice(i, i + chunkSize).join('\r\n') + '\r\n';
|
|
|
|
|
pty.onData.mock.calls[0][0](chunk);
|
|
|
|
|
}
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
expect(result.exitCode).toBe(0);
|
|
|
|
|
// The terminal buffer output includes trailing spaces for each line (up to terminal width).
|
|
|
|
|
// We trim each line to match our expected simple string.
|
|
|
|
|
const processedOutput = result.output
|
|
|
|
|
.split('\n')
|
|
|
|
|
.map((l) => l.trimEnd())
|
|
|
|
|
.join('\n')
|
|
|
|
|
.trim();
|
|
|
|
|
expect(processedOutput).toBe(expectedOutput);
|
|
|
|
|
expect(result.output.split('\n').length).toBeGreaterThanOrEqual(
|
|
|
|
|
lineCount,
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should not add extra padding but preserve explicit trailing whitespace', async () => {
|
|
|
|
|
const { result } = await simulateExecution('cmd', (pty) => {
|
|
|
|
|
// "value" should not get terminal-width padding
|
|
|
|
|
// "value2 " should keep its spaces
|
|
|
|
|
pty.onData.mock.calls[0][0]('value\r\nvalue2 ');
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(result.output).toBe('value\nvalue2 ');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should truncate output exceeding the scrollback limit', async () => {
|
|
|
|
|
const scrollbackLimit = 100;
|
|
|
|
|
const totalLines = 150;
|
|
|
|
|
// Generate lines: "line 0", "line 1", ...
|
|
|
|
|
const lines = Array.from({ length: totalLines }, (_, i) => `line ${i}`);
|
|
|
|
|
|
|
|
|
|
const { result } = await simulateExecution(
|
|
|
|
|
'overflow-command',
|
|
|
|
|
(pty) => {
|
|
|
|
|
const chunk = lines.join('\r\n') + '\r\n';
|
|
|
|
|
pty.onData.mock.calls[0][0](chunk);
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
},
|
|
|
|
|
{ ...shellExecutionConfig, scrollback: scrollbackLimit },
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
expect(result.exitCode).toBe(0);
|
|
|
|
|
|
|
|
|
|
// The terminal should keep the *last* 'scrollbackLimit' lines + lines in the viewport.
|
|
|
|
|
// xterm.js scrollback is the number of lines *above* the viewport.
|
|
|
|
|
// So total lines retained = scrollback + rows.
|
|
|
|
|
// However, our `getFullBufferText` implementation iterates the *active* buffer.
|
|
|
|
|
// In headless xterm, the buffer length grows.
|
|
|
|
|
// Let's verify that we have fewer lines than totalLines.
|
|
|
|
|
|
|
|
|
|
const outputLines = result.output
|
|
|
|
|
.trim()
|
|
|
|
|
.split('\n')
|
|
|
|
|
.map((l) => l.trimEnd());
|
|
|
|
|
|
|
|
|
|
// We expect the *start* of the output to be truncated.
|
|
|
|
|
// The first retained line should be > "line 0".
|
|
|
|
|
// Specifically, if we sent 150 lines and have space for roughly 100 + viewport(24),
|
|
|
|
|
// we should miss the first ~26 lines.
|
|
|
|
|
|
|
|
|
|
// Check that we lost some lines from the beginning
|
|
|
|
|
expect(outputLines.length).toBeLessThan(totalLines);
|
|
|
|
|
expect(outputLines[0]).not.toBe('line 0');
|
|
|
|
|
|
|
|
|
|
// Check that we have the *last* lines
|
|
|
|
|
expect(outputLines[outputLines.length - 1]).toBe(
|
|
|
|
|
`line ${totalLines - 1}`,
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
2025-09-11 13:27:27 -07:00
|
|
|
it('should call onPid with the process id', async () => {
|
|
|
|
|
const abortController = new AbortController();
|
|
|
|
|
const handle = await ShellExecutionService.execute(
|
|
|
|
|
'ls -l',
|
|
|
|
|
'/test/dir',
|
|
|
|
|
onOutputEventMock,
|
|
|
|
|
abortController.signal,
|
|
|
|
|
true,
|
|
|
|
|
shellExecutionConfig,
|
|
|
|
|
);
|
|
|
|
|
mockPtyProcess.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
await handle.result;
|
|
|
|
|
expect(handle.pid).toBe(12345);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('pty interaction', () => {
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
vi.spyOn(ShellExecutionService['activePtys'], 'get').mockReturnValue({
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
|
ptyProcess: mockPtyProcess as any,
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
|
headlessTerminal: mockHeadlessTerminal as any,
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should write to the pty and trigger a render', async () => {
|
|
|
|
|
vi.useFakeTimers();
|
|
|
|
|
await simulateExecution('interactive-app', (pty) => {
|
|
|
|
|
ShellExecutionService.writeToPty(pty.pid!, 'input');
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(mockPtyProcess.write).toHaveBeenCalledWith('input');
|
|
|
|
|
// Use fake timers to check for the delayed render
|
|
|
|
|
await vi.advanceTimersByTimeAsync(17);
|
|
|
|
|
// The render will cause an output event
|
|
|
|
|
expect(onOutputEventMock).toHaveBeenCalled();
|
|
|
|
|
vi.useRealTimers();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should resize the pty and the headless terminal', async () => {
|
|
|
|
|
await simulateExecution('ls -l', (pty) => {
|
|
|
|
|
pty.onData.mock.calls[0][0]('file1.txt\n');
|
|
|
|
|
ShellExecutionService.resizePty(pty.pid!, 100, 40);
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(mockPtyProcess.resize).toHaveBeenCalledWith(100, 40);
|
|
|
|
|
expect(mockHeadlessTerminal.resize).toHaveBeenCalledWith(100, 40);
|
|
|
|
|
});
|
|
|
|
|
|
2025-10-22 09:57:49 +05:30
|
|
|
it('should not resize the pty if it is not active', async () => {
|
|
|
|
|
const isPtyActiveSpy = vi
|
|
|
|
|
.spyOn(ShellExecutionService, 'isPtyActive')
|
|
|
|
|
.mockReturnValue(false);
|
|
|
|
|
|
|
|
|
|
await simulateExecution('ls -l', (pty) => {
|
|
|
|
|
ShellExecutionService.resizePty(pty.pid!, 100, 40);
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(mockPtyProcess.resize).not.toHaveBeenCalled();
|
|
|
|
|
expect(mockHeadlessTerminal.resize).not.toHaveBeenCalled();
|
|
|
|
|
isPtyActiveSpy.mockRestore();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should ignore errors when resizing an exited pty', async () => {
|
|
|
|
|
const resizeError = new Error(
|
|
|
|
|
'Cannot resize a pty that has already exited',
|
|
|
|
|
);
|
|
|
|
|
mockPtyProcess.resize.mockImplementation(() => {
|
|
|
|
|
throw resizeError;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// We don't expect this test to throw an error
|
|
|
|
|
await expect(
|
|
|
|
|
simulateExecution('ls -l', (pty) => {
|
|
|
|
|
ShellExecutionService.resizePty(pty.pid!, 100, 40);
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
}),
|
|
|
|
|
).resolves.not.toThrow();
|
|
|
|
|
|
|
|
|
|
expect(mockPtyProcess.resize).toHaveBeenCalledWith(100, 40);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should re-throw other errors during resize', async () => {
|
|
|
|
|
const otherError = new Error('Some other error');
|
|
|
|
|
mockPtyProcess.resize.mockImplementation(() => {
|
|
|
|
|
throw otherError;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
await expect(
|
|
|
|
|
simulateExecution('ls -l', (pty) => {
|
|
|
|
|
ShellExecutionService.resizePty(pty.pid!, 100, 40);
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
}),
|
|
|
|
|
).rejects.toThrow('Some other error');
|
|
|
|
|
});
|
|
|
|
|
|
2025-09-11 13:27:27 -07:00
|
|
|
it('should scroll the headless terminal', async () => {
|
|
|
|
|
await simulateExecution('ls -l', (pty) => {
|
|
|
|
|
pty.onData.mock.calls[0][0]('file1.txt\n');
|
|
|
|
|
ShellExecutionService.scrollPty(pty.pid!, 10);
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(mockHeadlessTerminal.scrollLines).toHaveBeenCalledWith(10);
|
2025-08-19 16:03:51 -07:00
|
|
|
});
|
2025-11-05 11:53:03 -05:00
|
|
|
|
|
|
|
|
it('should not throw when resizing a pty that has already exited (Windows)', () => {
|
|
|
|
|
const resizeError = new Error(
|
|
|
|
|
'Cannot resize a pty that has already exited',
|
|
|
|
|
);
|
|
|
|
|
mockPtyProcess.resize.mockImplementation(() => {
|
|
|
|
|
throw resizeError;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// This should catch the specific error and not re-throw it.
|
|
|
|
|
expect(() => {
|
|
|
|
|
ShellExecutionService.resizePty(mockPtyProcess.pid, 100, 40);
|
|
|
|
|
}).not.toThrow();
|
|
|
|
|
|
|
|
|
|
expect(mockPtyProcess.resize).toHaveBeenCalledWith(100, 40);
|
|
|
|
|
expect(mockHeadlessTerminal.resize).not.toHaveBeenCalled();
|
|
|
|
|
});
|
2025-08-19 16:03:51 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('Failed Execution', () => {
|
|
|
|
|
it('should capture a non-zero exit code', async () => {
|
|
|
|
|
const { result } = await simulateExecution('a-bad-command', (pty) => {
|
|
|
|
|
pty.onData.mock.calls[0][0]('command not found');
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 127, signal: null });
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(result.exitCode).toBe(127);
|
2025-09-11 13:27:27 -07:00
|
|
|
expect(result.output.trim()).toBe('command not found');
|
2025-08-19 16:03:51 -07:00
|
|
|
expect(result.error).toBeNull();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should capture a termination signal', async () => {
|
|
|
|
|
const { result } = await simulateExecution('long-process', (pty) => {
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: 15 });
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(result.exitCode).toBe(0);
|
|
|
|
|
expect(result.signal).toBe(15);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should handle a synchronous spawn error', async () => {
|
|
|
|
|
mockGetPty.mockImplementation(() => null);
|
|
|
|
|
|
|
|
|
|
mockCpSpawn.mockImplementation(() => {
|
|
|
|
|
throw new Error('Simulated PTY spawn error');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const handle = await ShellExecutionService.execute(
|
|
|
|
|
'any-command',
|
|
|
|
|
'/test/dir',
|
|
|
|
|
onOutputEventMock,
|
|
|
|
|
new AbortController().signal,
|
|
|
|
|
true,
|
2025-09-11 13:27:27 -07:00
|
|
|
{},
|
2025-08-19 16:03:51 -07:00
|
|
|
);
|
|
|
|
|
const result = await handle.result;
|
|
|
|
|
|
|
|
|
|
expect(result.error).toBeInstanceOf(Error);
|
|
|
|
|
expect(result.error?.message).toContain('Simulated PTY spawn error');
|
|
|
|
|
expect(result.exitCode).toBe(1);
|
|
|
|
|
expect(result.output).toBe('');
|
|
|
|
|
expect(handle.pid).toBeUndefined();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('Aborting Commands', () => {
|
|
|
|
|
it('should abort a running process and set the aborted flag', async () => {
|
|
|
|
|
const { result } = await simulateExecution(
|
|
|
|
|
'sleep 10',
|
|
|
|
|
(pty, abortController) => {
|
|
|
|
|
abortController.abort();
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 1, signal: null });
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
expect(result.aborted).toBe(true);
|
2025-09-11 13:27:27 -07:00
|
|
|
// The process kill is mocked, so we just check that the flag is set.
|
2025-08-19 16:03:51 -07:00
|
|
|
});
|
2025-10-10 15:14:37 -07:00
|
|
|
|
|
|
|
|
it('should send SIGTERM and then SIGKILL on abort', async () => {
|
|
|
|
|
const sigkillPromise = new Promise<void>((resolve) => {
|
|
|
|
|
mockProcessKill.mockImplementation((pid, signal) => {
|
|
|
|
|
if (signal === 'SIGKILL' && pid === -mockPtyProcess.pid) {
|
|
|
|
|
resolve();
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const { result } = await simulateExecution(
|
|
|
|
|
'long-running-process',
|
|
|
|
|
async (pty, abortController) => {
|
|
|
|
|
abortController.abort();
|
|
|
|
|
await sigkillPromise; // Wait for SIGKILL to be sent before exiting.
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: 9 });
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
expect(result.aborted).toBe(true);
|
|
|
|
|
|
|
|
|
|
// Verify the calls were made in the correct order.
|
|
|
|
|
const killCalls = mockProcessKill.mock.calls;
|
|
|
|
|
const sigtermCallIndex = killCalls.findIndex(
|
|
|
|
|
(call) => call[0] === -mockPtyProcess.pid && call[1] === 'SIGTERM',
|
|
|
|
|
);
|
|
|
|
|
const sigkillCallIndex = killCalls.findIndex(
|
|
|
|
|
(call) => call[0] === -mockPtyProcess.pid && call[1] === 'SIGKILL',
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
expect(sigtermCallIndex).toBe(0);
|
|
|
|
|
expect(sigkillCallIndex).toBe(1);
|
|
|
|
|
expect(sigtermCallIndex).toBeLessThan(sigkillCallIndex);
|
|
|
|
|
|
|
|
|
|
expect(result.signal).toBe(9);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should resolve without waiting for the processing chain on abort', async () => {
|
|
|
|
|
const { result } = await simulateExecution(
|
|
|
|
|
'long-output',
|
|
|
|
|
(pty, abortController) => {
|
|
|
|
|
// Simulate a lot of data being in the queue to be processed
|
|
|
|
|
for (let i = 0; i < 1000; i++) {
|
|
|
|
|
pty.onData.mock.calls[0][0]('some data');
|
|
|
|
|
}
|
|
|
|
|
abortController.abort();
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 1, signal: null });
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// The main assertion here is implicit: the `await` for the result above
|
|
|
|
|
// should complete without timing out. This proves that the resolution
|
|
|
|
|
// was not blocked by the long chain of data processing promises,
|
|
|
|
|
// which is the desired behavior on abort.
|
|
|
|
|
expect(result.aborted).toBe(true);
|
|
|
|
|
});
|
2025-08-19 16:03:51 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('Binary Output', () => {
|
|
|
|
|
it('should detect binary output and switch to progress events', async () => {
|
|
|
|
|
mockIsBinary.mockReturnValueOnce(true);
|
|
|
|
|
const binaryChunk1 = Buffer.from([0x89, 0x50, 0x4e, 0x47]);
|
|
|
|
|
const binaryChunk2 = Buffer.from([0x0d, 0x0a, 0x1a, 0x0a]);
|
|
|
|
|
|
|
|
|
|
const { result } = await simulateExecution('cat image.png', (pty) => {
|
|
|
|
|
pty.onData.mock.calls[0][0](binaryChunk1);
|
|
|
|
|
pty.onData.mock.calls[0][0](binaryChunk2);
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(result.rawOutput).toEqual(
|
|
|
|
|
Buffer.concat([binaryChunk1, binaryChunk2]),
|
|
|
|
|
);
|
|
|
|
|
expect(onOutputEventMock).toHaveBeenCalledTimes(3);
|
|
|
|
|
expect(onOutputEventMock.mock.calls[0][0]).toEqual({
|
|
|
|
|
type: 'binary_detected',
|
|
|
|
|
});
|
|
|
|
|
expect(onOutputEventMock.mock.calls[1][0]).toEqual({
|
|
|
|
|
type: 'binary_progress',
|
|
|
|
|
bytesReceived: 4,
|
|
|
|
|
});
|
|
|
|
|
expect(onOutputEventMock.mock.calls[2][0]).toEqual({
|
|
|
|
|
type: 'binary_progress',
|
|
|
|
|
bytesReceived: 8,
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should not emit data events after binary is detected', async () => {
|
|
|
|
|
mockIsBinary.mockImplementation((buffer) => buffer.includes(0x00));
|
|
|
|
|
|
|
|
|
|
await simulateExecution('cat mixed_file', (pty) => {
|
|
|
|
|
pty.onData.mock.calls[0][0](Buffer.from([0x00, 0x01, 0x02]));
|
|
|
|
|
pty.onData.mock.calls[0][0](Buffer.from('more text'));
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const eventTypes = onOutputEventMock.mock.calls.map(
|
|
|
|
|
(call: [ShellOutputEvent]) => call[0].type,
|
|
|
|
|
);
|
|
|
|
|
expect(eventTypes).toEqual([
|
|
|
|
|
'binary_detected',
|
|
|
|
|
'binary_progress',
|
|
|
|
|
'binary_progress',
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('Platform-Specific Behavior', () => {
|
2025-10-16 17:25:30 -07:00
|
|
|
it('should use powershell.exe on Windows', async () => {
|
2025-08-19 16:03:51 -07:00
|
|
|
mockPlatform.mockReturnValue('win32');
|
|
|
|
|
await simulateExecution('dir "foo bar"', (pty) =>
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null }),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
expect(mockPtySpawn).toHaveBeenCalledWith(
|
2025-10-16 17:25:30 -07:00
|
|
|
'powershell.exe',
|
|
|
|
|
['-NoProfile', '-Command', 'dir "foo bar"'],
|
2025-08-19 16:03:51 -07:00
|
|
|
expect.any(Object),
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should use bash on Linux', async () => {
|
|
|
|
|
mockPlatform.mockReturnValue('linux');
|
|
|
|
|
await simulateExecution('ls "foo bar"', (pty) =>
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null }),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
expect(mockPtySpawn).toHaveBeenCalledWith(
|
|
|
|
|
'bash',
|
2025-11-04 11:11:29 -05:00
|
|
|
[
|
|
|
|
|
'-c',
|
|
|
|
|
'shopt -u promptvars nullglob extglob nocaseglob dotglob; ls "foo bar"',
|
|
|
|
|
],
|
2025-08-19 16:03:51 -07:00
|
|
|
expect.any(Object),
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
});
|
2025-09-11 13:27:27 -07:00
|
|
|
|
|
|
|
|
describe('AnsiOutput rendering', () => {
|
|
|
|
|
it('should call onOutputEvent with AnsiOutput when showColor is true', async () => {
|
|
|
|
|
const coloredShellExecutionConfig = {
|
|
|
|
|
...shellExecutionConfig,
|
|
|
|
|
showColor: true,
|
|
|
|
|
defaultFg: '#ffffff',
|
|
|
|
|
defaultBg: '#000000',
|
2025-09-30 13:44:58 -07:00
|
|
|
disableDynamicLineTrimming: true,
|
2025-09-11 13:27:27 -07:00
|
|
|
};
|
|
|
|
|
const mockAnsiOutput = [
|
|
|
|
|
[{ text: 'hello', fg: '#ffffff', bg: '#000000' }],
|
|
|
|
|
];
|
|
|
|
|
mockSerializeTerminalToObject.mockReturnValue(mockAnsiOutput);
|
|
|
|
|
|
|
|
|
|
await simulateExecution(
|
|
|
|
|
'ls --color=auto',
|
|
|
|
|
(pty) => {
|
|
|
|
|
pty.onData.mock.calls[0][0]('a\u001b[31mred\u001b[0mword');
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
},
|
|
|
|
|
coloredShellExecutionConfig,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
expect(mockSerializeTerminalToObject).toHaveBeenCalledWith(
|
|
|
|
|
expect.anything(), // The terminal object
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
expect(onOutputEventMock).toHaveBeenCalledWith(
|
|
|
|
|
expect.objectContaining({
|
|
|
|
|
type: 'data',
|
|
|
|
|
chunk: mockAnsiOutput,
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
2025-09-18 13:04:46 -07:00
|
|
|
it('should call onOutputEvent with AnsiOutput when showColor is false', async () => {
|
|
|
|
|
await simulateExecution(
|
|
|
|
|
'ls --color=auto',
|
|
|
|
|
(pty) => {
|
|
|
|
|
pty.onData.mock.calls[0][0]('a\u001b[31mred\u001b[0mword');
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
},
|
2025-09-30 13:44:58 -07:00
|
|
|
{
|
|
|
|
|
...shellExecutionConfig,
|
|
|
|
|
showColor: false,
|
|
|
|
|
disableDynamicLineTrimming: true,
|
|
|
|
|
},
|
2025-09-18 13:04:46 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const expected = createExpectedAnsiOutput('aredword');
|
2025-09-11 13:27:27 -07:00
|
|
|
|
|
|
|
|
expect(onOutputEventMock).toHaveBeenCalledWith(
|
|
|
|
|
expect.objectContaining({
|
|
|
|
|
type: 'data',
|
2025-09-18 13:04:46 -07:00
|
|
|
chunk: expected,
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should handle multi-line output correctly when showColor is false', async () => {
|
|
|
|
|
await simulateExecution(
|
|
|
|
|
'ls --color=auto',
|
|
|
|
|
(pty) => {
|
|
|
|
|
pty.onData.mock.calls[0][0](
|
|
|
|
|
'line 1\n\u001b[32mline 2\u001b[0m\nline 3',
|
|
|
|
|
);
|
|
|
|
|
pty.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
},
|
2025-09-30 13:44:58 -07:00
|
|
|
{
|
|
|
|
|
...shellExecutionConfig,
|
|
|
|
|
showColor: false,
|
|
|
|
|
disableDynamicLineTrimming: true,
|
|
|
|
|
},
|
2025-09-18 13:04:46 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const expected = createExpectedAnsiOutput(['line 1', 'line 2', 'line 3']);
|
|
|
|
|
|
|
|
|
|
expect(onOutputEventMock).toHaveBeenCalledWith(
|
|
|
|
|
expect.objectContaining({
|
|
|
|
|
type: 'data',
|
|
|
|
|
chunk: expected,
|
2025-09-11 13:27:27 -07:00
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
});
|
2025-08-19 16:03:51 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('ShellExecutionService child_process fallback', () => {
|
|
|
|
|
let mockChildProcess: EventEmitter & Partial<ChildProcess>;
|
|
|
|
|
let onOutputEventMock: Mock<(event: ShellOutputEvent) => void>;
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
vi.clearAllMocks();
|
|
|
|
|
|
|
|
|
|
mockIsBinary.mockReturnValue(false);
|
|
|
|
|
mockPlatform.mockReturnValue('linux');
|
|
|
|
|
mockGetPty.mockResolvedValue(null);
|
2025-07-25 21:56:49 -04:00
|
|
|
|
|
|
|
|
onOutputEventMock = vi.fn();
|
|
|
|
|
|
2025-08-15 10:27:33 -07:00
|
|
|
mockChildProcess = new EventEmitter() as EventEmitter &
|
|
|
|
|
Partial<ChildProcess>;
|
|
|
|
|
mockChildProcess.stdout = new EventEmitter() as Readable;
|
|
|
|
|
mockChildProcess.stderr = new EventEmitter() as Readable;
|
|
|
|
|
mockChildProcess.kill = vi.fn();
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(mockChildProcess, 'pid', {
|
|
|
|
|
value: 12345,
|
|
|
|
|
configurable: true,
|
|
|
|
|
});
|
|
|
|
|
|
2025-08-19 16:03:51 -07:00
|
|
|
mockCpSpawn.mockReturnValue(mockChildProcess);
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Helper function to run a standard execution simulation
|
|
|
|
|
const simulateExecution = async (
|
|
|
|
|
command: string,
|
2025-08-15 10:27:33 -07:00
|
|
|
simulation: (cp: typeof mockChildProcess, ac: AbortController) => void,
|
2025-07-25 21:56:49 -04:00
|
|
|
) => {
|
|
|
|
|
const abortController = new AbortController();
|
2025-08-19 16:03:51 -07:00
|
|
|
const handle = await ShellExecutionService.execute(
|
2025-07-25 21:56:49 -04:00
|
|
|
command,
|
|
|
|
|
'/test/dir',
|
|
|
|
|
onOutputEventMock,
|
|
|
|
|
abortController.signal,
|
2025-08-19 16:03:51 -07:00
|
|
|
true,
|
2025-09-11 13:27:27 -07:00
|
|
|
shellExecutionConfig,
|
2025-07-25 21:56:49 -04:00
|
|
|
);
|
|
|
|
|
|
2025-09-11 13:27:27 -07:00
|
|
|
await new Promise((resolve) => process.nextTick(resolve));
|
2025-08-15 10:27:33 -07:00
|
|
|
simulation(mockChildProcess, abortController);
|
2025-07-25 21:56:49 -04:00
|
|
|
const result = await handle.result;
|
|
|
|
|
return { result, handle, abortController };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
describe('Successful Execution', () => {
|
2025-08-15 10:27:33 -07:00
|
|
|
it('should execute a command and capture stdout and stderr', async () => {
|
|
|
|
|
const { result, handle } = await simulateExecution('ls -l', (cp) => {
|
|
|
|
|
cp.stdout?.emit('data', Buffer.from('file1.txt\n'));
|
|
|
|
|
cp.stderr?.emit('data', Buffer.from('a warning'));
|
|
|
|
|
cp.emit('exit', 0, null);
|
2025-09-11 13:27:27 -07:00
|
|
|
cp.emit('close', 0, null);
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
|
|
|
|
|
2025-08-19 16:03:51 -07:00
|
|
|
expect(mockCpSpawn).toHaveBeenCalledWith(
|
2025-10-16 17:25:30 -07:00
|
|
|
'bash',
|
2025-11-04 11:11:29 -05:00
|
|
|
[
|
|
|
|
|
'-c',
|
|
|
|
|
'shopt -u promptvars nullglob extglob nocaseglob dotglob; ls -l',
|
|
|
|
|
],
|
2025-10-16 17:25:30 -07:00
|
|
|
expect.objectContaining({ shell: false, detached: true }),
|
2025-07-25 21:56:49 -04:00
|
|
|
);
|
|
|
|
|
expect(result.exitCode).toBe(0);
|
|
|
|
|
expect(result.signal).toBeNull();
|
|
|
|
|
expect(result.error).toBeNull();
|
|
|
|
|
expect(result.aborted).toBe(false);
|
2025-08-19 16:03:51 -07:00
|
|
|
expect(result.output).toBe('file1.txt\na warning');
|
2025-09-11 13:27:27 -07:00
|
|
|
expect(handle.pid).toBe(undefined);
|
2025-07-25 21:56:49 -04:00
|
|
|
|
|
|
|
|
expect(onOutputEventMock).toHaveBeenCalledWith({
|
|
|
|
|
type: 'data',
|
2025-09-11 13:27:27 -07:00
|
|
|
chunk: 'file1.txt\na warning',
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should strip ANSI codes from output', async () => {
|
2025-08-15 10:27:33 -07:00
|
|
|
const { result } = await simulateExecution('ls --color=auto', (cp) => {
|
|
|
|
|
cp.stdout?.emit('data', Buffer.from('a\u001b[31mred\u001b[0mword'));
|
|
|
|
|
cp.emit('exit', 0, null);
|
2025-09-11 13:27:27 -07:00
|
|
|
cp.emit('close', 0, null);
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
|
|
|
|
|
2025-09-11 13:27:27 -07:00
|
|
|
expect(result.output.trim()).toBe('aredword');
|
|
|
|
|
expect(onOutputEventMock).toHaveBeenCalledWith(
|
|
|
|
|
expect.objectContaining({
|
|
|
|
|
type: 'data',
|
2025-09-18 13:04:46 -07:00
|
|
|
chunk: 'aredword',
|
2025-09-11 13:27:27 -07:00
|
|
|
}),
|
|
|
|
|
);
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should correctly decode multi-byte characters split across chunks', async () => {
|
2025-08-15 10:27:33 -07:00
|
|
|
const { result } = await simulateExecution('echo "你好"', (cp) => {
|
|
|
|
|
const multiByteChar = Buffer.from('你好', 'utf-8');
|
|
|
|
|
cp.stdout?.emit('data', multiByteChar.slice(0, 2));
|
|
|
|
|
cp.stdout?.emit('data', multiByteChar.slice(2));
|
|
|
|
|
cp.emit('exit', 0, null);
|
2025-09-11 13:27:27 -07:00
|
|
|
cp.emit('close', 0, null);
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
2025-09-11 13:27:27 -07:00
|
|
|
expect(result.output.trim()).toBe('你好');
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should handle commands with no output', async () => {
|
2025-08-15 10:27:33 -07:00
|
|
|
const { result } = await simulateExecution('touch file', (cp) => {
|
|
|
|
|
cp.emit('exit', 0, null);
|
2025-09-11 13:27:27 -07:00
|
|
|
cp.emit('close', 0, null);
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
|
|
|
|
|
2025-09-11 13:27:27 -07:00
|
|
|
expect(result.output.trim()).toBe('');
|
2025-07-25 21:56:49 -04:00
|
|
|
expect(onOutputEventMock).not.toHaveBeenCalled();
|
|
|
|
|
});
|
2025-10-10 15:14:37 -07:00
|
|
|
|
2025-11-05 11:53:03 -05:00
|
|
|
it.skip('should truncate stdout using a sliding window and show a warning', async () => {
|
2025-10-10 15:14:37 -07:00
|
|
|
const MAX_SIZE = 16 * 1024 * 1024;
|
|
|
|
|
const chunk1 = 'a'.repeat(MAX_SIZE / 2 - 5);
|
|
|
|
|
const chunk2 = 'b'.repeat(MAX_SIZE / 2 - 5);
|
|
|
|
|
const chunk3 = 'c'.repeat(20);
|
|
|
|
|
|
|
|
|
|
const { result } = await simulateExecution('large-output', (cp) => {
|
|
|
|
|
cp.stdout?.emit('data', Buffer.from(chunk1));
|
|
|
|
|
cp.stdout?.emit('data', Buffer.from(chunk2));
|
|
|
|
|
cp.stdout?.emit('data', Buffer.from(chunk3));
|
|
|
|
|
cp.emit('exit', 0, null);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const truncationMessage =
|
|
|
|
|
'[GEMINI_CLI_WARNING: Output truncated. The buffer is limited to 16MB.]';
|
|
|
|
|
expect(result.output).toContain(truncationMessage);
|
|
|
|
|
|
|
|
|
|
const outputWithoutMessage = result.output
|
|
|
|
|
.substring(0, result.output.indexOf(truncationMessage))
|
|
|
|
|
.trimEnd();
|
|
|
|
|
|
|
|
|
|
expect(outputWithoutMessage.length).toBe(MAX_SIZE);
|
|
|
|
|
|
|
|
|
|
const expectedStart = (chunk1 + chunk2 + chunk3).slice(-MAX_SIZE);
|
|
|
|
|
expect(
|
|
|
|
|
outputWithoutMessage.startsWith(expectedStart.substring(0, 10)),
|
|
|
|
|
).toBe(true);
|
|
|
|
|
expect(outputWithoutMessage.endsWith('c'.repeat(20))).toBe(true);
|
2025-11-05 11:53:03 -05:00
|
|
|
}, 120000);
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('Failed Execution', () => {
|
2025-08-15 10:27:33 -07:00
|
|
|
it('should capture a non-zero exit code and format output correctly', async () => {
|
|
|
|
|
const { result } = await simulateExecution('a-bad-command', (cp) => {
|
|
|
|
|
cp.stderr?.emit('data', Buffer.from('command not found'));
|
|
|
|
|
cp.emit('exit', 127, null);
|
2025-09-11 13:27:27 -07:00
|
|
|
cp.emit('close', 127, null);
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(result.exitCode).toBe(127);
|
2025-09-11 13:27:27 -07:00
|
|
|
expect(result.output.trim()).toBe('command not found');
|
2025-07-25 21:56:49 -04:00
|
|
|
expect(result.error).toBeNull();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should capture a termination signal', async () => {
|
2025-08-15 10:27:33 -07:00
|
|
|
const { result } = await simulateExecution('long-process', (cp) => {
|
|
|
|
|
cp.emit('exit', null, 'SIGTERM');
|
2025-09-11 13:27:27 -07:00
|
|
|
cp.emit('close', null, 'SIGTERM');
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
|
|
|
|
|
2025-08-15 10:27:33 -07:00
|
|
|
expect(result.exitCode).toBeNull();
|
2025-08-19 16:03:51 -07:00
|
|
|
expect(result.signal).toBe(15);
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
2025-08-06 19:31:42 -04:00
|
|
|
|
2025-08-15 10:27:33 -07:00
|
|
|
it('should handle a spawn error', async () => {
|
|
|
|
|
const spawnError = new Error('spawn EACCES');
|
|
|
|
|
const { result } = await simulateExecution('protected-cmd', (cp) => {
|
|
|
|
|
cp.emit('error', spawnError);
|
|
|
|
|
cp.emit('exit', 1, null);
|
2025-09-11 13:27:27 -07:00
|
|
|
cp.emit('close', 1, null);
|
2025-08-06 19:31:42 -04:00
|
|
|
});
|
|
|
|
|
|
2025-08-14 13:40:12 -07:00
|
|
|
expect(result.error).toBe(spawnError);
|
|
|
|
|
expect(result.exitCode).toBe(1);
|
2025-08-15 10:27:33 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('handles errors that do not fire the exit event', async () => {
|
|
|
|
|
const error = new Error('spawn abc ENOENT');
|
|
|
|
|
const { result } = await simulateExecution('touch cat.jpg', (cp) => {
|
|
|
|
|
cp.emit('error', error); // No exit event is fired.
|
2025-09-11 13:27:27 -07:00
|
|
|
cp.emit('close', 1, null);
|
2025-08-15 10:27:33 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(result.error).toBe(error);
|
|
|
|
|
expect(result.exitCode).toBe(1);
|
2025-08-14 13:40:12 -07:00
|
|
|
});
|
|
|
|
|
});
|
2025-07-25 21:56:49 -04:00
|
|
|
|
2025-08-14 13:40:12 -07:00
|
|
|
describe('Aborting Commands', () => {
|
2025-08-15 10:27:33 -07:00
|
|
|
describe.each([
|
|
|
|
|
{
|
|
|
|
|
platform: 'linux',
|
|
|
|
|
expectedSignal: 'SIGTERM',
|
|
|
|
|
expectedExit: { signal: 'SIGKILL' as const },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
platform: 'win32',
|
|
|
|
|
expectedCommand: 'taskkill',
|
|
|
|
|
expectedExit: { code: 1 },
|
|
|
|
|
},
|
|
|
|
|
])(
|
|
|
|
|
'on $platform',
|
|
|
|
|
({ platform, expectedSignal, expectedCommand, expectedExit }) => {
|
|
|
|
|
it('should abort a running process and set the aborted flag', async () => {
|
|
|
|
|
mockPlatform.mockReturnValue(platform);
|
|
|
|
|
|
|
|
|
|
const { result } = await simulateExecution(
|
|
|
|
|
'sleep 10',
|
|
|
|
|
(cp, abortController) => {
|
|
|
|
|
abortController.abort();
|
2025-09-11 13:27:27 -07:00
|
|
|
if (expectedExit.signal) {
|
2025-08-15 10:27:33 -07:00
|
|
|
cp.emit('exit', null, expectedExit.signal);
|
2025-09-11 13:27:27 -07:00
|
|
|
cp.emit('close', null, expectedExit.signal);
|
|
|
|
|
}
|
|
|
|
|
if (typeof expectedExit.code === 'number') {
|
2025-08-15 10:27:33 -07:00
|
|
|
cp.emit('exit', expectedExit.code, null);
|
2025-09-11 13:27:27 -07:00
|
|
|
cp.emit('close', expectedExit.code, null);
|
|
|
|
|
}
|
2025-08-15 10:27:33 -07:00
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
expect(result.aborted).toBe(true);
|
|
|
|
|
|
|
|
|
|
if (platform === 'linux') {
|
|
|
|
|
expect(mockProcessKill).toHaveBeenCalledWith(
|
|
|
|
|
-mockChildProcess.pid!,
|
|
|
|
|
expectedSignal,
|
|
|
|
|
);
|
|
|
|
|
} else {
|
2025-08-19 16:03:51 -07:00
|
|
|
expect(mockCpSpawn).toHaveBeenCalledWith(expectedCommand, [
|
2025-08-15 10:27:33 -07:00
|
|
|
'/pid',
|
|
|
|
|
String(mockChildProcess.pid),
|
|
|
|
|
'/f',
|
|
|
|
|
'/t',
|
|
|
|
|
]);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
it('should gracefully attempt SIGKILL on linux if SIGTERM fails', async () => {
|
|
|
|
|
mockPlatform.mockReturnValue('linux');
|
|
|
|
|
vi.useFakeTimers();
|
|
|
|
|
|
|
|
|
|
// Don't await the result inside the simulation block for this specific test.
|
|
|
|
|
// We need to control the timeline manually.
|
|
|
|
|
const abortController = new AbortController();
|
2025-08-19 16:03:51 -07:00
|
|
|
const handle = await ShellExecutionService.execute(
|
2025-08-15 10:27:33 -07:00
|
|
|
'unresponsive_process',
|
|
|
|
|
'/test/dir',
|
|
|
|
|
onOutputEventMock,
|
|
|
|
|
abortController.signal,
|
2025-08-19 16:03:51 -07:00
|
|
|
true,
|
2025-09-11 13:27:27 -07:00
|
|
|
{},
|
2025-07-25 21:56:49 -04:00
|
|
|
);
|
|
|
|
|
|
2025-08-15 10:27:33 -07:00
|
|
|
abortController.abort();
|
|
|
|
|
|
|
|
|
|
// Check the first kill signal
|
|
|
|
|
expect(mockProcessKill).toHaveBeenCalledWith(
|
|
|
|
|
-mockChildProcess.pid!,
|
|
|
|
|
'SIGTERM',
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Now, advance time past the timeout
|
|
|
|
|
await vi.advanceTimersByTimeAsync(250);
|
|
|
|
|
|
|
|
|
|
// Check the second kill signal
|
|
|
|
|
expect(mockProcessKill).toHaveBeenCalledWith(
|
|
|
|
|
-mockChildProcess.pid!,
|
|
|
|
|
'SIGKILL',
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Finally, simulate the process exiting and await the result
|
|
|
|
|
mockChildProcess.emit('exit', null, 'SIGKILL');
|
2025-09-11 13:27:27 -07:00
|
|
|
mockChildProcess.emit('close', null, 'SIGKILL');
|
2025-08-15 10:27:33 -07:00
|
|
|
const result = await handle.result;
|
|
|
|
|
|
|
|
|
|
vi.useRealTimers();
|
|
|
|
|
|
2025-07-25 21:56:49 -04:00
|
|
|
expect(result.aborted).toBe(true);
|
2025-08-19 16:03:51 -07:00
|
|
|
expect(result.signal).toBe(9);
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('Binary Output', () => {
|
|
|
|
|
it('should detect binary output and switch to progress events', async () => {
|
|
|
|
|
mockIsBinary.mockReturnValueOnce(true);
|
|
|
|
|
const binaryChunk1 = Buffer.from([0x89, 0x50, 0x4e, 0x47]);
|
|
|
|
|
const binaryChunk2 = Buffer.from([0x0d, 0x0a, 0x1a, 0x0a]);
|
|
|
|
|
|
2025-08-15 10:27:33 -07:00
|
|
|
const { result } = await simulateExecution('cat image.png', (cp) => {
|
|
|
|
|
cp.stdout?.emit('data', binaryChunk1);
|
|
|
|
|
cp.stdout?.emit('data', binaryChunk2);
|
|
|
|
|
cp.emit('exit', 0, null);
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(result.rawOutput).toEqual(
|
|
|
|
|
Buffer.concat([binaryChunk1, binaryChunk2]),
|
|
|
|
|
);
|
2025-09-11 13:27:27 -07:00
|
|
|
expect(onOutputEventMock).toHaveBeenCalledTimes(1);
|
2025-07-25 21:56:49 -04:00
|
|
|
expect(onOutputEventMock.mock.calls[0][0]).toEqual({
|
|
|
|
|
type: 'binary_detected',
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should not emit data events after binary is detected', async () => {
|
|
|
|
|
mockIsBinary.mockImplementation((buffer) => buffer.includes(0x00));
|
|
|
|
|
|
2025-08-15 10:27:33 -07:00
|
|
|
await simulateExecution('cat mixed_file', (cp) => {
|
|
|
|
|
cp.stdout?.emit('data', Buffer.from('some text'));
|
|
|
|
|
cp.stdout?.emit('data', Buffer.from([0x00, 0x01, 0x02]));
|
|
|
|
|
cp.stdout?.emit('data', Buffer.from('more text'));
|
|
|
|
|
cp.emit('exit', 0, null);
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const eventTypes = onOutputEventMock.mock.calls.map(
|
|
|
|
|
(call: [ShellOutputEvent]) => call[0].type,
|
|
|
|
|
);
|
2025-09-11 13:27:27 -07:00
|
|
|
expect(eventTypes).toEqual(['binary_detected']);
|
2025-07-25 21:56:49 -04:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('Platform-Specific Behavior', () => {
|
2025-10-16 17:25:30 -07:00
|
|
|
it('should use powershell.exe on Windows', async () => {
|
2025-07-25 21:56:49 -04:00
|
|
|
mockPlatform.mockReturnValue('win32');
|
2025-08-15 10:27:33 -07:00
|
|
|
await simulateExecution('dir "foo bar"', (cp) =>
|
|
|
|
|
cp.emit('exit', 0, null),
|
2025-07-31 17:27:07 -07:00
|
|
|
);
|
2025-07-25 21:56:49 -04:00
|
|
|
|
2025-08-19 16:03:51 -07:00
|
|
|
expect(mockCpSpawn).toHaveBeenCalledWith(
|
2025-10-16 17:25:30 -07:00
|
|
|
'powershell.exe',
|
|
|
|
|
['-NoProfile', '-Command', 'dir "foo bar"'],
|
2025-08-15 10:27:33 -07:00
|
|
|
expect.objectContaining({
|
2025-10-16 17:25:30 -07:00
|
|
|
shell: false,
|
2025-08-15 10:27:33 -07:00
|
|
|
detached: false,
|
2025-10-16 17:25:30 -07:00
|
|
|
windowsVerbatimArguments: false,
|
2025-08-15 10:27:33 -07:00
|
|
|
}),
|
2025-07-25 21:56:49 -04:00
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
2025-08-15 10:27:33 -07:00
|
|
|
it('should use bash and detached process group on Linux', async () => {
|
2025-07-25 21:56:49 -04:00
|
|
|
mockPlatform.mockReturnValue('linux');
|
2025-08-15 10:27:33 -07:00
|
|
|
await simulateExecution('ls "foo bar"', (cp) => cp.emit('exit', 0, null));
|
|
|
|
|
|
2025-08-19 16:03:51 -07:00
|
|
|
expect(mockCpSpawn).toHaveBeenCalledWith(
|
2025-10-16 17:25:30 -07:00
|
|
|
'bash',
|
2025-11-04 11:11:29 -05:00
|
|
|
[
|
|
|
|
|
'-c',
|
|
|
|
|
'shopt -u promptvars nullglob extglob nocaseglob dotglob; ls "foo bar"',
|
|
|
|
|
],
|
2025-08-15 10:27:33 -07:00
|
|
|
expect.objectContaining({
|
2025-10-16 17:25:30 -07:00
|
|
|
shell: false,
|
2025-08-15 10:27:33 -07:00
|
|
|
detached: true,
|
|
|
|
|
}),
|
2025-07-25 21:56:49 -04:00
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
2025-08-19 16:03:51 -07:00
|
|
|
|
|
|
|
|
describe('ShellExecutionService execution method selection', () => {
|
|
|
|
|
let onOutputEventMock: Mock<(event: ShellOutputEvent) => void>;
|
|
|
|
|
let mockPtyProcess: EventEmitter & {
|
|
|
|
|
pid: number;
|
|
|
|
|
kill: Mock;
|
|
|
|
|
onData: Mock;
|
|
|
|
|
onExit: Mock;
|
2025-09-11 13:27:27 -07:00
|
|
|
write: Mock;
|
|
|
|
|
resize: Mock;
|
2025-08-19 16:03:51 -07:00
|
|
|
};
|
|
|
|
|
let mockChildProcess: EventEmitter & Partial<ChildProcess>;
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
vi.clearAllMocks();
|
|
|
|
|
onOutputEventMock = vi.fn();
|
|
|
|
|
|
|
|
|
|
// Mock for pty
|
|
|
|
|
mockPtyProcess = new EventEmitter() as EventEmitter & {
|
|
|
|
|
pid: number;
|
|
|
|
|
kill: Mock;
|
|
|
|
|
onData: Mock;
|
|
|
|
|
onExit: Mock;
|
2025-09-11 13:27:27 -07:00
|
|
|
write: Mock;
|
|
|
|
|
resize: Mock;
|
2025-08-19 16:03:51 -07:00
|
|
|
};
|
|
|
|
|
mockPtyProcess.pid = 12345;
|
|
|
|
|
mockPtyProcess.kill = vi.fn();
|
|
|
|
|
mockPtyProcess.onData = vi.fn();
|
|
|
|
|
mockPtyProcess.onExit = vi.fn();
|
2025-09-11 13:27:27 -07:00
|
|
|
mockPtyProcess.write = vi.fn();
|
|
|
|
|
mockPtyProcess.resize = vi.fn();
|
|
|
|
|
|
2025-08-19 16:03:51 -07:00
|
|
|
mockPtySpawn.mockReturnValue(mockPtyProcess);
|
|
|
|
|
mockGetPty.mockResolvedValue({
|
|
|
|
|
module: { spawn: mockPtySpawn },
|
|
|
|
|
name: 'mock-pty',
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Mock for child_process
|
|
|
|
|
mockChildProcess = new EventEmitter() as EventEmitter &
|
|
|
|
|
Partial<ChildProcess>;
|
|
|
|
|
mockChildProcess.stdout = new EventEmitter() as Readable;
|
|
|
|
|
mockChildProcess.stderr = new EventEmitter() as Readable;
|
|
|
|
|
mockChildProcess.kill = vi.fn();
|
|
|
|
|
Object.defineProperty(mockChildProcess, 'pid', {
|
|
|
|
|
value: 54321,
|
|
|
|
|
configurable: true,
|
|
|
|
|
});
|
|
|
|
|
mockCpSpawn.mockReturnValue(mockChildProcess);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should use node-pty when shouldUseNodePty is true and pty is available', async () => {
|
|
|
|
|
const abortController = new AbortController();
|
|
|
|
|
const handle = await ShellExecutionService.execute(
|
|
|
|
|
'test command',
|
|
|
|
|
'/test/dir',
|
|
|
|
|
onOutputEventMock,
|
|
|
|
|
abortController.signal,
|
|
|
|
|
true, // shouldUseNodePty
|
2025-09-11 13:27:27 -07:00
|
|
|
shellExecutionConfig,
|
2025-08-19 16:03:51 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Simulate exit to allow promise to resolve
|
|
|
|
|
mockPtyProcess.onExit.mock.calls[0][0]({ exitCode: 0, signal: null });
|
|
|
|
|
const result = await handle.result;
|
|
|
|
|
|
|
|
|
|
expect(mockGetPty).toHaveBeenCalled();
|
|
|
|
|
expect(mockPtySpawn).toHaveBeenCalled();
|
|
|
|
|
expect(mockCpSpawn).not.toHaveBeenCalled();
|
|
|
|
|
expect(result.executionMethod).toBe('mock-pty');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should use child_process when shouldUseNodePty is false', async () => {
|
|
|
|
|
const abortController = new AbortController();
|
|
|
|
|
const handle = await ShellExecutionService.execute(
|
|
|
|
|
'test command',
|
|
|
|
|
'/test/dir',
|
|
|
|
|
onOutputEventMock,
|
|
|
|
|
abortController.signal,
|
|
|
|
|
false, // shouldUseNodePty
|
2025-09-11 13:27:27 -07:00
|
|
|
{},
|
2025-08-19 16:03:51 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Simulate exit to allow promise to resolve
|
|
|
|
|
mockChildProcess.emit('exit', 0, null);
|
|
|
|
|
const result = await handle.result;
|
|
|
|
|
|
|
|
|
|
expect(mockGetPty).not.toHaveBeenCalled();
|
|
|
|
|
expect(mockPtySpawn).not.toHaveBeenCalled();
|
|
|
|
|
expect(mockCpSpawn).toHaveBeenCalled();
|
|
|
|
|
expect(result.executionMethod).toBe('child_process');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should fall back to child_process if pty is not available even if shouldUseNodePty is true', async () => {
|
|
|
|
|
mockGetPty.mockResolvedValue(null);
|
|
|
|
|
|
|
|
|
|
const abortController = new AbortController();
|
|
|
|
|
const handle = await ShellExecutionService.execute(
|
|
|
|
|
'test command',
|
|
|
|
|
'/test/dir',
|
|
|
|
|
onOutputEventMock,
|
|
|
|
|
abortController.signal,
|
|
|
|
|
true, // shouldUseNodePty
|
2025-09-11 13:27:27 -07:00
|
|
|
shellExecutionConfig,
|
2025-08-19 16:03:51 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Simulate exit to allow promise to resolve
|
|
|
|
|
mockChildProcess.emit('exit', 0, null);
|
|
|
|
|
const result = await handle.result;
|
|
|
|
|
|
|
|
|
|
expect(mockGetPty).toHaveBeenCalled();
|
|
|
|
|
expect(mockPtySpawn).not.toHaveBeenCalled();
|
|
|
|
|
expect(mockCpSpawn).toHaveBeenCalled();
|
|
|
|
|
expect(result.executionMethod).toBe('child_process');
|
|
|
|
|
});
|
|
|
|
|
});
|