import { describe, expect, it, vi } from 'vitest' import { applyVoiceRecordResponse } from '../app/useInputHandlers.js' describe('applyVoiceRecordResponse', () => { it('reverts optimistic REC state when the gateway reports voice busy', () => { const setProcessing = vi.fn() const setRecording = vi.fn() const sys = vi.fn() applyVoiceRecordResponse({ status: 'busy' }, true, { setProcessing, setRecording }, sys) expect(setRecording).toHaveBeenCalledWith(false) expect(setProcessing).toHaveBeenCalledWith(true) expect(sys).toHaveBeenCalledWith('voice: still transcribing; try again shortly') }) it('keeps optimistic REC state for successful recording starts', () => { const setProcessing = vi.fn() const setRecording = vi.fn() applyVoiceRecordResponse({ status: 'recording' }, true, { setProcessing, setRecording }, vi.fn()) expect(setRecording).not.toHaveBeenCalled() expect(setProcessing).not.toHaveBeenCalled() }) it('reverts optimistic REC state when the gateway returns null', () => { const setProcessing = vi.fn() const setRecording = vi.fn() applyVoiceRecordResponse(null, true, { setProcessing, setRecording }, vi.fn()) expect(setRecording).toHaveBeenCalledWith(false) expect(setProcessing).toHaveBeenCalledWith(false) }) })