mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-14 16:10:59 -07:00
87 lines
2.4 KiB
TypeScript
87 lines
2.4 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { describe, it, expect, vi } from 'vitest';
|
|
import { render } from 'ink-testing-library';
|
|
import { Text } from 'ink';
|
|
import { App } from './App.js';
|
|
import { UIStateContext, type UIState } from './contexts/UIStateContext.js';
|
|
import { StreamingState } from './types.js';
|
|
|
|
// Mock components to isolate App component testing
|
|
vi.mock('./components/MainContent.js', () => ({
|
|
MainContent: () => <Text>MainContent</Text>,
|
|
}));
|
|
|
|
vi.mock('./components/DialogManager.js', () => ({
|
|
DialogManager: () => <Text>DialogManager</Text>,
|
|
}));
|
|
|
|
vi.mock('./components/Composer.js', () => ({
|
|
Composer: () => <Text>Composer</Text>,
|
|
}));
|
|
|
|
vi.mock('./components/Notifications.js', () => ({
|
|
Notifications: () => <Text>Notifications</Text>,
|
|
}));
|
|
|
|
vi.mock('./components/QuittingDisplay.js', () => ({
|
|
QuittingDisplay: () => <Text>Quitting...</Text>,
|
|
}));
|
|
|
|
describe('App', () => {
|
|
const mockUIState: Partial<UIState> = {
|
|
streamingState: StreamingState.Idle,
|
|
quittingMessages: null,
|
|
dialogsVisible: false,
|
|
mainControlsRef: { current: null },
|
|
};
|
|
|
|
it('should render main content and composer when not quitting', () => {
|
|
const { lastFrame } = render(
|
|
<UIStateContext.Provider value={mockUIState as UIState}>
|
|
<App />
|
|
</UIStateContext.Provider>,
|
|
);
|
|
|
|
expect(lastFrame()).toContain('MainContent');
|
|
expect(lastFrame()).toContain('Notifications');
|
|
expect(lastFrame()).toContain('Composer');
|
|
});
|
|
|
|
it('should render quitting display when quittingMessages is set', () => {
|
|
const quittingUIState = {
|
|
...mockUIState,
|
|
quittingMessages: [{ id: 1, type: 'user', text: 'test' }],
|
|
} as UIState;
|
|
|
|
const { lastFrame } = render(
|
|
<UIStateContext.Provider value={quittingUIState}>
|
|
<App />
|
|
</UIStateContext.Provider>,
|
|
);
|
|
|
|
expect(lastFrame()).toContain('Quitting...');
|
|
});
|
|
|
|
it('should render dialog manager when dialogs are visible', () => {
|
|
const dialogUIState = {
|
|
...mockUIState,
|
|
dialogsVisible: true,
|
|
} as UIState;
|
|
|
|
const { lastFrame } = render(
|
|
<UIStateContext.Provider value={dialogUIState}>
|
|
<App />
|
|
</UIStateContext.Provider>,
|
|
);
|
|
|
|
expect(lastFrame()).toContain('MainContent');
|
|
expect(lastFrame()).toContain('Notifications');
|
|
expect(lastFrame()).toContain('DialogManager');
|
|
});
|
|
});
|