mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-29 23:41:29 -07:00
147 lines
4.6 KiB
TypeScript
147 lines
4.6 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { render } from '../../../test-utils/render.js';
|
|
import { describe, it, expect } from 'vitest';
|
|
import { Box } from 'ink';
|
|
import { TodoTray } from './Todo.js';
|
|
import type { Todo } from '@google/gemini-cli-core';
|
|
import type { UIState } from '../../contexts/UIStateContext.js';
|
|
import { UIStateContext } from '../../contexts/UIStateContext.js';
|
|
import type { HistoryItem } from '../../types.js';
|
|
import { ToolCallStatus } from '../../types.js';
|
|
|
|
const createTodoHistoryItem = (todos: Todo[]): HistoryItem =>
|
|
({
|
|
type: 'tool_group',
|
|
id: '1',
|
|
tools: [
|
|
{
|
|
name: 'write_todos',
|
|
callId: 'tool-1',
|
|
status: ToolCallStatus.Success,
|
|
resultDisplay: {
|
|
todos,
|
|
},
|
|
},
|
|
],
|
|
}) as unknown as HistoryItem;
|
|
|
|
describe.each([true, false])(
|
|
'<TodoTray /> (showFullTodos: %s)',
|
|
(showFullTodos: boolean) => {
|
|
const renderWithUiState = (uiState: Partial<UIState>) =>
|
|
render(
|
|
<UIStateContext.Provider value={uiState as UIState}>
|
|
<TodoTray />
|
|
</UIStateContext.Provider>,
|
|
);
|
|
|
|
it('renders null when no todos are in the history', () => {
|
|
const { lastFrame } = renderWithUiState({ history: [], showFullTodos });
|
|
expect(lastFrame()).toMatchSnapshot();
|
|
});
|
|
|
|
it('renders null when todo list is empty', () => {
|
|
const { lastFrame } = renderWithUiState({
|
|
history: [createTodoHistoryItem([])],
|
|
showFullTodos,
|
|
});
|
|
expect(lastFrame()).toMatchSnapshot();
|
|
});
|
|
|
|
it('renders when todos exist but none are in progress', () => {
|
|
const { lastFrame } = renderWithUiState({
|
|
history: [
|
|
createTodoHistoryItem([
|
|
{ description: 'Pending Task', status: 'pending' },
|
|
{ description: 'In Progress Task', status: 'cancelled' },
|
|
{ description: 'Completed Task', status: 'completed' },
|
|
]),
|
|
],
|
|
showFullTodos,
|
|
});
|
|
expect(lastFrame()).toMatchSnapshot();
|
|
});
|
|
|
|
it('renders when todos exist and one is in progress', () => {
|
|
const { lastFrame } = renderWithUiState({
|
|
history: [
|
|
createTodoHistoryItem([
|
|
{ description: 'Pending Task', status: 'pending' },
|
|
{ description: 'Task 2', status: 'in_progress' },
|
|
{ description: 'In Progress Task', status: 'cancelled' },
|
|
{ description: 'Completed Task', status: 'completed' },
|
|
]),
|
|
],
|
|
showFullTodos,
|
|
});
|
|
expect(lastFrame()).toMatchSnapshot();
|
|
});
|
|
|
|
it('renders a todo list with long descriptions that wrap when full view is on', () => {
|
|
const { lastFrame } = render(
|
|
<Box width="50">
|
|
<UIStateContext.Provider
|
|
value={
|
|
{
|
|
history: [
|
|
createTodoHistoryItem([
|
|
{
|
|
description:
|
|
'This is a very long description for a pending task that should wrap around multiple lines when the terminal width is constrained.',
|
|
status: 'in_progress',
|
|
},
|
|
{
|
|
description:
|
|
'Another completed task with an equally verbose description to test wrapping behavior.',
|
|
status: 'completed',
|
|
},
|
|
]),
|
|
],
|
|
showFullTodos,
|
|
} as UIState
|
|
}
|
|
>
|
|
<TodoTray />
|
|
</UIStateContext.Provider>
|
|
</Box>,
|
|
);
|
|
expect(lastFrame()).toMatchSnapshot();
|
|
});
|
|
|
|
it('renders the most recent todo list when multiple write_todos calls are in history', () => {
|
|
const { lastFrame } = renderWithUiState({
|
|
history: [
|
|
createTodoHistoryItem([
|
|
{ description: 'Older Task 1', status: 'completed' },
|
|
{ description: 'Older Task 2', status: 'pending' },
|
|
]),
|
|
createTodoHistoryItem([
|
|
{ description: 'Newer Task 1', status: 'pending' },
|
|
{ description: 'Newer Task 2', status: 'in_progress' },
|
|
]),
|
|
],
|
|
showFullTodos,
|
|
});
|
|
expect(lastFrame()).toMatchSnapshot();
|
|
});
|
|
|
|
it('renders full list when all todos are inactive', () => {
|
|
const { lastFrame } = renderWithUiState({
|
|
history: [
|
|
createTodoHistoryItem([
|
|
{ description: 'Task 1', status: 'completed' },
|
|
{ description: 'Task 2', status: 'cancelled' },
|
|
]),
|
|
],
|
|
showFullTodos,
|
|
});
|
|
expect(lastFrame()).toMatchSnapshot();
|
|
});
|
|
},
|
|
);
|