| |
| |
| |
| |
| |
|
|
| import { renderWithProviders } from '../../test-utils/render.js'; |
| import { waitFor, act } from '@testing-library/react'; |
| import type { InputPromptProps } from './InputPrompt.js'; |
| import { InputPrompt } from './InputPrompt.js'; |
| import type { TextBuffer } from './shared/text-buffer.js'; |
| import type { Config } from '@google/gemini-cli-core'; |
| import * as path from 'node:path'; |
| import type { CommandContext, SlashCommand } from '../commands/types.js'; |
| import { CommandKind } from '../commands/types.js'; |
| import { describe, it, expect, beforeEach, vi } from 'vitest'; |
| import type { UseShellHistoryReturn } from '../hooks/useShellHistory.js'; |
| import { useShellHistory } from '../hooks/useShellHistory.js'; |
| import type { UseCommandCompletionReturn } from '../hooks/useCommandCompletion.js'; |
| import { useCommandCompletion } from '../hooks/useCommandCompletion.js'; |
| import type { UseInputHistoryReturn } from '../hooks/useInputHistory.js'; |
| import { useInputHistory } from '../hooks/useInputHistory.js'; |
| import * as clipboardUtils from '../utils/clipboardUtils.js'; |
| import { createMockCommandContext } from '../../test-utils/mockCommandContext.js'; |
|
|
| vi.mock('../hooks/useShellHistory.js'); |
| vi.mock('../hooks/useCommandCompletion.js'); |
| vi.mock('../hooks/useInputHistory.js'); |
| vi.mock('../utils/clipboardUtils.js'); |
|
|
| const mockSlashCommands: SlashCommand[] = [ |
| { |
| name: 'clear', |
| kind: CommandKind.BUILT_IN, |
| description: 'Clear screen', |
| action: vi.fn(), |
| }, |
| { |
| name: 'memory', |
| kind: CommandKind.BUILT_IN, |
| description: 'Manage memory', |
| subCommands: [ |
| { |
| name: 'show', |
| kind: CommandKind.BUILT_IN, |
| description: 'Show memory', |
| action: vi.fn(), |
| }, |
| { |
| name: 'add', |
| kind: CommandKind.BUILT_IN, |
| description: 'Add to memory', |
| action: vi.fn(), |
| }, |
| { |
| name: 'refresh', |
| kind: CommandKind.BUILT_IN, |
| description: 'Refresh memory', |
| action: vi.fn(), |
| }, |
| ], |
| }, |
| { |
| name: 'chat', |
| description: 'Manage chats', |
| kind: CommandKind.BUILT_IN, |
| subCommands: [ |
| { |
| name: 'resume', |
| description: 'Resume a chat', |
| kind: CommandKind.BUILT_IN, |
| action: vi.fn(), |
| completion: async () => ['fix-foo', 'fix-bar'], |
| }, |
| ], |
| }, |
| ]; |
|
|
| describe('InputPrompt', () => { |
| let props: InputPromptProps; |
| let mockShellHistory: UseShellHistoryReturn; |
| let mockCommandCompletion: UseCommandCompletionReturn; |
| let mockInputHistory: UseInputHistoryReturn; |
| let mockBuffer: TextBuffer; |
| let mockCommandContext: CommandContext; |
|
|
| const mockedUseShellHistory = vi.mocked(useShellHistory); |
| const mockedUseCommandCompletion = vi.mocked(useCommandCompletion); |
| const mockedUseInputHistory = vi.mocked(useInputHistory); |
|
|
| beforeEach(() => { |
| vi.resetAllMocks(); |
|
|
| mockCommandContext = createMockCommandContext(); |
|
|
| mockBuffer = { |
| text: '', |
| cursor: [0, 0], |
| lines: [''], |
| setText: vi.fn((newText: string) => { |
| mockBuffer.text = newText; |
| mockBuffer.lines = [newText]; |
| mockBuffer.cursor = [0, newText.length]; |
| mockBuffer.viewportVisualLines = [newText]; |
| mockBuffer.allVisualLines = [newText]; |
| }), |
| replaceRangeByOffset: vi.fn(), |
| viewportVisualLines: [''], |
| allVisualLines: [''], |
| visualCursor: [0, 0], |
| visualScrollRow: 0, |
| handleInput: vi.fn(), |
| move: vi.fn(), |
| moveToOffset: vi.fn((offset: number) => { |
| mockBuffer.cursor = [0, offset]; |
| }), |
| killLineRight: vi.fn(), |
| killLineLeft: vi.fn(), |
| openInExternalEditor: vi.fn(), |
| newline: vi.fn(), |
| backspace: vi.fn(), |
| preferredCol: null, |
| selectionAnchor: null, |
| insert: vi.fn(), |
| del: vi.fn(), |
| undo: vi.fn(), |
| redo: vi.fn(), |
| replaceRange: vi.fn(), |
| deleteWordLeft: vi.fn(), |
| deleteWordRight: vi.fn(), |
| } as unknown as TextBuffer; |
|
|
| mockShellHistory = { |
| history: [], |
| addCommandToHistory: vi.fn(), |
| getPreviousCommand: vi.fn().mockReturnValue(null), |
| getNextCommand: vi.fn().mockReturnValue(null), |
| resetHistoryPosition: vi.fn(), |
| }; |
| mockedUseShellHistory.mockReturnValue(mockShellHistory); |
|
|
| mockCommandCompletion = { |
| suggestions: [], |
| activeSuggestionIndex: -1, |
| isLoadingSuggestions: false, |
| showSuggestions: false, |
| visibleStartIndex: 0, |
| isPerfectMatch: false, |
| navigateUp: vi.fn(), |
| navigateDown: vi.fn(), |
| resetCompletionState: vi.fn(), |
| setActiveSuggestionIndex: vi.fn(), |
| setShowSuggestions: vi.fn(), |
| handleAutocomplete: vi.fn(), |
| promptCompletion: { |
| text: '', |
| accept: vi.fn(), |
| clear: vi.fn(), |
| }, |
| }; |
| mockedUseCommandCompletion.mockReturnValue(mockCommandCompletion); |
|
|
| mockInputHistory = { |
| navigateUp: vi.fn(), |
| navigateDown: vi.fn(), |
| handleSubmit: vi.fn(), |
| }; |
| mockedUseInputHistory.mockReturnValue(mockInputHistory); |
|
|
| props = { |
| buffer: mockBuffer, |
| onSubmit: vi.fn(), |
| userMessages: [], |
| onClearScreen: vi.fn(), |
| config: { |
| getProjectRoot: () => path.join('test', 'project'), |
| getTargetDir: () => path.join('test', 'project', 'src'), |
| getVimMode: () => false, |
| getWorkspaceContext: () => ({ |
| getDirectories: () => ['/test/project/src'], |
| }), |
| } as unknown as Config, |
| slashCommands: mockSlashCommands, |
| commandContext: mockCommandContext, |
| shellModeActive: false, |
| setShellModeActive: vi.fn(), |
| inputWidth: 80, |
| suggestionsWidth: 80, |
| focus: true, |
| }; |
| }); |
|
|
| const wait = (ms = 50) => new Promise((resolve) => setTimeout(resolve, ms)); |
|
|
| it('should call shellHistory.getPreviousCommand on up arrow in shell mode', async () => { |
| props.shellModeActive = true; |
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\u001B[A'); |
| await wait(); |
|
|
| expect(mockShellHistory.getPreviousCommand).toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should call shellHistory.getNextCommand on down arrow in shell mode', async () => { |
| props.shellModeActive = true; |
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\u001B[B'); |
| await wait(); |
|
|
| expect(mockShellHistory.getNextCommand).toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should set the buffer text when a shell history command is retrieved', async () => { |
| props.shellModeActive = true; |
| vi.mocked(mockShellHistory.getPreviousCommand).mockReturnValue( |
| 'previous command', |
| ); |
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\u001B[A'); |
| await wait(); |
|
|
| expect(mockShellHistory.getPreviousCommand).toHaveBeenCalled(); |
| expect(props.buffer.setText).toHaveBeenCalledWith('previous command'); |
| unmount(); |
| }); |
|
|
| it('should call shellHistory.addCommandToHistory on submit in shell mode', async () => { |
| props.shellModeActive = true; |
| props.buffer.setText('ls -l'); |
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\r'); |
| await wait(); |
|
|
| expect(mockShellHistory.addCommandToHistory).toHaveBeenCalledWith('ls -l'); |
| expect(props.onSubmit).toHaveBeenCalledWith('ls -l'); |
| unmount(); |
| }); |
|
|
| it('should NOT call shell history methods when not in shell mode', async () => { |
| props.buffer.setText('some text'); |
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\u001B[A'); |
| await wait(); |
| stdin.write('\u001B[B'); |
| await wait(); |
| stdin.write('\r'); |
| await wait(); |
|
|
| expect(mockShellHistory.getPreviousCommand).not.toHaveBeenCalled(); |
| expect(mockShellHistory.getNextCommand).not.toHaveBeenCalled(); |
| expect(mockShellHistory.addCommandToHistory).not.toHaveBeenCalled(); |
|
|
| expect(mockInputHistory.navigateUp).toHaveBeenCalled(); |
| expect(mockInputHistory.navigateDown).toHaveBeenCalled(); |
| expect(props.onSubmit).toHaveBeenCalledWith('some text'); |
| unmount(); |
| }); |
|
|
| it('should call completion.navigateUp for both up arrow and Ctrl+P when suggestions are showing', async () => { |
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [ |
| { label: 'memory', value: 'memory' }, |
| { label: 'memcache', value: 'memcache' }, |
| ], |
| }); |
|
|
| props.buffer.setText('/mem'); |
|
|
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| |
| stdin.write('\u001B[A'); |
| await wait(); |
|
|
| stdin.write('\u0010'); |
| await wait(); |
| expect(mockCommandCompletion.navigateUp).toHaveBeenCalledTimes(2); |
| expect(mockCommandCompletion.navigateDown).not.toHaveBeenCalled(); |
|
|
| unmount(); |
| }); |
|
|
| it('should call completion.navigateDown for both down arrow and Ctrl+N when suggestions are showing', async () => { |
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [ |
| { label: 'memory', value: 'memory' }, |
| { label: 'memcache', value: 'memcache' }, |
| ], |
| }); |
| props.buffer.setText('/mem'); |
|
|
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| |
| stdin.write('\u001B[B'); |
| await wait(); |
|
|
| stdin.write('\u000E'); |
| await wait(); |
| expect(mockCommandCompletion.navigateDown).toHaveBeenCalledTimes(2); |
| expect(mockCommandCompletion.navigateUp).not.toHaveBeenCalled(); |
|
|
| unmount(); |
| }); |
|
|
| it('should NOT call completion navigation when suggestions are not showing', async () => { |
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: false, |
| }); |
| props.buffer.setText('some text'); |
|
|
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\u001B[A'); |
| await wait(); |
| stdin.write('\u001B[B'); |
| await wait(); |
| stdin.write('\u0010'); |
| await wait(); |
| stdin.write('\u000E'); |
| await wait(); |
|
|
| expect(mockCommandCompletion.navigateUp).not.toHaveBeenCalled(); |
| expect(mockCommandCompletion.navigateDown).not.toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| describe('clipboard image paste', () => { |
| beforeEach(() => { |
| vi.mocked(clipboardUtils.clipboardHasImage).mockResolvedValue(false); |
| vi.mocked(clipboardUtils.saveClipboardImage).mockResolvedValue(null); |
| vi.mocked(clipboardUtils.cleanupOldClipboardImages).mockResolvedValue( |
| undefined, |
| ); |
| }); |
|
|
| it('should handle Ctrl+V when clipboard has an image', async () => { |
| vi.mocked(clipboardUtils.clipboardHasImage).mockResolvedValue(true); |
| vi.mocked(clipboardUtils.saveClipboardImage).mockResolvedValue( |
| '/test/.gemini-clipboard/clipboard-123.png', |
| ); |
|
|
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| |
| stdin.write('\x16'); |
| await wait(); |
|
|
| expect(clipboardUtils.clipboardHasImage).toHaveBeenCalled(); |
| expect(clipboardUtils.saveClipboardImage).toHaveBeenCalledWith( |
| props.config.getTargetDir(), |
| ); |
| expect(clipboardUtils.cleanupOldClipboardImages).toHaveBeenCalledWith( |
| props.config.getTargetDir(), |
| ); |
| expect(mockBuffer.replaceRangeByOffset).toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should not insert anything when clipboard has no image', async () => { |
| vi.mocked(clipboardUtils.clipboardHasImage).mockResolvedValue(false); |
|
|
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('\x16'); |
| await wait(); |
|
|
| expect(clipboardUtils.clipboardHasImage).toHaveBeenCalled(); |
| expect(clipboardUtils.saveClipboardImage).not.toHaveBeenCalled(); |
| expect(mockBuffer.setText).not.toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should handle image save failure gracefully', async () => { |
| vi.mocked(clipboardUtils.clipboardHasImage).mockResolvedValue(true); |
| vi.mocked(clipboardUtils.saveClipboardImage).mockResolvedValue(null); |
|
|
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('\x16'); |
| await wait(); |
|
|
| expect(clipboardUtils.saveClipboardImage).toHaveBeenCalled(); |
| expect(mockBuffer.setText).not.toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should insert image path at cursor position with proper spacing', async () => { |
| const imagePath = path.join( |
| 'test', |
| '.gemini-clipboard', |
| 'clipboard-456.png', |
| ); |
| vi.mocked(clipboardUtils.clipboardHasImage).mockResolvedValue(true); |
| vi.mocked(clipboardUtils.saveClipboardImage).mockResolvedValue(imagePath); |
|
|
| |
| mockBuffer.text = 'Hello world'; |
| mockBuffer.cursor = [0, 5]; |
| mockBuffer.lines = ['Hello world']; |
| mockBuffer.replaceRangeByOffset = vi.fn(); |
|
|
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('\x16'); |
| await wait(); |
|
|
| |
| expect(mockBuffer.replaceRangeByOffset).toHaveBeenCalled(); |
|
|
| |
| const actualCall = vi.mocked(mockBuffer.replaceRangeByOffset).mock |
| .calls[0]; |
| expect(actualCall[0]).toBe(5); |
| expect(actualCall[1]).toBe(5); |
| expect(actualCall[2]).toBe( |
| ' @' + path.relative(path.join('test', 'project', 'src'), imagePath), |
| ); |
| unmount(); |
| }); |
|
|
| it('should handle errors during clipboard operations', async () => { |
| const consoleErrorSpy = vi |
| .spyOn(console, 'error') |
| .mockImplementation(() => {}); |
| vi.mocked(clipboardUtils.clipboardHasImage).mockRejectedValue( |
| new Error('Clipboard error'), |
| ); |
|
|
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('\x16'); |
| await wait(); |
|
|
| expect(consoleErrorSpy).toHaveBeenCalledWith( |
| 'Error handling clipboard image:', |
| expect.any(Error), |
| ); |
| expect(mockBuffer.setText).not.toHaveBeenCalled(); |
|
|
| consoleErrorSpy.mockRestore(); |
| unmount(); |
| }); |
| }); |
|
|
| it('should complete a partial parent command', async () => { |
| |
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [{ label: 'memory', value: 'memory', description: '...' }], |
| activeSuggestionIndex: 0, |
| }); |
| props.buffer.setText('/mem'); |
|
|
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\t'); |
| await wait(); |
|
|
| expect(mockCommandCompletion.handleAutocomplete).toHaveBeenCalledWith(0); |
| unmount(); |
| }); |
|
|
| it('should append a sub-command when the parent command is already complete', async () => { |
| |
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [ |
| { label: 'show', value: 'show' }, |
| { label: 'add', value: 'add' }, |
| ], |
| activeSuggestionIndex: 1, |
| }); |
| props.buffer.setText('/memory '); |
|
|
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\t'); |
| await wait(); |
|
|
| expect(mockCommandCompletion.handleAutocomplete).toHaveBeenCalledWith(1); |
| unmount(); |
| }); |
|
|
| it('should handle the "backspace" edge case correctly', async () => { |
| |
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [ |
| { label: 'show', value: 'show' }, |
| { label: 'add', value: 'add' }, |
| ], |
| activeSuggestionIndex: 0, |
| }); |
| |
| props.buffer.setText('/memory'); |
|
|
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\t'); |
| await wait(); |
|
|
| |
| expect(mockCommandCompletion.handleAutocomplete).toHaveBeenCalledWith(0); |
| unmount(); |
| }); |
|
|
| it('should complete a partial argument for a command', async () => { |
| |
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [{ label: 'fix-foo', value: 'fix-foo' }], |
| activeSuggestionIndex: 0, |
| }); |
| props.buffer.setText('/chat resume fi-'); |
|
|
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\t'); |
| await wait(); |
|
|
| expect(mockCommandCompletion.handleAutocomplete).toHaveBeenCalledWith(0); |
| unmount(); |
| }); |
|
|
| it('should autocomplete on Enter when suggestions are active, without submitting', async () => { |
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [{ label: 'memory', value: 'memory' }], |
| activeSuggestionIndex: 0, |
| }); |
| props.buffer.setText('/mem'); |
|
|
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\r'); |
| await wait(); |
|
|
| |
| expect(mockCommandCompletion.handleAutocomplete).toHaveBeenCalledWith(0); |
|
|
| expect(props.onSubmit).not.toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should complete a command based on its altNames', async () => { |
| props.slashCommands = [ |
| { |
| name: 'help', |
| altNames: ['?'], |
| kind: CommandKind.BUILT_IN, |
| description: '...', |
| }, |
| ]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [{ label: 'help', value: 'help' }], |
| activeSuggestionIndex: 0, |
| }); |
| props.buffer.setText('/?'); |
|
|
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\t'); |
| await wait(); |
|
|
| expect(mockCommandCompletion.handleAutocomplete).toHaveBeenCalledWith(0); |
| unmount(); |
| }); |
|
|
| it('should not submit on Enter when the buffer is empty or only contains whitespace', async () => { |
| props.buffer.setText(' '); |
|
|
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\r'); |
| await wait(); |
|
|
| expect(props.onSubmit).not.toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should submit directly on Enter when isPerfectMatch is true', async () => { |
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: false, |
| isPerfectMatch: true, |
| }); |
| props.buffer.setText('/clear'); |
|
|
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\r'); |
| await wait(); |
|
|
| expect(props.onSubmit).toHaveBeenCalledWith('/clear'); |
| unmount(); |
| }); |
|
|
| it('should submit directly on Enter when a complete leaf command is typed', async () => { |
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: false, |
| isPerfectMatch: false, |
| }); |
| props.buffer.setText('/clear'); |
|
|
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\r'); |
| await wait(); |
|
|
| expect(props.onSubmit).toHaveBeenCalledWith('/clear'); |
| unmount(); |
| }); |
|
|
| it('should autocomplete an @-path on Enter without submitting', async () => { |
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [{ label: 'index.ts', value: 'index.ts' }], |
| activeSuggestionIndex: 0, |
| }); |
| props.buffer.setText('@src/components/'); |
|
|
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\r'); |
| await wait(); |
|
|
| expect(mockCommandCompletion.handleAutocomplete).toHaveBeenCalledWith(0); |
| expect(props.onSubmit).not.toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should add a newline on enter when the line ends with a backslash', async () => { |
| |
| mockBuffer.text = 'first line\\'; |
| mockBuffer.cursor = [0, 11]; |
| mockBuffer.lines = ['first line\\']; |
|
|
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\r'); |
| await wait(); |
|
|
| expect(props.onSubmit).not.toHaveBeenCalled(); |
| expect(props.buffer.backspace).toHaveBeenCalled(); |
| expect(props.buffer.newline).toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should clear the buffer on Ctrl+C if it has text', async () => { |
| props.buffer.setText('some text to clear'); |
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\x03'); |
| await wait(); |
|
|
| expect(props.buffer.setText).toHaveBeenCalledWith(''); |
| expect(mockCommandCompletion.resetCompletionState).toHaveBeenCalled(); |
| expect(props.onSubmit).not.toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should NOT clear the buffer on Ctrl+C if it is empty', async () => { |
| props.buffer.text = ''; |
| const { stdin, unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| stdin.write('\x03'); |
| await wait(); |
|
|
| expect(props.buffer.setText).not.toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| describe('cursor-based completion trigger', () => { |
| it('should trigger completion when cursor is after @ without spaces', async () => { |
| |
| mockBuffer.text = '@src/components'; |
| mockBuffer.lines = ['@src/components']; |
| mockBuffer.cursor = [0, 15]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [{ label: 'Button.tsx', value: 'Button.tsx' }], |
| }); |
|
|
| const { unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| |
| expect(mockedUseCommandCompletion).toHaveBeenCalledWith( |
| mockBuffer, |
| ['/test/project/src'], |
| path.join('test', 'project', 'src'), |
| mockSlashCommands, |
| mockCommandContext, |
| false, |
| expect.any(Object), |
| ); |
|
|
| unmount(); |
| }); |
|
|
| it('should trigger completion when cursor is after / without spaces', async () => { |
| mockBuffer.text = '/memory'; |
| mockBuffer.lines = ['/memory']; |
| mockBuffer.cursor = [0, 7]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [{ label: 'show', value: 'show' }], |
| }); |
|
|
| const { unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| expect(mockedUseCommandCompletion).toHaveBeenCalledWith( |
| mockBuffer, |
| ['/test/project/src'], |
| path.join('test', 'project', 'src'), |
| mockSlashCommands, |
| mockCommandContext, |
| false, |
| expect.any(Object), |
| ); |
|
|
| unmount(); |
| }); |
|
|
| it('should NOT trigger completion when cursor is after space following @', async () => { |
| mockBuffer.text = '@src/file.ts hello'; |
| mockBuffer.lines = ['@src/file.ts hello']; |
| mockBuffer.cursor = [0, 18]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: false, |
| suggestions: [], |
| }); |
|
|
| const { unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| expect(mockedUseCommandCompletion).toHaveBeenCalledWith( |
| mockBuffer, |
| ['/test/project/src'], |
| path.join('test', 'project', 'src'), |
| mockSlashCommands, |
| mockCommandContext, |
| false, |
| expect.any(Object), |
| ); |
|
|
| unmount(); |
| }); |
|
|
| it('should NOT trigger completion when cursor is after space following /', async () => { |
| mockBuffer.text = '/memory add'; |
| mockBuffer.lines = ['/memory add']; |
| mockBuffer.cursor = [0, 11]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: false, |
| suggestions: [], |
| }); |
|
|
| const { unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| expect(mockedUseCommandCompletion).toHaveBeenCalledWith( |
| mockBuffer, |
| ['/test/project/src'], |
| path.join('test', 'project', 'src'), |
| mockSlashCommands, |
| mockCommandContext, |
| false, |
| expect.any(Object), |
| ); |
|
|
| unmount(); |
| }); |
|
|
| it('should NOT trigger completion when cursor is not after @ or /', async () => { |
| mockBuffer.text = 'hello world'; |
| mockBuffer.lines = ['hello world']; |
| mockBuffer.cursor = [0, 5]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: false, |
| suggestions: [], |
| }); |
|
|
| const { unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| expect(mockedUseCommandCompletion).toHaveBeenCalledWith( |
| mockBuffer, |
| ['/test/project/src'], |
| path.join('test', 'project', 'src'), |
| mockSlashCommands, |
| mockCommandContext, |
| false, |
| expect.any(Object), |
| ); |
|
|
| unmount(); |
| }); |
|
|
| it('should handle multiline text correctly', async () => { |
| mockBuffer.text = 'first line\n/memory'; |
| mockBuffer.lines = ['first line', '/memory']; |
| mockBuffer.cursor = [1, 7]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: false, |
| suggestions: [], |
| }); |
|
|
| const { unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| |
| expect(mockedUseCommandCompletion).toHaveBeenCalledWith( |
| mockBuffer, |
| ['/test/project/src'], |
| path.join('test', 'project', 'src'), |
| mockSlashCommands, |
| mockCommandContext, |
| false, |
| expect.any(Object), |
| ); |
|
|
| unmount(); |
| }); |
|
|
| it('should handle single line slash command correctly', async () => { |
| mockBuffer.text = '/memory'; |
| mockBuffer.lines = ['/memory']; |
| mockBuffer.cursor = [0, 7]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [{ label: 'show', value: 'show' }], |
| }); |
|
|
| const { unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| expect(mockedUseCommandCompletion).toHaveBeenCalledWith( |
| mockBuffer, |
| ['/test/project/src'], |
| path.join('test', 'project', 'src'), |
| mockSlashCommands, |
| mockCommandContext, |
| false, |
| expect.any(Object), |
| ); |
|
|
| unmount(); |
| }); |
|
|
| it('should handle Unicode characters (emojis) correctly in paths', async () => { |
| |
| mockBuffer.text = '@src/file👍.txt'; |
| mockBuffer.lines = ['@src/file👍.txt']; |
| mockBuffer.cursor = [0, 14]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [{ label: 'file👍.txt', value: 'file👍.txt' }], |
| }); |
|
|
| const { unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| expect(mockedUseCommandCompletion).toHaveBeenCalledWith( |
| mockBuffer, |
| ['/test/project/src'], |
| path.join('test', 'project', 'src'), |
| mockSlashCommands, |
| mockCommandContext, |
| false, |
| expect.any(Object), |
| ); |
|
|
| unmount(); |
| }); |
|
|
| it('should handle Unicode characters with spaces after them', async () => { |
| |
| mockBuffer.text = '@src/file👍.txt hello'; |
| mockBuffer.lines = ['@src/file👍.txt hello']; |
| mockBuffer.cursor = [0, 20]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: false, |
| suggestions: [], |
| }); |
|
|
| const { unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| expect(mockedUseCommandCompletion).toHaveBeenCalledWith( |
| mockBuffer, |
| ['/test/project/src'], |
| path.join('test', 'project', 'src'), |
| mockSlashCommands, |
| mockCommandContext, |
| false, |
| expect.any(Object), |
| ); |
|
|
| unmount(); |
| }); |
|
|
| it('should handle escaped spaces in paths correctly', async () => { |
| |
| mockBuffer.text = '@src/my\\ file.txt'; |
| mockBuffer.lines = ['@src/my\\ file.txt']; |
| mockBuffer.cursor = [0, 16]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [{ label: 'my file.txt', value: 'my file.txt' }], |
| }); |
|
|
| const { unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| expect(mockedUseCommandCompletion).toHaveBeenCalledWith( |
| mockBuffer, |
| ['/test/project/src'], |
| path.join('test', 'project', 'src'), |
| mockSlashCommands, |
| mockCommandContext, |
| false, |
| expect.any(Object), |
| ); |
|
|
| unmount(); |
| }); |
|
|
| it('should NOT trigger completion after unescaped space following escaped space', async () => { |
| |
| mockBuffer.text = '@path/my\\ file.txt hello'; |
| mockBuffer.lines = ['@path/my\\ file.txt hello']; |
| mockBuffer.cursor = [0, 24]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: false, |
| suggestions: [], |
| }); |
|
|
| const { unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| expect(mockedUseCommandCompletion).toHaveBeenCalledWith( |
| mockBuffer, |
| ['/test/project/src'], |
| path.join('test', 'project', 'src'), |
| mockSlashCommands, |
| mockCommandContext, |
| false, |
| expect.any(Object), |
| ); |
|
|
| unmount(); |
| }); |
|
|
| it('should handle multiple escaped spaces in paths', async () => { |
| |
| mockBuffer.text = '@docs/my\\ long\\ file\\ name.md'; |
| mockBuffer.lines = ['@docs/my\\ long\\ file\\ name.md']; |
| mockBuffer.cursor = [0, 29]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [ |
| { label: 'my long file name.md', value: 'my long file name.md' }, |
| ], |
| }); |
|
|
| const { unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| expect(mockedUseCommandCompletion).toHaveBeenCalledWith( |
| mockBuffer, |
| ['/test/project/src'], |
| path.join('test', 'project', 'src'), |
| mockSlashCommands, |
| mockCommandContext, |
| false, |
| expect.any(Object), |
| ); |
|
|
| unmount(); |
| }); |
|
|
| it('should handle escaped spaces in slash commands', async () => { |
| |
| mockBuffer.text = '/memory\\ test'; |
| mockBuffer.lines = ['/memory\\ test']; |
| mockBuffer.cursor = [0, 13]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [{ label: 'test-command', value: 'test-command' }], |
| }); |
|
|
| const { unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| expect(mockedUseCommandCompletion).toHaveBeenCalledWith( |
| mockBuffer, |
| ['/test/project/src'], |
| path.join('test', 'project', 'src'), |
| mockSlashCommands, |
| mockCommandContext, |
| false, |
| expect.any(Object), |
| ); |
|
|
| unmount(); |
| }); |
|
|
| it('should handle Unicode characters with escaped spaces', async () => { |
| |
| mockBuffer.text = '@' + path.join('files', 'emoji\\ 👍\\ test.txt'); |
| mockBuffer.lines = ['@' + path.join('files', 'emoji\\ 👍\\ test.txt')]; |
| mockBuffer.cursor = [0, 25]; |
|
|
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [ |
| { label: 'emoji 👍 test.txt', value: 'emoji 👍 test.txt' }, |
| ], |
| }); |
|
|
| const { unmount } = renderWithProviders(<InputPrompt {...props} />); |
| await wait(); |
|
|
| expect(mockedUseCommandCompletion).toHaveBeenCalledWith( |
| mockBuffer, |
| ['/test/project/src'], |
| path.join('test', 'project', 'src'), |
| mockSlashCommands, |
| mockCommandContext, |
| false, |
| expect.any(Object), |
| ); |
|
|
| unmount(); |
| }); |
| }); |
|
|
| describe('vim mode', () => { |
| it('should not call buffer.handleInput when vim mode is enabled and vim handles the input', async () => { |
| props.vimModeEnabled = true; |
| props.vimHandleInput = vi.fn().mockReturnValue(true); |
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('i'); |
| await wait(); |
|
|
| expect(props.vimHandleInput).toHaveBeenCalled(); |
| expect(mockBuffer.handleInput).not.toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should call buffer.handleInput when vim mode is enabled but vim does not handle the input', async () => { |
| props.vimModeEnabled = true; |
| props.vimHandleInput = vi.fn().mockReturnValue(false); |
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('i'); |
| await wait(); |
|
|
| expect(props.vimHandleInput).toHaveBeenCalled(); |
| expect(mockBuffer.handleInput).toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should call handleInput when vim mode is disabled', async () => { |
| |
| props.vimHandleInput = vi.fn().mockReturnValue(false); |
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('i'); |
| await wait(); |
|
|
| expect(props.vimHandleInput).toHaveBeenCalled(); |
| expect(mockBuffer.handleInput).toHaveBeenCalled(); |
| unmount(); |
| }); |
| }); |
|
|
| describe('unfocused paste', () => { |
| it('should handle bracketed paste when not focused', async () => { |
| props.focus = false; |
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('\x1B[200~pasted text\x1B[201~'); |
| await wait(); |
|
|
| expect(mockBuffer.handleInput).toHaveBeenCalledWith( |
| expect.objectContaining({ |
| paste: true, |
| sequence: 'pasted text', |
| }), |
| ); |
| unmount(); |
| }); |
|
|
| it('should ignore regular keypresses when not focused', async () => { |
| props.focus = false; |
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('a'); |
| await wait(); |
|
|
| expect(mockBuffer.handleInput).not.toHaveBeenCalled(); |
| unmount(); |
| }); |
| }); |
|
|
| describe('multiline paste', () => { |
| it.each([ |
| { |
| description: 'with \n newlines', |
| pastedText: 'This \n is \n a \n multiline \n paste.', |
| }, |
| { |
| description: 'with extra slashes before \n newlines', |
| pastedText: 'This \\\n is \\\n a \\\n multiline \\\n paste.', |
| }, |
| { |
| description: 'with \r\n newlines', |
| pastedText: 'This\r\nis\r\na\r\nmultiline\r\npaste.', |
| }, |
| ])('should handle multiline paste $description', async ({ pastedText }) => { |
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| |
| stdin.write(`\x1b[200~${pastedText}\x1b[201~`); |
| await wait(); |
|
|
| |
| expect(props.buffer.handleInput).toHaveBeenCalledTimes(1); |
| expect(props.buffer.handleInput).toHaveBeenCalledWith( |
| expect.objectContaining({ |
| paste: true, |
| sequence: pastedText, |
| }), |
| ); |
|
|
| unmount(); |
| }); |
| }); |
|
|
| describe('enhanced input UX - double ESC clear functionality', () => { |
| it('should clear buffer on second ESC press', async () => { |
| const onEscapePromptChange = vi.fn(); |
| props.onEscapePromptChange = onEscapePromptChange; |
| props.buffer.setText('text to clear'); |
|
|
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('\x1B'); |
| await wait(); |
|
|
| stdin.write('\x1B'); |
| await wait(); |
|
|
| expect(props.buffer.setText).toHaveBeenCalledWith(''); |
| expect(mockCommandCompletion.resetCompletionState).toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should reset escape state on any non-ESC key', async () => { |
| const onEscapePromptChange = vi.fn(); |
| props.onEscapePromptChange = onEscapePromptChange; |
| props.buffer.setText('some text'); |
|
|
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
|
|
| stdin.write('\x1B'); |
|
|
| await waitFor(() => { |
| expect(onEscapePromptChange).toHaveBeenCalledWith(true); |
| }); |
|
|
| stdin.write('a'); |
|
|
| await waitFor(() => { |
| expect(onEscapePromptChange).toHaveBeenCalledWith(false); |
| }); |
| unmount(); |
| }); |
|
|
| it('should handle ESC in shell mode by disabling shell mode', async () => { |
| props.shellModeActive = true; |
|
|
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('\x1B'); |
| await wait(); |
|
|
| expect(props.setShellModeActive).toHaveBeenCalledWith(false); |
| unmount(); |
| }); |
|
|
| it('should handle ESC when completion suggestions are showing', async () => { |
| mockedUseCommandCompletion.mockReturnValue({ |
| ...mockCommandCompletion, |
| showSuggestions: true, |
| suggestions: [{ label: 'suggestion', value: 'suggestion' }], |
| }); |
|
|
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('\x1B'); |
| await wait(); |
|
|
| expect(mockCommandCompletion.resetCompletionState).toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should not call onEscapePromptChange when not provided', async () => { |
| props.onEscapePromptChange = undefined; |
| props.buffer.setText('some text'); |
|
|
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('\x1B'); |
| await wait(); |
|
|
| unmount(); |
| }); |
|
|
| it('should not interfere with existing keyboard shortcuts', async () => { |
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('\x0C'); |
| await wait(); |
|
|
| expect(props.onClearScreen).toHaveBeenCalled(); |
|
|
| stdin.write('\x01'); |
| await wait(); |
|
|
| expect(props.buffer.move).toHaveBeenCalledWith('home'); |
| unmount(); |
| }); |
| }); |
|
|
| describe('reverse search', () => { |
| beforeEach(async () => { |
| props.shellModeActive = true; |
|
|
| vi.mocked(useShellHistory).mockReturnValue({ |
| history: ['echo hello', 'echo world', 'ls'], |
| getPreviousCommand: vi.fn(), |
| getNextCommand: vi.fn(), |
| addCommandToHistory: vi.fn(), |
| resetHistoryPosition: vi.fn(), |
| }); |
| }); |
|
|
| it('invokes reverse search on Ctrl+R', async () => { |
| const { stdin, stdout, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('\x12'); |
| await wait(); |
|
|
| const frame = stdout.lastFrame(); |
| expect(frame).toContain('(r:)'); |
| expect(frame).toContain('echo hello'); |
| expect(frame).toContain('echo world'); |
| expect(frame).toContain('ls'); |
|
|
| unmount(); |
| }); |
|
|
| it('resets reverse search state on Escape', async () => { |
| const { stdin, stdout, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('\x12'); |
| await wait(); |
| stdin.write('\x1B'); |
|
|
| await waitFor(() => { |
| expect(stdout.lastFrame()).not.toContain('(r:)'); |
| }); |
|
|
| expect(stdout.lastFrame()).not.toContain('echo hello'); |
|
|
| unmount(); |
| }); |
|
|
| it('completes the highlighted entry on Tab and exits reverse-search', async () => { |
| const { stdin, stdout, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
|
|
| |
| act(() => { |
| stdin.write('\x12'); |
| }); |
| await wait(); |
|
|
| |
| expect(stdout.lastFrame()).toContain('(r:)'); |
|
|
| |
| act(() => { |
| stdin.write('\t'); |
| }); |
|
|
| await waitFor( |
| () => { |
| expect(stdout.lastFrame()).not.toContain('(r:)'); |
| }, |
| { timeout: 5000 }, |
| ); |
|
|
| expect(props.buffer.setText).toHaveBeenCalledWith('echo hello'); |
| unmount(); |
| }); |
|
|
| it('submits the highlighted entry on Enter and exits reverse-search', async () => { |
| const { stdin, stdout, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
|
|
| act(() => { |
| stdin.write('\x12'); |
| }); |
| await wait(); |
|
|
| expect(stdout.lastFrame()).toContain('(r:)'); |
|
|
| act(() => { |
| stdin.write('\r'); |
| }); |
|
|
| await waitFor(() => { |
| expect(stdout.lastFrame()).not.toContain('(r:)'); |
| }); |
|
|
| expect(props.onSubmit).toHaveBeenCalledWith('echo hello'); |
| unmount(); |
| }); |
|
|
| it('text and cursor position should be restored after reverse search', async () => { |
| props.buffer.setText('initial text'); |
| props.buffer.cursor = [0, 3]; |
| const { stdin, stdout, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| stdin.write('\x12'); |
| await wait(); |
| expect(stdout.lastFrame()).toContain('(r:)'); |
| stdin.write('\x1B'); |
|
|
| await waitFor(() => { |
| expect(stdout.lastFrame()).not.toContain('(r:)'); |
| }); |
| expect(props.buffer.text).toBe('initial text'); |
| expect(props.buffer.cursor).toEqual([0, 3]); |
|
|
| unmount(); |
| }); |
| }); |
|
|
| describe('Ctrl+E keyboard shortcut', () => { |
| it('should move cursor to end of current line in multiline input', async () => { |
| props.buffer.text = 'line 1\nline 2\nline 3'; |
| props.buffer.cursor = [1, 2]; |
| props.buffer.lines = ['line 1', 'line 2', 'line 3']; |
|
|
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('\x05'); |
| await wait(); |
|
|
| expect(props.buffer.move).toHaveBeenCalledWith('end'); |
| expect(props.buffer.moveToOffset).not.toHaveBeenCalled(); |
| unmount(); |
| }); |
|
|
| it('should move cursor to end of current line for single line input', async () => { |
| props.buffer.text = 'single line text'; |
| props.buffer.cursor = [0, 5]; |
| props.buffer.lines = ['single line text']; |
|
|
| const { stdin, unmount } = renderWithProviders( |
| <InputPrompt {...props} />, |
| ); |
| await wait(); |
|
|
| stdin.write('\x05'); |
| await wait(); |
|
|
| expect(props.buffer.move).toHaveBeenCalledWith('end'); |
| expect(props.buffer.moveToOffset).not.toHaveBeenCalled(); |
| unmount(); |
| }); |
| }); |
| }); |
|
|