| | |
| | |
| | |
| | |
| | |
| |
|
| | import { render } from 'ink-testing-library'; |
| | import { describe, it, expect, vi } from 'vitest'; |
| | import { HistoryItemDisplay } from './HistoryItemDisplay.js'; |
| | import type { HistoryItem } from '../types.js'; |
| | import { MessageType } from '../types.js'; |
| | import { SessionStatsProvider } from '../contexts/SessionContext.js'; |
| | import type { Config } from '@google/gemini-cli-core'; |
| |
|
| | |
| | vi.mock('./messages/ToolGroupMessage.js', () => ({ |
| | ToolGroupMessage: () => <div />, |
| | })); |
| |
|
| | describe('<HistoryItemDisplay />', () => { |
| | const mockConfig = {} as unknown as Config; |
| | const baseItem = { |
| | id: 1, |
| | timestamp: 12345, |
| | isPending: false, |
| | terminalWidth: 80, |
| | config: mockConfig, |
| | }; |
| |
|
| | it('renders UserMessage for "user" type', () => { |
| | const item: HistoryItem = { |
| | ...baseItem, |
| | type: MessageType.USER, |
| | text: 'Hello', |
| | }; |
| | const { lastFrame } = render( |
| | <HistoryItemDisplay {...baseItem} item={item} />, |
| | ); |
| | expect(lastFrame()).toContain('Hello'); |
| | }); |
| |
|
| | it('renders UserMessage for "user" type with slash command', () => { |
| | const item: HistoryItem = { |
| | ...baseItem, |
| | type: MessageType.USER, |
| | text: '/theme', |
| | }; |
| | const { lastFrame } = render( |
| | <HistoryItemDisplay {...baseItem} item={item} />, |
| | ); |
| | expect(lastFrame()).toContain('/theme'); |
| | }); |
| |
|
| | it('renders StatsDisplay for "stats" type', () => { |
| | const item: HistoryItem = { |
| | ...baseItem, |
| | type: MessageType.STATS, |
| | duration: '1s', |
| | }; |
| | const { lastFrame } = render( |
| | <SessionStatsProvider> |
| | <HistoryItemDisplay {...baseItem} item={item} /> |
| | </SessionStatsProvider>, |
| | ); |
| | expect(lastFrame()).toContain('Stats'); |
| | }); |
| |
|
| | it('renders AboutBox for "about" type', () => { |
| | const item: HistoryItem = { |
| | ...baseItem, |
| | type: MessageType.ABOUT, |
| | cliVersion: '1.0.0', |
| | osVersion: 'test-os', |
| | sandboxEnv: 'test-env', |
| | modelVersion: 'test-model', |
| | selectedAuthType: 'test-auth', |
| | gcpProject: 'test-project', |
| | ideClient: 'test-ide', |
| | }; |
| | const { lastFrame } = render( |
| | <HistoryItemDisplay {...baseItem} item={item} />, |
| | ); |
| | expect(lastFrame()).toContain('About Gemini CLI'); |
| | }); |
| |
|
| | it('renders ModelStatsDisplay for "model_stats" type', () => { |
| | const item: HistoryItem = { |
| | ...baseItem, |
| | type: 'model_stats', |
| | }; |
| | const { lastFrame } = render( |
| | <SessionStatsProvider> |
| | <HistoryItemDisplay {...baseItem} item={item} /> |
| | </SessionStatsProvider>, |
| | ); |
| | expect(lastFrame()).toContain( |
| | 'No API calls have been made in this session.', |
| | ); |
| | }); |
| |
|
| | it('renders ToolStatsDisplay for "tool_stats" type', () => { |
| | const item: HistoryItem = { |
| | ...baseItem, |
| | type: 'tool_stats', |
| | }; |
| | const { lastFrame } = render( |
| | <SessionStatsProvider> |
| | <HistoryItemDisplay {...baseItem} item={item} /> |
| | </SessionStatsProvider>, |
| | ); |
| | expect(lastFrame()).toContain( |
| | 'No tool calls have been made in this session.', |
| | ); |
| | }); |
| |
|
| | it('renders SessionSummaryDisplay for "quit" type', () => { |
| | const item: HistoryItem = { |
| | ...baseItem, |
| | type: 'quit', |
| | duration: '1s', |
| | }; |
| | const { lastFrame } = render( |
| | <SessionStatsProvider> |
| | <HistoryItemDisplay {...baseItem} item={item} /> |
| | </SessionStatsProvider>, |
| | ); |
| | expect(lastFrame()).toContain('Agent powering down. Goodbye!'); |
| | }); |
| | }); |
| |
|