mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-13 23:51:16 -07:00
Co-authored-by: Keith Guerin <keithguerin@gmail.com> Co-authored-by: Jacob Richman <jacob314@gmail.com>
93 lines
2.4 KiB
TypeScript
93 lines
2.4 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { renderWithProviders } from '../../test-utils/render.js';
|
|
import { ContextUsageDisplay } from './ContextUsageDisplay.js';
|
|
import { describe, it, expect, vi } from 'vitest';
|
|
|
|
vi.mock('@google/gemini-cli-core', async (importOriginal) => {
|
|
const actual =
|
|
await importOriginal<typeof import('@google/gemini-cli-core')>();
|
|
return {
|
|
...actual,
|
|
tokenLimit: () => 10000,
|
|
};
|
|
});
|
|
|
|
describe('ContextUsageDisplay', () => {
|
|
it('renders correct percentage used', async () => {
|
|
const { lastFrame, waitUntilReady, unmount } = renderWithProviders(
|
|
<ContextUsageDisplay
|
|
promptTokenCount={5000}
|
|
model="gemini-pro"
|
|
terminalWidth={120}
|
|
/>,
|
|
);
|
|
await waitUntilReady();
|
|
const output = lastFrame();
|
|
expect(output).toContain('50% used');
|
|
unmount();
|
|
});
|
|
|
|
it('renders correctly when usage is 0%', async () => {
|
|
const { lastFrame, waitUntilReady, unmount } = renderWithProviders(
|
|
<ContextUsageDisplay
|
|
promptTokenCount={0}
|
|
model="gemini-pro"
|
|
terminalWidth={120}
|
|
/>,
|
|
);
|
|
await waitUntilReady();
|
|
const output = lastFrame();
|
|
expect(output).toContain('0% used');
|
|
unmount();
|
|
});
|
|
|
|
it('renders abbreviated label when terminal width is small', async () => {
|
|
const { lastFrame, waitUntilReady, unmount } = renderWithProviders(
|
|
<ContextUsageDisplay
|
|
promptTokenCount={2000}
|
|
model="gemini-pro"
|
|
terminalWidth={80}
|
|
/>,
|
|
{ width: 80 },
|
|
);
|
|
await waitUntilReady();
|
|
const output = lastFrame();
|
|
expect(output).toContain('20%');
|
|
expect(output).not.toContain('context used');
|
|
unmount();
|
|
});
|
|
|
|
it('renders 80% correctly', async () => {
|
|
const { lastFrame, waitUntilReady, unmount } = renderWithProviders(
|
|
<ContextUsageDisplay
|
|
promptTokenCount={8000}
|
|
model="gemini-pro"
|
|
terminalWidth={120}
|
|
/>,
|
|
);
|
|
await waitUntilReady();
|
|
const output = lastFrame();
|
|
expect(output).toContain('80% used');
|
|
unmount();
|
|
});
|
|
|
|
it('renders 100% when full', async () => {
|
|
const { lastFrame, waitUntilReady, unmount } = renderWithProviders(
|
|
<ContextUsageDisplay
|
|
promptTokenCount={10000}
|
|
model="gemini-pro"
|
|
terminalWidth={120}
|
|
/>,
|
|
);
|
|
await waitUntilReady();
|
|
const output = lastFrame();
|
|
expect(output).toContain('100% used');
|
|
unmount();
|
|
});
|
|
});
|