mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-15 07:41:03 -07:00
106 lines
3.4 KiB
TypeScript
106 lines
3.4 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2026 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { renderWithProviders } from '../../../test-utils/render.js';
|
|
import { createMockSettings } from '../../../test-utils/settings.js';
|
|
import { ToolResultDisplay } from './ToolResultDisplay.js';
|
|
import { describe, it, expect } from 'vitest';
|
|
import { makeFakeConfig, type AnsiOutput } from '@google/gemini-cli-core';
|
|
|
|
describe('ToolResultDisplay Overflow', () => {
|
|
it('shows the head of the content when overflowDirection is bottom (string)', async () => {
|
|
const content = 'Line 1\nLine 2\nLine 3\nLine 4\nLine 5';
|
|
const { lastFrame, waitUntilReady, unmount } = await renderWithProviders(
|
|
<ToolResultDisplay
|
|
resultDisplay={content}
|
|
terminalWidth={80}
|
|
maxLines={3}
|
|
overflowDirection="bottom"
|
|
/>,
|
|
{
|
|
config: makeFakeConfig({ useAlternateBuffer: false }),
|
|
settings: createMockSettings({ ui: { useAlternateBuffer: false } }),
|
|
uiState: { constrainHeight: true, terminalHeight: 50 },
|
|
},
|
|
);
|
|
await waitUntilReady();
|
|
const output = lastFrame();
|
|
|
|
expect(output).not.toContain('Line 1');
|
|
expect(output).not.toContain('Line 2');
|
|
expect(output).toContain('Line 3');
|
|
expect(output).toContain('Line 4');
|
|
expect(output).toContain('Line 5');
|
|
unmount();
|
|
});
|
|
|
|
it('shows the tail of the content when overflowDirection is top (string default)', async () => {
|
|
const content = 'Line 1\nLine 2\nLine 3\nLine 4\nLine 5';
|
|
const { lastFrame, waitUntilReady, unmount } = await renderWithProviders(
|
|
<ToolResultDisplay
|
|
resultDisplay={content}
|
|
terminalWidth={80}
|
|
maxLines={3}
|
|
overflowDirection="top"
|
|
/>,
|
|
{
|
|
config: makeFakeConfig({ useAlternateBuffer: false }),
|
|
settings: createMockSettings({ ui: { useAlternateBuffer: false } }),
|
|
uiState: { constrainHeight: true, terminalHeight: 50 },
|
|
},
|
|
);
|
|
await waitUntilReady();
|
|
const output = lastFrame();
|
|
|
|
expect(output).not.toContain('Line 1');
|
|
expect(output).not.toContain('Line 2');
|
|
expect(output).toContain('Line 3');
|
|
expect(output).toContain('Line 4');
|
|
expect(output).toContain('Line 5');
|
|
unmount();
|
|
});
|
|
|
|
it('shows the head of the content when overflowDirection is bottom (ANSI)', async () => {
|
|
const ansiResult: AnsiOutput = Array.from({ length: 5 }, (_, i) => [
|
|
{
|
|
text: `Line ${i + 1}`,
|
|
fg: '',
|
|
bg: '',
|
|
bold: false,
|
|
italic: false,
|
|
underline: false,
|
|
dim: false,
|
|
inverse: false,
|
|
isUninitialized: false,
|
|
},
|
|
]);
|
|
const { lastFrame, waitUntilReady, unmount } = await renderWithProviders(
|
|
<ToolResultDisplay
|
|
resultDisplay={ansiResult}
|
|
terminalWidth={80}
|
|
maxLines={3}
|
|
overflowDirection="bottom"
|
|
/>,
|
|
{
|
|
config: makeFakeConfig({ useAlternateBuffer: false }),
|
|
settings: createMockSettings({ ui: { useAlternateBuffer: false } }),
|
|
uiState: { constrainHeight: true, terminalHeight: 50 },
|
|
},
|
|
);
|
|
await waitUntilReady();
|
|
const output = lastFrame();
|
|
|
|
expect(output).toContain('Line 1');
|
|
expect(output).toContain('Line 2');
|
|
expect(output).toContain('Line 3');
|
|
expect(output).not.toContain('Line 4');
|
|
expect(output).not.toContain('Line 5');
|
|
// ScrollableList uses a scroll thumb rather than writing "hidden"
|
|
expect(output).toContain('█');
|
|
unmount();
|
|
});
|
|
});
|