| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | import type { Mock, MockInstance } from 'vitest'; |
| | import { describe, it, expect, vi, beforeEach } from 'vitest'; |
| | import { renderHook, act, waitFor } from '@testing-library/react'; |
| | import { useGeminiStream } from './useGeminiStream.js'; |
| | import { useKeypress } from './useKeypress.js'; |
| | import * as atCommandProcessor from './atCommandProcessor.js'; |
| | import type { |
| | TrackedToolCall, |
| | TrackedCompletedToolCall, |
| | TrackedExecutingToolCall, |
| | TrackedCancelledToolCall, |
| | } from './useReactToolScheduler.js'; |
| | import { useReactToolScheduler } from './useReactToolScheduler.js'; |
| | import type { |
| | Config, |
| | EditorType, |
| | GeminiClient, |
| | AnyToolInvocation, |
| | } from '@google/gemini-cli-core'; |
| | import { |
| | ApprovalMode, |
| | AuthType, |
| | GeminiEventType as ServerGeminiEventType, |
| | ToolErrorType, |
| | } from '@google/gemini-cli-core'; |
| | import type { Part, PartListUnion } from '@google/genai'; |
| | import type { UseHistoryManagerReturn } from './useHistoryManager.js'; |
| | import type { HistoryItem, SlashCommandProcessorResult } from '../types.js'; |
| | import { MessageType, StreamingState } from '../types.js'; |
| | import type { LoadedSettings } from '../../config/settings.js'; |
| |
|
| | |
| | const mockSendMessageStream = vi |
| | .fn() |
| | .mockReturnValue((async function* () {})()); |
| | const mockStartChat = vi.fn(); |
| |
|
| | const MockedGeminiClientClass = vi.hoisted(() => |
| | vi.fn().mockImplementation(function (this: any, _config: any) { |
| | |
| | this.startChat = mockStartChat; |
| | this.sendMessageStream = mockSendMessageStream; |
| | this.addHistory = vi.fn(); |
| | }), |
| | ); |
| |
|
| | const MockedUserPromptEvent = vi.hoisted(() => |
| | vi.fn().mockImplementation(() => {}), |
| | ); |
| | const mockParseAndFormatApiError = vi.hoisted(() => vi.fn()); |
| |
|
| | vi.mock('@google/gemini-cli-core', async (importOriginal) => { |
| | const actualCoreModule = (await importOriginal()) as any; |
| | return { |
| | ...actualCoreModule, |
| | GitService: vi.fn(), |
| | GeminiClient: MockedGeminiClientClass, |
| | UserPromptEvent: MockedUserPromptEvent, |
| | parseAndFormatApiError: mockParseAndFormatApiError, |
| | }; |
| | }); |
| |
|
| | const mockUseReactToolScheduler = useReactToolScheduler as Mock; |
| | vi.mock('./useReactToolScheduler.js', async (importOriginal) => { |
| | const actualSchedulerModule = (await importOriginal()) as any; |
| | return { |
| | ...(actualSchedulerModule || {}), |
| | useReactToolScheduler: vi.fn(), |
| | }; |
| | }); |
| |
|
| | vi.mock('./useKeypress.js', () => ({ |
| | useKeypress: vi.fn(), |
| | })); |
| |
|
| | vi.mock('./shellCommandProcessor.js', () => ({ |
| | useShellCommandProcessor: vi.fn().mockReturnValue({ |
| | handleShellCommand: vi.fn(), |
| | }), |
| | })); |
| |
|
| | vi.mock('./atCommandProcessor.js'); |
| |
|
| | vi.mock('../utils/markdownUtilities.js', () => ({ |
| | findLastSafeSplitPoint: vi.fn((s: string) => s.length), |
| | })); |
| |
|
| | vi.mock('./useStateAndRef.js', () => ({ |
| | useStateAndRef: vi.fn((initial) => { |
| | let val = initial; |
| | const ref = { current: val }; |
| | const setVal = vi.fn((updater) => { |
| | if (typeof updater === 'function') { |
| | val = updater(val); |
| | } else { |
| | val = updater; |
| | } |
| | ref.current = val; |
| | }); |
| | return [ref, setVal]; |
| | }), |
| | })); |
| |
|
| | vi.mock('./useLogger.js', () => ({ |
| | useLogger: vi.fn().mockReturnValue({ |
| | logMessage: vi.fn().mockResolvedValue(undefined), |
| | }), |
| | })); |
| |
|
| | const mockStartNewPrompt = vi.fn(); |
| | const mockAddUsage = vi.fn(); |
| | vi.mock('../contexts/SessionContext.js', () => ({ |
| | useSessionStats: vi.fn(() => ({ |
| | startNewPrompt: mockStartNewPrompt, |
| | addUsage: mockAddUsage, |
| | getPromptCount: vi.fn(() => 5), |
| | })), |
| | })); |
| |
|
| | vi.mock('./slashCommandProcessor.js', () => ({ |
| | handleSlashCommand: vi.fn().mockReturnValue(false), |
| | })); |
| |
|
| | |
| |
|
| | |
| | describe('useGeminiStream', () => { |
| | let mockAddItem: Mock; |
| | let mockConfig: Config; |
| | let mockOnDebugMessage: Mock; |
| | let mockHandleSlashCommand: Mock; |
| | let mockScheduleToolCalls: Mock; |
| | let mockCancelAllToolCalls: Mock; |
| | let mockMarkToolsAsSubmitted: Mock; |
| | let handleAtCommandSpy: MockInstance; |
| |
|
| | beforeEach(() => { |
| | vi.clearAllMocks(); |
| |
|
| | mockAddItem = vi.fn(); |
| | |
| | const mockGetGeminiClient = vi.fn().mockImplementation(() => { |
| | |
| | |
| | const clientInstance = new MockedGeminiClientClass(mockConfig); |
| | return clientInstance; |
| | }); |
| |
|
| | const contentGeneratorConfig = { |
| | model: 'test-model', |
| | apiKey: 'test-key', |
| | vertexai: false, |
| | authType: AuthType.USE_GEMINI, |
| | }; |
| |
|
| | mockConfig = { |
| | apiKey: 'test-api-key', |
| | model: 'gemini-pro', |
| | sandbox: false, |
| | targetDir: '/test/dir', |
| | debugMode: false, |
| | question: undefined, |
| | fullContext: false, |
| | coreTools: [], |
| | toolDiscoveryCommand: undefined, |
| | toolCallCommand: undefined, |
| | mcpServerCommand: undefined, |
| | mcpServers: undefined, |
| | userAgent: 'test-agent', |
| | userMemory: '', |
| | geminiMdFileCount: 0, |
| | alwaysSkipModificationConfirmation: false, |
| | vertexai: false, |
| | showMemoryUsage: false, |
| | contextFileName: undefined, |
| | getToolRegistry: vi.fn( |
| | () => ({ getToolSchemaList: vi.fn(() => []) }) as any, |
| | ), |
| | getProjectRoot: vi.fn(() => '/test/dir'), |
| | getCheckpointingEnabled: vi.fn(() => false), |
| | getGeminiClient: mockGetGeminiClient, |
| | getApprovalMode: () => ApprovalMode.DEFAULT, |
| | getUsageStatisticsEnabled: () => true, |
| | getDebugMode: () => false, |
| | addHistory: vi.fn(), |
| | getSessionId() { |
| | return 'test-session-id'; |
| | }, |
| | setQuotaErrorOccurred: vi.fn(), |
| | getQuotaErrorOccurred: vi.fn(() => false), |
| | getModel: vi.fn(() => 'gemini-2.5-pro'), |
| | getContentGeneratorConfig: vi |
| | .fn() |
| | .mockReturnValue(contentGeneratorConfig), |
| | } as unknown as Config; |
| | mockOnDebugMessage = vi.fn(); |
| | mockHandleSlashCommand = vi.fn().mockResolvedValue(false); |
| |
|
| | |
| | mockScheduleToolCalls = vi.fn(); |
| | mockCancelAllToolCalls = vi.fn(); |
| | mockMarkToolsAsSubmitted = vi.fn(); |
| |
|
| | |
| | mockUseReactToolScheduler.mockReturnValue([ |
| | [], |
| | mockScheduleToolCalls, |
| | mockCancelAllToolCalls, |
| | mockMarkToolsAsSubmitted, |
| | ]); |
| |
|
| | |
| | |
| | mockStartChat.mockClear().mockResolvedValue({ |
| | sendMessageStream: mockSendMessageStream, |
| | } as unknown as any); |
| | mockSendMessageStream |
| | .mockClear() |
| | .mockReturnValue((async function* () {})()); |
| | handleAtCommandSpy = vi.spyOn(atCommandProcessor, 'handleAtCommand'); |
| | }); |
| |
|
| | const mockLoadedSettings: LoadedSettings = { |
| | merged: { preferredEditor: 'vscode' }, |
| | user: { path: '/user/settings.json', settings: {} }, |
| | workspace: { path: '/workspace/.gemini/settings.json', settings: {} }, |
| | errors: [], |
| | forScope: vi.fn(), |
| | setValue: vi.fn(), |
| | } as unknown as LoadedSettings; |
| |
|
| | const renderTestHook = ( |
| | initialToolCalls: TrackedToolCall[] = [], |
| | geminiClient?: any, |
| | ) => { |
| | let currentToolCalls = initialToolCalls; |
| | const setToolCalls = (newToolCalls: TrackedToolCall[]) => { |
| | currentToolCalls = newToolCalls; |
| | }; |
| |
|
| | mockUseReactToolScheduler.mockImplementation(() => [ |
| | currentToolCalls, |
| | mockScheduleToolCalls, |
| | mockCancelAllToolCalls, |
| | mockMarkToolsAsSubmitted, |
| | ]); |
| |
|
| | const client = geminiClient || mockConfig.getGeminiClient(); |
| |
|
| | const { result, rerender } = renderHook( |
| | (props: { |
| | client: any; |
| | history: HistoryItem[]; |
| | addItem: UseHistoryManagerReturn['addItem']; |
| | config: Config; |
| | onDebugMessage: (message: string) => void; |
| | handleSlashCommand: ( |
| | cmd: PartListUnion, |
| | ) => Promise<SlashCommandProcessorResult | false>; |
| | shellModeActive: boolean; |
| | loadedSettings: LoadedSettings; |
| | toolCalls?: TrackedToolCall[]; // Allow passing updated toolCalls |
| | }) => { |
| | |
| | if (props.toolCalls) { |
| | setToolCalls(props.toolCalls); |
| | } |
| | return useGeminiStream( |
| | props.client, |
| | props.history, |
| | props.addItem, |
| | props.config, |
| | props.loadedSettings, |
| | props.onDebugMessage, |
| | props.handleSlashCommand, |
| | props.shellModeActive, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | () => Promise.resolve(), |
| | false, |
| | () => {}, |
| | () => {}, |
| | () => {}, |
| | ); |
| | }, |
| | { |
| | initialProps: { |
| | client, |
| | history: [], |
| | addItem: mockAddItem as unknown as UseHistoryManagerReturn['addItem'], |
| | config: mockConfig, |
| | onDebugMessage: mockOnDebugMessage, |
| | handleSlashCommand: mockHandleSlashCommand as unknown as ( |
| | cmd: PartListUnion, |
| | ) => Promise<SlashCommandProcessorResult | false>, |
| | shellModeActive: false, |
| | loadedSettings: mockLoadedSettings, |
| | toolCalls: initialToolCalls, |
| | }, |
| | }, |
| | ); |
| | return { |
| | result, |
| | rerender, |
| | mockMarkToolsAsSubmitted, |
| | mockSendMessageStream, |
| | client, |
| | }; |
| | }; |
| |
|
| | it('should not submit tool responses if not all tool calls are completed', () => { |
| | const toolCalls: TrackedToolCall[] = [ |
| | { |
| | request: { |
| | callId: 'call1', |
| | name: 'tool1', |
| | args: {}, |
| | isClientInitiated: false, |
| | prompt_id: 'prompt-id-1', |
| | }, |
| | status: 'success', |
| | responseSubmittedToGemini: false, |
| | response: { |
| | callId: 'call1', |
| | responseParts: [{ text: 'tool 1 response' }], |
| | error: undefined, |
| | errorType: undefined, |
| | resultDisplay: 'Tool 1 success display', |
| | }, |
| | tool: { |
| | name: 'tool1', |
| | displayName: 'tool1', |
| | description: 'desc1', |
| | build: vi.fn(), |
| | } as any, |
| | invocation: { |
| | getDescription: () => `Mock description`, |
| | } as unknown as AnyToolInvocation, |
| | startTime: Date.now(), |
| | endTime: Date.now(), |
| | } as TrackedCompletedToolCall, |
| | { |
| | request: { |
| | callId: 'call2', |
| | name: 'tool2', |
| | args: {}, |
| | prompt_id: 'prompt-id-1', |
| | }, |
| | status: 'executing', |
| | responseSubmittedToGemini: false, |
| | tool: { |
| | name: 'tool2', |
| | displayName: 'tool2', |
| | description: 'desc2', |
| | build: vi.fn(), |
| | } as any, |
| | invocation: { |
| | getDescription: () => `Mock description`, |
| | } as unknown as AnyToolInvocation, |
| | startTime: Date.now(), |
| | liveOutput: '...', |
| | } as TrackedExecutingToolCall, |
| | ]; |
| |
|
| | const { mockMarkToolsAsSubmitted, mockSendMessageStream } = |
| | renderTestHook(toolCalls); |
| |
|
| | |
| | |
| |
|
| | expect(mockMarkToolsAsSubmitted).not.toHaveBeenCalled(); |
| | expect(mockSendMessageStream).not.toHaveBeenCalled(); |
| | }); |
| |
|
| | it('should submit tool responses when all tool calls are completed and ready', async () => { |
| | const toolCall1ResponseParts: Part[] = [{ text: 'tool 1 final response' }]; |
| | const toolCall2ResponseParts: Part[] = [{ text: 'tool 2 final response' }]; |
| | const completedToolCalls: TrackedToolCall[] = [ |
| | { |
| | request: { |
| | callId: 'call1', |
| | name: 'tool1', |
| | args: {}, |
| | isClientInitiated: false, |
| | prompt_id: 'prompt-id-2', |
| | }, |
| | status: 'success', |
| | responseSubmittedToGemini: false, |
| | response: { |
| | callId: 'call1', |
| | responseParts: toolCall1ResponseParts, |
| | errorType: undefined, |
| | }, |
| | tool: { |
| | displayName: 'MockTool', |
| | }, |
| | invocation: { |
| | getDescription: () => `Mock description`, |
| | } as unknown as AnyToolInvocation, |
| | } as TrackedCompletedToolCall, |
| | { |
| | request: { |
| | callId: 'call2', |
| | name: 'tool2', |
| | args: {}, |
| | isClientInitiated: false, |
| | prompt_id: 'prompt-id-2', |
| | }, |
| | status: 'error', |
| | responseSubmittedToGemini: false, |
| | response: { |
| | callId: 'call2', |
| | responseParts: toolCall2ResponseParts, |
| | errorType: ToolErrorType.UNHANDLED_EXCEPTION, |
| | }, |
| | } as TrackedCompletedToolCall, |
| | ]; |
| |
|
| | |
| | let capturedOnComplete: |
| | | ((completedTools: TrackedToolCall[]) => Promise<void>) |
| | | null = null; |
| |
|
| | mockUseReactToolScheduler.mockImplementation((onComplete) => { |
| | capturedOnComplete = onComplete; |
| | return [[], mockScheduleToolCalls, mockMarkToolsAsSubmitted]; |
| | }); |
| |
|
| | renderHook(() => |
| | useGeminiStream( |
| | new MockedGeminiClientClass(mockConfig), |
| | [], |
| | mockAddItem, |
| | mockConfig, |
| | mockLoadedSettings, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | () => Promise.resolve(), |
| | false, |
| | () => {}, |
| | () => {}, |
| | () => {}, |
| | ), |
| | ); |
| |
|
| | |
| | await act(async () => { |
| | if (capturedOnComplete) { |
| | await capturedOnComplete(completedToolCalls); |
| | } |
| | }); |
| |
|
| | await waitFor(() => { |
| | expect(mockMarkToolsAsSubmitted).toHaveBeenCalledTimes(1); |
| | expect(mockSendMessageStream).toHaveBeenCalledTimes(1); |
| | }); |
| |
|
| | const expectedMergedResponse = [ |
| | ...toolCall1ResponseParts, |
| | ...toolCall2ResponseParts, |
| | ]; |
| | expect(mockSendMessageStream).toHaveBeenCalledWith( |
| | expectedMergedResponse, |
| | expect.any(AbortSignal), |
| | 'prompt-id-2', |
| | ); |
| | }); |
| |
|
| | it('should handle all tool calls being cancelled', async () => { |
| | const cancelledToolCalls: TrackedToolCall[] = [ |
| | { |
| | request: { |
| | callId: '1', |
| | name: 'testTool', |
| | args: {}, |
| | isClientInitiated: false, |
| | prompt_id: 'prompt-id-3', |
| | }, |
| | status: 'cancelled', |
| | response: { |
| | callId: '1', |
| | responseParts: [{ text: 'cancelled' }], |
| | errorType: undefined, |
| | }, |
| | responseSubmittedToGemini: false, |
| | tool: { |
| | displayName: 'mock tool', |
| | }, |
| | invocation: { |
| | getDescription: () => `Mock description`, |
| | } as unknown as AnyToolInvocation, |
| | } as TrackedCancelledToolCall, |
| | ]; |
| | const client = new MockedGeminiClientClass(mockConfig); |
| |
|
| | |
| | let capturedOnComplete: |
| | | ((completedTools: TrackedToolCall[]) => Promise<void>) |
| | | null = null; |
| |
|
| | mockUseReactToolScheduler.mockImplementation((onComplete) => { |
| | capturedOnComplete = onComplete; |
| | return [[], mockScheduleToolCalls, mockMarkToolsAsSubmitted]; |
| | }); |
| |
|
| | renderHook(() => |
| | useGeminiStream( |
| | client, |
| | [], |
| | mockAddItem, |
| | mockConfig, |
| | mockLoadedSettings, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | () => Promise.resolve(), |
| | false, |
| | () => {}, |
| | () => {}, |
| | () => {}, |
| | ), |
| | ); |
| |
|
| | |
| | await act(async () => { |
| | if (capturedOnComplete) { |
| | await capturedOnComplete(cancelledToolCalls); |
| | } |
| | }); |
| |
|
| | await waitFor(() => { |
| | expect(mockMarkToolsAsSubmitted).toHaveBeenCalledWith(['1']); |
| | expect(client.addHistory).toHaveBeenCalledWith({ |
| | role: 'user', |
| | parts: [{ text: 'cancelled' }], |
| | }); |
| | |
| | expect(mockSendMessageStream).not.toHaveBeenCalled(); |
| | }); |
| | }); |
| |
|
| | it('should group multiple cancelled tool call responses into a single history entry', async () => { |
| | const cancelledToolCall1: TrackedCancelledToolCall = { |
| | request: { |
| | callId: 'cancel-1', |
| | name: 'toolA', |
| | args: {}, |
| | isClientInitiated: false, |
| | prompt_id: 'prompt-id-7', |
| | }, |
| | tool: { |
| | name: 'toolA', |
| | displayName: 'toolA', |
| | description: 'descA', |
| | build: vi.fn(), |
| | } as any, |
| | invocation: { |
| | getDescription: () => `Mock description`, |
| | } as unknown as AnyToolInvocation, |
| | status: 'cancelled', |
| | response: { |
| | callId: 'cancel-1', |
| | responseParts: [ |
| | { functionResponse: { name: 'toolA', id: 'cancel-1' } }, |
| | ], |
| | resultDisplay: undefined, |
| | error: undefined, |
| | errorType: undefined, |
| | }, |
| | responseSubmittedToGemini: false, |
| | }; |
| | const cancelledToolCall2: TrackedCancelledToolCall = { |
| | request: { |
| | callId: 'cancel-2', |
| | name: 'toolB', |
| | args: {}, |
| | isClientInitiated: false, |
| | prompt_id: 'prompt-id-8', |
| | }, |
| | tool: { |
| | name: 'toolB', |
| | displayName: 'toolB', |
| | description: 'descB', |
| | build: vi.fn(), |
| | } as any, |
| | invocation: { |
| | getDescription: () => `Mock description`, |
| | } as unknown as AnyToolInvocation, |
| | status: 'cancelled', |
| | response: { |
| | callId: 'cancel-2', |
| | responseParts: [ |
| | { functionResponse: { name: 'toolB', id: 'cancel-2' } }, |
| | ], |
| | resultDisplay: undefined, |
| | error: undefined, |
| | errorType: undefined, |
| | }, |
| | responseSubmittedToGemini: false, |
| | }; |
| | const allCancelledTools = [cancelledToolCall1, cancelledToolCall2]; |
| | const client = new MockedGeminiClientClass(mockConfig); |
| |
|
| | let capturedOnComplete: |
| | | ((completedTools: TrackedToolCall[]) => Promise<void>) |
| | | null = null; |
| |
|
| | mockUseReactToolScheduler.mockImplementation((onComplete) => { |
| | capturedOnComplete = onComplete; |
| | return [[], mockScheduleToolCalls, mockMarkToolsAsSubmitted]; |
| | }); |
| |
|
| | renderHook(() => |
| | useGeminiStream( |
| | client, |
| | [], |
| | mockAddItem, |
| | mockConfig, |
| | mockLoadedSettings, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | () => Promise.resolve(), |
| | false, |
| | () => {}, |
| | () => {}, |
| | () => {}, |
| | ), |
| | ); |
| |
|
| | |
| | await act(async () => { |
| | if (capturedOnComplete) { |
| | await capturedOnComplete(allCancelledTools); |
| | } |
| | }); |
| |
|
| | await waitFor(() => { |
| | |
| | expect(mockMarkToolsAsSubmitted).toHaveBeenCalledWith([ |
| | 'cancel-1', |
| | 'cancel-2', |
| | ]); |
| |
|
| | |
| | expect(client.addHistory).toHaveBeenCalledTimes(1); |
| |
|
| | |
| | expect(client.addHistory).toHaveBeenCalledWith({ |
| | role: 'user', |
| | parts: [ |
| | ...(cancelledToolCall1.response.responseParts as Part[]), |
| | ...(cancelledToolCall2.response.responseParts as Part[]), |
| | ], |
| | }); |
| |
|
| | |
| | expect(mockSendMessageStream).not.toHaveBeenCalled(); |
| | }); |
| | }); |
| |
|
| | it('should not flicker streaming state to Idle between tool completion and submission', async () => { |
| | const toolCallResponseParts: PartListUnion = [ |
| | { text: 'tool 1 final response' }, |
| | ]; |
| |
|
| | const initialToolCalls: TrackedToolCall[] = [ |
| | { |
| | request: { |
| | callId: 'call1', |
| | name: 'tool1', |
| | args: {}, |
| | isClientInitiated: false, |
| | prompt_id: 'prompt-id-4', |
| | }, |
| | status: 'executing', |
| | responseSubmittedToGemini: false, |
| | tool: { |
| | name: 'tool1', |
| | displayName: 'tool1', |
| | description: 'desc', |
| | build: vi.fn(), |
| | } as any, |
| | invocation: { |
| | getDescription: () => `Mock description`, |
| | } as unknown as AnyToolInvocation, |
| | startTime: Date.now(), |
| | } as TrackedExecutingToolCall, |
| | ]; |
| |
|
| | const completedToolCalls: TrackedToolCall[] = [ |
| | { |
| | ...(initialToolCalls[0] as TrackedExecutingToolCall), |
| | status: 'success', |
| | response: { |
| | callId: 'call1', |
| | responseParts: toolCallResponseParts, |
| | error: undefined, |
| | errorType: undefined, |
| | resultDisplay: 'Tool 1 success display', |
| | }, |
| | endTime: Date.now(), |
| | } as TrackedCompletedToolCall, |
| | ]; |
| |
|
| | |
| | let capturedOnComplete: |
| | | ((completedTools: TrackedToolCall[]) => Promise<void>) |
| | | null = null; |
| | let currentToolCalls = initialToolCalls; |
| |
|
| | mockUseReactToolScheduler.mockImplementation((onComplete) => { |
| | capturedOnComplete = onComplete; |
| | return [ |
| | currentToolCalls, |
| | mockScheduleToolCalls, |
| | mockMarkToolsAsSubmitted, |
| | ]; |
| | }); |
| |
|
| | const { result, rerender } = renderHook(() => |
| | useGeminiStream( |
| | new MockedGeminiClientClass(mockConfig), |
| | [], |
| | mockAddItem, |
| | mockConfig, |
| | mockLoadedSettings, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | () => Promise.resolve(), |
| | false, |
| | () => {}, |
| | () => {}, |
| | () => {}, |
| | ), |
| | ); |
| |
|
| | |
| | expect(result.current.streamingState).toBe(StreamingState.Responding); |
| |
|
| | |
| | currentToolCalls = completedToolCalls; |
| | mockUseReactToolScheduler.mockImplementation((onComplete) => { |
| | capturedOnComplete = onComplete; |
| | return [ |
| | completedToolCalls, |
| | mockScheduleToolCalls, |
| | mockMarkToolsAsSubmitted, |
| | ]; |
| | }); |
| |
|
| | act(() => { |
| | rerender(); |
| | }); |
| |
|
| | |
| | |
| | expect(result.current.streamingState).toBe(StreamingState.Responding); |
| |
|
| | |
| | await act(async () => { |
| | if (capturedOnComplete) { |
| | await capturedOnComplete(completedToolCalls); |
| | } |
| | }); |
| |
|
| | |
| | await waitFor(() => { |
| | expect(mockSendMessageStream).toHaveBeenCalledWith( |
| | toolCallResponseParts, |
| | expect.any(AbortSignal), |
| | 'prompt-id-4', |
| | ); |
| | }); |
| |
|
| | |
| | expect(result.current.streamingState).toBe(StreamingState.Responding); |
| | }); |
| |
|
| | describe('User Cancellation', () => { |
| | let keypressCallback: (key: any) => void; |
| | const mockUseKeypress = useKeypress as Mock; |
| |
|
| | beforeEach(() => { |
| | |
| | mockUseKeypress.mockImplementation((callback, options) => { |
| | if (options.isActive) { |
| | keypressCallback = callback; |
| | } else { |
| | keypressCallback = () => {}; |
| | } |
| | }); |
| | }); |
| |
|
| | const simulateEscapeKeyPress = () => { |
| | act(() => { |
| | keypressCallback({ name: 'escape' }); |
| | }); |
| | }; |
| |
|
| | it('should cancel an in-progress stream when escape is pressed', async () => { |
| | const mockStream = (async function* () { |
| | yield { type: 'content', value: 'Part 1' }; |
| | |
| | await new Promise(() => {}); |
| | })(); |
| | mockSendMessageStream.mockReturnValue(mockStream); |
| |
|
| | const { result } = renderTestHook(); |
| |
|
| | |
| | await act(async () => { |
| | result.current.submitQuery('test query'); |
| | }); |
| |
|
| | |
| | await waitFor(() => { |
| | expect(result.current.streamingState).toBe(StreamingState.Responding); |
| | }); |
| |
|
| | |
| | simulateEscapeKeyPress(); |
| |
|
| | |
| | await waitFor(() => { |
| | expect(mockAddItem).toHaveBeenCalledWith( |
| | { |
| | type: MessageType.INFO, |
| | text: 'Request cancelled.', |
| | }, |
| | expect.any(Number), |
| | ); |
| | }); |
| |
|
| | |
| | expect(result.current.streamingState).toBe(StreamingState.Idle); |
| | }); |
| |
|
| | it('should call onCancelSubmit handler when escape is pressed', async () => { |
| | const cancelSubmitSpy = vi.fn(); |
| | const mockStream = (async function* () { |
| | yield { type: 'content', value: 'Part 1' }; |
| | |
| | await new Promise(() => {}); |
| | })(); |
| | mockSendMessageStream.mockReturnValue(mockStream); |
| |
|
| | const { result } = renderHook(() => |
| | useGeminiStream( |
| | mockConfig.getGeminiClient(), |
| | [], |
| | mockAddItem, |
| | mockConfig, |
| | mockLoadedSettings, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | () => Promise.resolve(), |
| | false, |
| | () => {}, |
| | () => {}, |
| | cancelSubmitSpy, |
| | ), |
| | ); |
| |
|
| | |
| | await act(async () => { |
| | result.current.submitQuery('test query'); |
| | }); |
| |
|
| | simulateEscapeKeyPress(); |
| |
|
| | expect(cancelSubmitSpy).toHaveBeenCalled(); |
| | }); |
| |
|
| | it('should not do anything if escape is pressed when not responding', () => { |
| | const { result } = renderTestHook(); |
| |
|
| | expect(result.current.streamingState).toBe(StreamingState.Idle); |
| |
|
| | |
| | simulateEscapeKeyPress(); |
| |
|
| | |
| | expect(mockAddItem).not.toHaveBeenCalledWith( |
| | expect.objectContaining({ |
| | text: 'Request cancelled.', |
| | }), |
| | expect.any(Number), |
| | ); |
| | }); |
| |
|
| | it('should prevent further processing after cancellation', async () => { |
| | let continueStream: () => void; |
| | const streamPromise = new Promise<void>((resolve) => { |
| | continueStream = resolve; |
| | }); |
| |
|
| | const mockStream = (async function* () { |
| | yield { type: 'content', value: 'Initial' }; |
| | await streamPromise; |
| | yield { type: 'content', value: ' Canceled' }; |
| | })(); |
| | mockSendMessageStream.mockReturnValue(mockStream); |
| |
|
| | const { result } = renderTestHook(); |
| |
|
| | await act(async () => { |
| | result.current.submitQuery('long running query'); |
| | }); |
| |
|
| | await waitFor(() => { |
| | expect(result.current.streamingState).toBe(StreamingState.Responding); |
| | }); |
| |
|
| | |
| | simulateEscapeKeyPress(); |
| |
|
| | |
| | act(() => { |
| | continueStream(); |
| | }); |
| |
|
| | |
| | await new Promise((resolve) => setTimeout(resolve, 50)); |
| |
|
| | |
| | const lastCall = mockAddItem.mock.calls.find( |
| | (call) => call[0].type === 'gemini', |
| | ); |
| | expect(lastCall?.[0].text).toBe('Initial'); |
| |
|
| | |
| | expect(result.current.streamingState).toBe(StreamingState.Idle); |
| | }); |
| |
|
| | it('should not cancel if a tool call is in progress (not just responding)', async () => { |
| | const toolCalls: TrackedToolCall[] = [ |
| | { |
| | request: { callId: 'call1', name: 'tool1', args: {} }, |
| | status: 'executing', |
| | responseSubmittedToGemini: false, |
| | tool: { |
| | name: 'tool1', |
| | description: 'desc1', |
| | build: vi.fn().mockImplementation((_) => ({ |
| | getDescription: () => `Mock description`, |
| | })), |
| | } as any, |
| | invocation: { |
| | getDescription: () => `Mock description`, |
| | }, |
| | startTime: Date.now(), |
| | liveOutput: '...', |
| | } as TrackedExecutingToolCall, |
| | ]; |
| |
|
| | const abortSpy = vi.spyOn(AbortController.prototype, 'abort'); |
| | const { result } = renderTestHook(toolCalls); |
| |
|
| | |
| | expect(result.current.streamingState).toBe(StreamingState.Responding); |
| |
|
| | |
| | simulateEscapeKeyPress(); |
| |
|
| | |
| | expect(abortSpy).not.toHaveBeenCalled(); |
| | }); |
| | }); |
| |
|
| | describe('Slash Command Handling', () => { |
| | it('should schedule a tool call when the command processor returns a schedule_tool action', async () => { |
| | const clientToolRequest: SlashCommandProcessorResult = { |
| | type: 'schedule_tool', |
| | toolName: 'save_memory', |
| | toolArgs: { fact: 'test fact' }, |
| | }; |
| | mockHandleSlashCommand.mockResolvedValue(clientToolRequest); |
| |
|
| | const { result } = renderTestHook(); |
| |
|
| | await act(async () => { |
| | await result.current.submitQuery('/memory add "test fact"'); |
| | }); |
| |
|
| | await waitFor(() => { |
| | expect(mockScheduleToolCalls).toHaveBeenCalledWith( |
| | [ |
| | expect.objectContaining({ |
| | name: 'save_memory', |
| | args: { fact: 'test fact' }, |
| | isClientInitiated: true, |
| | }), |
| | ], |
| | expect.any(AbortSignal), |
| | ); |
| | expect(mockSendMessageStream).not.toHaveBeenCalled(); |
| | }); |
| | }); |
| |
|
| | it('should stop processing and not call Gemini when a command is handled without a tool call', async () => { |
| | const uiOnlyCommandResult: SlashCommandProcessorResult = { |
| | type: 'handled', |
| | }; |
| | mockHandleSlashCommand.mockResolvedValue(uiOnlyCommandResult); |
| |
|
| | const { result } = renderTestHook(); |
| |
|
| | await act(async () => { |
| | await result.current.submitQuery('/help'); |
| | }); |
| |
|
| | await waitFor(() => { |
| | expect(mockHandleSlashCommand).toHaveBeenCalledWith('/help'); |
| | expect(mockScheduleToolCalls).not.toHaveBeenCalled(); |
| | expect(mockSendMessageStream).not.toHaveBeenCalled(); |
| | }); |
| | }); |
| |
|
| | it('should call Gemini with prompt content when slash command returns a `submit_prompt` action', async () => { |
| | const customCommandResult: SlashCommandProcessorResult = { |
| | type: 'submit_prompt', |
| | content: 'This is the actual prompt from the command file.', |
| | }; |
| | mockHandleSlashCommand.mockResolvedValue(customCommandResult); |
| |
|
| | const { result, mockSendMessageStream: localMockSendMessageStream } = |
| | renderTestHook(); |
| |
|
| | await act(async () => { |
| | await result.current.submitQuery('/my-custom-command'); |
| | }); |
| |
|
| | await waitFor(() => { |
| | expect(mockHandleSlashCommand).toHaveBeenCalledWith( |
| | '/my-custom-command', |
| | ); |
| |
|
| | expect(localMockSendMessageStream).not.toHaveBeenCalledWith( |
| | '/my-custom-command', |
| | expect.anything(), |
| | expect.anything(), |
| | ); |
| |
|
| | expect(localMockSendMessageStream).toHaveBeenCalledWith( |
| | 'This is the actual prompt from the command file.', |
| | expect.any(AbortSignal), |
| | expect.any(String), |
| | ); |
| |
|
| | expect(mockScheduleToolCalls).not.toHaveBeenCalled(); |
| | }); |
| | }); |
| |
|
| | it('should correctly handle a submit_prompt action with empty content', async () => { |
| | const emptyPromptResult: SlashCommandProcessorResult = { |
| | type: 'submit_prompt', |
| | content: '', |
| | }; |
| | mockHandleSlashCommand.mockResolvedValue(emptyPromptResult); |
| |
|
| | const { result, mockSendMessageStream: localMockSendMessageStream } = |
| | renderTestHook(); |
| |
|
| | await act(async () => { |
| | await result.current.submitQuery('/emptycmd'); |
| | }); |
| |
|
| | await waitFor(() => { |
| | expect(mockHandleSlashCommand).toHaveBeenCalledWith('/emptycmd'); |
| | expect(localMockSendMessageStream).toHaveBeenCalledWith( |
| | '', |
| | expect.any(AbortSignal), |
| | expect.any(String), |
| | ); |
| | }); |
| | }); |
| |
|
| | it('should not call handleSlashCommand for line comments', async () => { |
| | const { result, mockSendMessageStream: localMockSendMessageStream } = |
| | renderTestHook(); |
| |
|
| | await act(async () => { |
| | await result.current.submitQuery('// This is a line comment'); |
| | }); |
| |
|
| | await waitFor(() => { |
| | expect(mockHandleSlashCommand).not.toHaveBeenCalled(); |
| | expect(localMockSendMessageStream).toHaveBeenCalledWith( |
| | '// This is a line comment', |
| | expect.any(AbortSignal), |
| | expect.any(String), |
| | ); |
| | }); |
| | }); |
| |
|
| | it('should not call handleSlashCommand for block comments', async () => { |
| | const { result, mockSendMessageStream: localMockSendMessageStream } = |
| | renderTestHook(); |
| |
|
| | await act(async () => { |
| | await result.current.submitQuery('/* This is a block comment */'); |
| | }); |
| |
|
| | await waitFor(() => { |
| | expect(mockHandleSlashCommand).not.toHaveBeenCalled(); |
| | expect(localMockSendMessageStream).toHaveBeenCalledWith( |
| | '/* This is a block comment */', |
| | expect.any(AbortSignal), |
| | expect.any(String), |
| | ); |
| | }); |
| | }); |
| | }); |
| |
|
| | describe('Memory Refresh on save_memory', () => { |
| | it('should call performMemoryRefresh when a save_memory tool call completes successfully', async () => { |
| | const mockPerformMemoryRefresh = vi.fn(); |
| | const completedToolCall: TrackedCompletedToolCall = { |
| | request: { |
| | callId: 'save-mem-call-1', |
| | name: 'save_memory', |
| | args: { fact: 'test' }, |
| | isClientInitiated: true, |
| | prompt_id: 'prompt-id-6', |
| | }, |
| | status: 'success', |
| | responseSubmittedToGemini: false, |
| | response: { |
| | callId: 'save-mem-call-1', |
| | responseParts: [{ text: 'Memory saved' }], |
| | resultDisplay: 'Success: Memory saved', |
| | error: undefined, |
| | errorType: undefined, |
| | }, |
| | tool: { |
| | name: 'save_memory', |
| | displayName: 'save_memory', |
| | description: 'Saves memory', |
| | build: vi.fn(), |
| | } as any, |
| | invocation: { |
| | getDescription: () => `Mock description`, |
| | } as unknown as AnyToolInvocation, |
| | }; |
| |
|
| | |
| | let capturedOnComplete: |
| | | ((completedTools: TrackedToolCall[]) => Promise<void>) |
| | | null = null; |
| |
|
| | mockUseReactToolScheduler.mockImplementation((onComplete) => { |
| | capturedOnComplete = onComplete; |
| | return [[], mockScheduleToolCalls, mockMarkToolsAsSubmitted]; |
| | }); |
| |
|
| | renderHook(() => |
| | useGeminiStream( |
| | new MockedGeminiClientClass(mockConfig), |
| | [], |
| | mockAddItem, |
| | mockConfig, |
| | mockLoadedSettings, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | mockPerformMemoryRefresh, |
| | false, |
| | () => {}, |
| | () => {}, |
| | () => {}, |
| | ), |
| | ); |
| |
|
| | |
| | await act(async () => { |
| | if (capturedOnComplete) { |
| | await capturedOnComplete([completedToolCall]); |
| | } |
| | }); |
| |
|
| | await waitFor(() => { |
| | expect(mockPerformMemoryRefresh).toHaveBeenCalledTimes(1); |
| | }); |
| | }); |
| | }); |
| |
|
| | describe('Error Handling', () => { |
| | it('should call parseAndFormatApiError with the correct authType on stream initialization failure', async () => { |
| | |
| | const mockError = new Error('Rate limit exceeded'); |
| | const mockAuthType = AuthType.LOGIN_WITH_GOOGLE; |
| | mockParseAndFormatApiError.mockClear(); |
| | mockSendMessageStream.mockReturnValue( |
| | (async function* () { |
| | yield { type: 'content', value: '' }; |
| | throw mockError; |
| | })(), |
| | ); |
| |
|
| | const testConfig = { |
| | ...mockConfig, |
| | getContentGeneratorConfig: vi.fn(() => ({ |
| | authType: mockAuthType, |
| | })), |
| | getModel: vi.fn(() => 'gemini-2.5-pro'), |
| | } as unknown as Config; |
| |
|
| | const { result } = renderHook(() => |
| | useGeminiStream( |
| | new MockedGeminiClientClass(testConfig), |
| | [], |
| | mockAddItem, |
| | testConfig, |
| | mockLoadedSettings, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | () => Promise.resolve(), |
| | false, |
| | () => {}, |
| | () => {}, |
| | () => {}, |
| | ), |
| | ); |
| |
|
| | |
| | await act(async () => { |
| | await result.current.submitQuery('test query'); |
| | }); |
| |
|
| | |
| | await waitFor(() => { |
| | expect(mockParseAndFormatApiError).toHaveBeenCalledWith( |
| | 'Rate limit exceeded', |
| | mockAuthType, |
| | undefined, |
| | 'gemini-2.5-pro', |
| | 'gemini-2.5-flash', |
| | ); |
| | }); |
| | }); |
| | }); |
| |
|
| | describe('handleFinishedEvent', () => { |
| | it('should add info message for MAX_TOKENS finish reason', async () => { |
| | |
| | mockSendMessageStream.mockReturnValue( |
| | (async function* () { |
| | yield { |
| | type: ServerGeminiEventType.Content, |
| | value: 'This is a truncated response...', |
| | }; |
| | yield { type: ServerGeminiEventType.Finished, value: 'MAX_TOKENS' }; |
| | })(), |
| | ); |
| |
|
| | const { result } = renderHook(() => |
| | useGeminiStream( |
| | new MockedGeminiClientClass(mockConfig), |
| | [], |
| | mockAddItem, |
| | mockConfig, |
| | mockLoadedSettings, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | () => Promise.resolve(), |
| | false, |
| | () => {}, |
| | () => {}, |
| | () => {}, |
| | ), |
| | ); |
| |
|
| | |
| | await act(async () => { |
| | await result.current.submitQuery('Generate long text'); |
| | }); |
| |
|
| | |
| | await waitFor(() => { |
| | expect(mockAddItem).toHaveBeenCalledWith( |
| | { |
| | type: 'info', |
| | text: '⚠️ Response truncated due to token limits.', |
| | }, |
| | expect.any(Number), |
| | ); |
| | }); |
| | }); |
| |
|
| | it('should not add message for STOP finish reason', async () => { |
| | |
| | mockSendMessageStream.mockReturnValue( |
| | (async function* () { |
| | yield { |
| | type: ServerGeminiEventType.Content, |
| | value: 'Complete response', |
| | }; |
| | yield { type: ServerGeminiEventType.Finished, value: 'STOP' }; |
| | })(), |
| | ); |
| |
|
| | const { result } = renderHook(() => |
| | useGeminiStream( |
| | new MockedGeminiClientClass(mockConfig), |
| | [], |
| | mockAddItem, |
| | mockConfig, |
| | mockLoadedSettings, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | () => Promise.resolve(), |
| | false, |
| | () => {}, |
| | () => {}, |
| | () => {}, |
| | ), |
| | ); |
| |
|
| | |
| | await act(async () => { |
| | await result.current.submitQuery('Test normal completion'); |
| | }); |
| |
|
| | |
| | await new Promise((resolve) => setTimeout(resolve, 100)); |
| |
|
| | |
| | const infoMessages = mockAddItem.mock.calls.filter( |
| | (call) => call[0].type === 'info', |
| | ); |
| | expect(infoMessages).toHaveLength(0); |
| | }); |
| |
|
| | it('should not add message for FINISH_REASON_UNSPECIFIED', async () => { |
| | |
| | mockSendMessageStream.mockReturnValue( |
| | (async function* () { |
| | yield { |
| | type: ServerGeminiEventType.Content, |
| | value: 'Response with unspecified finish', |
| | }; |
| | yield { |
| | type: ServerGeminiEventType.Finished, |
| | value: 'FINISH_REASON_UNSPECIFIED', |
| | }; |
| | })(), |
| | ); |
| |
|
| | const { result } = renderHook(() => |
| | useGeminiStream( |
| | new MockedGeminiClientClass(mockConfig), |
| | [], |
| | mockAddItem, |
| | mockConfig, |
| | mockLoadedSettings, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | () => Promise.resolve(), |
| | false, |
| | () => {}, |
| | () => {}, |
| | () => {}, |
| | ), |
| | ); |
| |
|
| | |
| | await act(async () => { |
| | await result.current.submitQuery('Test unspecified finish'); |
| | }); |
| |
|
| | |
| | await new Promise((resolve) => setTimeout(resolve, 100)); |
| |
|
| | |
| | const infoMessages = mockAddItem.mock.calls.filter( |
| | (call) => call[0].type === 'info', |
| | ); |
| | expect(infoMessages).toHaveLength(0); |
| | }); |
| |
|
| | it('should add appropriate messages for other finish reasons', async () => { |
| | const testCases = [ |
| | { |
| | reason: 'SAFETY', |
| | message: '⚠️ Response stopped due to safety reasons.', |
| | }, |
| | { |
| | reason: 'RECITATION', |
| | message: '⚠️ Response stopped due to recitation policy.', |
| | }, |
| | { |
| | reason: 'LANGUAGE', |
| | message: '⚠️ Response stopped due to unsupported language.', |
| | }, |
| | { |
| | reason: 'BLOCKLIST', |
| | message: '⚠️ Response stopped due to forbidden terms.', |
| | }, |
| | { |
| | reason: 'PROHIBITED_CONTENT', |
| | message: '⚠️ Response stopped due to prohibited content.', |
| | }, |
| | { |
| | reason: 'SPII', |
| | message: |
| | '⚠️ Response stopped due to sensitive personally identifiable information.', |
| | }, |
| | { reason: 'OTHER', message: '⚠️ Response stopped for other reasons.' }, |
| | { |
| | reason: 'MALFORMED_FUNCTION_CALL', |
| | message: '⚠️ Response stopped due to malformed function call.', |
| | }, |
| | { |
| | reason: 'IMAGE_SAFETY', |
| | message: '⚠️ Response stopped due to image safety violations.', |
| | }, |
| | { |
| | reason: 'UNEXPECTED_TOOL_CALL', |
| | message: '⚠️ Response stopped due to unexpected tool call.', |
| | }, |
| | ]; |
| |
|
| | for (const { reason, message } of testCases) { |
| | |
| | mockAddItem.mockClear(); |
| | mockSendMessageStream.mockReturnValue( |
| | (async function* () { |
| | yield { |
| | type: ServerGeminiEventType.Content, |
| | value: `Response for ${reason}`, |
| | }; |
| | yield { type: ServerGeminiEventType.Finished, value: reason }; |
| | })(), |
| | ); |
| |
|
| | const { result } = renderHook(() => |
| | useGeminiStream( |
| | new MockedGeminiClientClass(mockConfig), |
| | [], |
| | mockAddItem, |
| | mockConfig, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | () => Promise.resolve(), |
| | false, |
| | () => {}, |
| | () => {}, |
| | () => {}, |
| | ), |
| | ); |
| |
|
| | await act(async () => { |
| | await result.current.submitQuery(`Test ${reason}`); |
| | }); |
| |
|
| | await waitFor(() => { |
| | expect(mockAddItem).toHaveBeenCalledWith( |
| | { |
| | type: 'info', |
| | text: message, |
| | }, |
| | expect.any(Number), |
| | ); |
| | }); |
| | } |
| | }); |
| | }); |
| |
|
| | it('should process @include commands, adding user turn after processing to prevent race conditions', async () => { |
| | const rawQuery = '@include file.txt Summarize this.'; |
| | const processedQueryParts = [ |
| | { text: 'Summarize this with content from @file.txt' }, |
| | { text: 'File content...' }, |
| | ]; |
| | const userMessageTimestamp = Date.now(); |
| | vi.spyOn(Date, 'now').mockReturnValue(userMessageTimestamp); |
| |
|
| | handleAtCommandSpy.mockResolvedValue({ |
| | processedQuery: processedQueryParts, |
| | shouldProceed: true, |
| | }); |
| |
|
| | const { result } = renderHook(() => |
| | useGeminiStream( |
| | mockConfig.getGeminiClient() as GeminiClient, |
| | [], |
| | mockAddItem, |
| | mockConfig, |
| | mockLoadedSettings, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | vi.fn(), |
| | vi.fn(), |
| | vi.fn(), |
| | false, |
| | vi.fn(), |
| | vi.fn(), |
| | vi.fn(), |
| | ), |
| | ); |
| |
|
| | await act(async () => { |
| | await result.current.submitQuery(rawQuery); |
| | }); |
| |
|
| | expect(handleAtCommandSpy).toHaveBeenCalledWith( |
| | expect.objectContaining({ |
| | query: rawQuery, |
| | }), |
| | ); |
| |
|
| | expect(mockAddItem).toHaveBeenCalledWith( |
| | { |
| | type: MessageType.USER, |
| | text: rawQuery, |
| | }, |
| | userMessageTimestamp, |
| | ); |
| |
|
| | |
| | expect(mockSendMessageStream).toHaveBeenCalledWith( |
| | processedQueryParts, |
| | expect.any(AbortSignal), |
| | expect.any(String), |
| | ); |
| | }); |
| | describe('Thought Reset', () => { |
| | it('should reset thought to null when starting a new prompt', async () => { |
| | |
| | mockSendMessageStream.mockReturnValue( |
| | (async function* () { |
| | yield { |
| | type: ServerGeminiEventType.Thought, |
| | value: { |
| | subject: 'Previous thought', |
| | description: 'Old description', |
| | }, |
| | }; |
| | yield { |
| | type: ServerGeminiEventType.Content, |
| | value: 'Some response content', |
| | }; |
| | yield { type: ServerGeminiEventType.Finished, value: 'STOP' }; |
| | })(), |
| | ); |
| |
|
| | const { result } = renderHook(() => |
| | useGeminiStream( |
| | new MockedGeminiClientClass(mockConfig), |
| | [], |
| | mockAddItem, |
| | mockConfig, |
| | mockLoadedSettings, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | () => Promise.resolve(), |
| | false, |
| | () => {}, |
| | () => {}, |
| | () => {}, |
| | ), |
| | ); |
| |
|
| | |
| | await act(async () => { |
| | await result.current.submitQuery('First query'); |
| | }); |
| |
|
| | |
| | await waitFor(() => { |
| | expect(mockAddItem).toHaveBeenCalledWith( |
| | expect.objectContaining({ |
| | type: 'gemini', |
| | text: 'Some response content', |
| | }), |
| | expect.any(Number), |
| | ); |
| | }); |
| |
|
| | |
| | mockSendMessageStream.mockReturnValue( |
| | (async function* () { |
| | yield { |
| | type: ServerGeminiEventType.Content, |
| | value: 'New response content', |
| | }; |
| | yield { type: ServerGeminiEventType.Finished, value: 'STOP' }; |
| | })(), |
| | ); |
| |
|
| | |
| | await act(async () => { |
| | await result.current.submitQuery('Second query'); |
| | }); |
| |
|
| | |
| | |
| | |
| | |
| | await waitFor(() => { |
| | expect(mockAddItem).toHaveBeenCalledWith( |
| | expect.objectContaining({ |
| | type: 'gemini', |
| | text: 'New response content', |
| | }), |
| | expect.any(Number), |
| | ); |
| | }); |
| | }); |
| |
|
| | it('should reset thought to null when user cancels', async () => { |
| | |
| | mockSendMessageStream.mockReturnValue( |
| | (async function* () { |
| | yield { |
| | type: ServerGeminiEventType.Thought, |
| | value: { subject: 'Some thought', description: 'Description' }, |
| | }; |
| | yield { type: ServerGeminiEventType.UserCancelled }; |
| | })(), |
| | ); |
| |
|
| | const { result } = renderHook(() => |
| | useGeminiStream( |
| | new MockedGeminiClientClass(mockConfig), |
| | [], |
| | mockAddItem, |
| | mockConfig, |
| | mockLoadedSettings, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | () => Promise.resolve(), |
| | false, |
| | () => {}, |
| | () => {}, |
| | () => {}, |
| | ), |
| | ); |
| |
|
| | |
| | await act(async () => { |
| | await result.current.submitQuery('Test query'); |
| | }); |
| |
|
| | |
| | await waitFor(() => { |
| | expect(mockAddItem).toHaveBeenCalledWith( |
| | expect.objectContaining({ |
| | type: 'info', |
| | text: 'User cancelled the request.', |
| | }), |
| | expect.any(Number), |
| | ); |
| | }); |
| |
|
| | |
| | expect(result.current.streamingState).toBe(StreamingState.Idle); |
| | }); |
| |
|
| | it('should reset thought to null when there is an error', async () => { |
| | |
| | mockSendMessageStream.mockReturnValue( |
| | (async function* () { |
| | yield { |
| | type: ServerGeminiEventType.Thought, |
| | value: { subject: 'Some thought', description: 'Description' }, |
| | }; |
| | yield { |
| | type: ServerGeminiEventType.Error, |
| | value: { error: { message: 'Test error' } }, |
| | }; |
| | })(), |
| | ); |
| |
|
| | const { result } = renderHook(() => |
| | useGeminiStream( |
| | new MockedGeminiClientClass(mockConfig), |
| | [], |
| | mockAddItem, |
| | mockConfig, |
| | mockLoadedSettings, |
| | mockOnDebugMessage, |
| | mockHandleSlashCommand, |
| | false, |
| | () => 'vscode' as EditorType, |
| | () => {}, |
| | () => Promise.resolve(), |
| | false, |
| | () => {}, |
| | () => {}, |
| | () => {}, |
| | ), |
| | ); |
| |
|
| | |
| | await act(async () => { |
| | await result.current.submitQuery('Test query'); |
| | }); |
| |
|
| | |
| | await waitFor(() => { |
| | expect(mockAddItem).toHaveBeenCalledWith( |
| | expect.objectContaining({ |
| | type: 'error', |
| | }), |
| | expect.any(Number), |
| | ); |
| | }); |
| |
|
| | |
| | expect(mockParseAndFormatApiError).toHaveBeenCalledWith( |
| | { message: 'Test error' }, |
| | expect.any(String), |
| | undefined, |
| | 'gemini-2.5-pro', |
| | 'gemini-2.5-flash', |
| | ); |
| | }); |
| | }); |
| | }); |
| |
|