2025-05-31 12:49:28 -07:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
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';
|
2025-08-26 00:04:53 +02:00
|
|
|
import { StreamingState } from './types.js';
|
2025-05-31 12:49:28 -07:00
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
// Mock components to isolate App component testing
|
|
|
|
|
vi.mock('./components/MainContent.js', () => ({
|
|
|
|
|
MainContent: () => <Text>MainContent</Text>,
|
2025-08-08 11:02:27 -07:00
|
|
|
}));
|
|
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
vi.mock('./components/DialogManager.js', () => ({
|
|
|
|
|
DialogManager: () => <Text>DialogManager</Text>,
|
2025-09-03 11:44:26 -07:00
|
|
|
}));
|
|
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
vi.mock('./components/Composer.js', () => ({
|
|
|
|
|
Composer: () => <Text>Composer</Text>,
|
2025-05-31 12:49:28 -07:00
|
|
|
}));
|
|
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
vi.mock('./components/Notifications.js', () => ({
|
|
|
|
|
Notifications: () => <Text>Notifications</Text>,
|
2025-08-30 03:18:22 +09:00
|
|
|
}));
|
|
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
vi.mock('./components/QuittingDisplay.js', () => ({
|
|
|
|
|
QuittingDisplay: () => <Text>Quitting...</Text>,
|
2025-07-25 17:35:26 -07:00
|
|
|
}));
|
|
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
describe('App', () => {
|
|
|
|
|
const mockUIState: Partial<UIState> = {
|
|
|
|
|
streamingState: StreamingState.Idle,
|
|
|
|
|
quittingMessages: null,
|
|
|
|
|
dialogsVisible: false,
|
|
|
|
|
mainControlsRef: { current: null },
|
2025-05-31 12:49:28 -07:00
|
|
|
};
|
2025-06-30 01:56:37 +02:00
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
it('should render main content and composer when not quitting', () => {
|
|
|
|
|
const { lastFrame } = render(
|
|
|
|
|
<UIStateContext.Provider value={mockUIState as UIState}>
|
|
|
|
|
<App />
|
|
|
|
|
</UIStateContext.Provider>,
|
2025-07-09 21:16:42 +00:00
|
|
|
);
|
2025-05-31 12:49:28 -07:00
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
expect(lastFrame()).toContain('MainContent');
|
|
|
|
|
expect(lastFrame()).toContain('Notifications');
|
|
|
|
|
expect(lastFrame()).toContain('Composer');
|
2025-07-28 17:56:52 -07:00
|
|
|
});
|
|
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
it('should render quitting display when quittingMessages is set', () => {
|
|
|
|
|
const quittingUIState = {
|
|
|
|
|
...mockUIState,
|
|
|
|
|
quittingMessages: [{ id: 1, type: 'user', text: 'test' }],
|
|
|
|
|
} as UIState;
|
2025-07-18 18:14:46 -04:00
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
const { lastFrame } = render(
|
|
|
|
|
<UIStateContext.Provider value={quittingUIState}>
|
|
|
|
|
<App />
|
|
|
|
|
</UIStateContext.Provider>,
|
2025-07-18 18:14:46 -04:00
|
|
|
);
|
|
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
expect(lastFrame()).toContain('Quitting...');
|
2025-08-19 17:06:01 -04:00
|
|
|
});
|
|
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
it('should render dialog manager when dialogs are visible', () => {
|
|
|
|
|
const dialogUIState = {
|
|
|
|
|
...mockUIState,
|
|
|
|
|
dialogsVisible: true,
|
|
|
|
|
} as UIState;
|
2025-08-19 17:06:01 -04:00
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
const { lastFrame } = render(
|
|
|
|
|
<UIStateContext.Provider value={dialogUIState}>
|
|
|
|
|
<App />
|
|
|
|
|
</UIStateContext.Provider>,
|
2025-08-19 17:06:01 -04:00
|
|
|
);
|
2025-08-26 12:01:31 -06:00
|
|
|
|
2025-09-06 01:39:02 -04:00
|
|
|
expect(lastFrame()).toContain('MainContent');
|
|
|
|
|
expect(lastFrame()).toContain('Notifications');
|
|
|
|
|
expect(lastFrame()).toContain('DialogManager');
|
2025-08-26 12:01:31 -06:00
|
|
|
});
|
2025-05-31 12:49:28 -07:00
|
|
|
});
|