|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import { render } from 'ink-testing-library'; |
|
|
import { describe, it, expect, vi, beforeEach, type Mock } from 'vitest'; |
|
|
import { ProQuotaDialog } from './ProQuotaDialog.js'; |
|
|
import { RadioButtonSelect } from './shared/RadioButtonSelect.js'; |
|
|
|
|
|
|
|
|
vi.mock('./shared/RadioButtonSelect.js', () => ({ |
|
|
RadioButtonSelect: vi.fn(), |
|
|
})); |
|
|
|
|
|
describe('ProQuotaDialog', () => { |
|
|
beforeEach(() => { |
|
|
vi.clearAllMocks(); |
|
|
}); |
|
|
|
|
|
it('should render with correct title and options', () => { |
|
|
const { lastFrame } = render( |
|
|
<ProQuotaDialog |
|
|
currentModel="gemini-2.5-pro" |
|
|
fallbackModel="gemini-2.5-flash" |
|
|
onChoice={() => {}} |
|
|
/>, |
|
|
); |
|
|
|
|
|
const output = lastFrame(); |
|
|
expect(output).toContain('Pro quota limit reached for gemini-2.5-pro.'); |
|
|
|
|
|
|
|
|
expect(RadioButtonSelect).toHaveBeenCalledWith( |
|
|
expect.objectContaining({ |
|
|
items: [ |
|
|
{ |
|
|
label: 'Change auth (executes the /auth command)', |
|
|
value: 'auth', |
|
|
}, |
|
|
{ |
|
|
label: `Continue with gemini-2.5-flash`, |
|
|
value: 'continue', |
|
|
}, |
|
|
], |
|
|
}), |
|
|
undefined, |
|
|
); |
|
|
}); |
|
|
|
|
|
it('should call onChoice with "auth" when "Change auth" is selected', () => { |
|
|
const mockOnChoice = vi.fn(); |
|
|
render( |
|
|
<ProQuotaDialog |
|
|
currentModel="gemini-2.5-pro" |
|
|
fallbackModel="gemini-2.5-flash" |
|
|
onChoice={mockOnChoice} |
|
|
/>, |
|
|
); |
|
|
|
|
|
|
|
|
const onSelect = (RadioButtonSelect as Mock).mock.calls[0][0].onSelect; |
|
|
|
|
|
|
|
|
onSelect('auth'); |
|
|
|
|
|
expect(mockOnChoice).toHaveBeenCalledWith('auth'); |
|
|
}); |
|
|
|
|
|
it('should call onChoice with "continue" when "Continue with flash" is selected', () => { |
|
|
const mockOnChoice = vi.fn(); |
|
|
render( |
|
|
<ProQuotaDialog |
|
|
currentModel="gemini-2.5-pro" |
|
|
fallbackModel="gemini-2.5-flash" |
|
|
onChoice={mockOnChoice} |
|
|
/>, |
|
|
); |
|
|
|
|
|
|
|
|
const onSelect = (RadioButtonSelect as Mock).mock.calls[0][0].onSelect; |
|
|
|
|
|
|
|
|
onSelect('continue'); |
|
|
|
|
|
expect(mockOnChoice).toHaveBeenCalledWith('continue'); |
|
|
}); |
|
|
}); |
|
|
|