From 770f862832dfef477705bee69bd2a84397d105a8 Mon Sep 17 00:00:00 2001
From: Abhi <43648792+abhipatel12@users.noreply.github.com>
Date: Sun, 29 Jun 2025 20:44:33 -0400
Subject: feat: Change /stats to include more detailed breakdowns (#2615)
---
.../src/ui/components/HistoryItemDisplay.test.tsx | 63 +++++++++++++---------
1 file changed, 37 insertions(+), 26 deletions(-)
(limited to 'packages/cli/src/ui/components/HistoryItemDisplay.test.tsx')
diff --git a/packages/cli/src/ui/components/HistoryItemDisplay.test.tsx b/packages/cli/src/ui/components/HistoryItemDisplay.test.tsx
index 5816f7b4..b40b20bc 100644
--- a/packages/cli/src/ui/components/HistoryItemDisplay.test.tsx
+++ b/packages/cli/src/ui/components/HistoryItemDisplay.test.tsx
@@ -8,7 +8,7 @@ import { render } from 'ink-testing-library';
import { describe, it, expect, vi } from 'vitest';
import { HistoryItemDisplay } from './HistoryItemDisplay.js';
import { HistoryItem, MessageType } from '../types.js';
-import { CumulativeStats } from '../contexts/SessionContext.js';
+import { SessionStatsProvider } from '../contexts/SessionContext.js';
// Mock child components
vi.mock('./messages/ToolGroupMessage.js', () => ({
@@ -36,25 +36,15 @@ describe('', () => {
});
it('renders StatsDisplay for "stats" type', () => {
- const stats: CumulativeStats = {
- turnCount: 1,
- promptTokenCount: 10,
- candidatesTokenCount: 20,
- totalTokenCount: 30,
- cachedContentTokenCount: 5,
- toolUsePromptTokenCount: 2,
- thoughtsTokenCount: 3,
- apiTimeMs: 123,
- };
const item: HistoryItem = {
...baseItem,
type: MessageType.STATS,
- stats,
- lastTurnStats: stats,
duration: '1s',
};
const { lastFrame } = render(
- ,
+
+
+ ,
);
expect(lastFrame()).toContain('Stats');
});
@@ -76,25 +66,46 @@ describe('', () => {
expect(lastFrame()).toContain('About Gemini CLI');
});
- it('renders SessionSummaryDisplay for "quit" type', () => {
- const stats: CumulativeStats = {
- turnCount: 1,
- promptTokenCount: 10,
- candidatesTokenCount: 20,
- totalTokenCount: 30,
- cachedContentTokenCount: 5,
- toolUsePromptTokenCount: 2,
- thoughtsTokenCount: 3,
- apiTimeMs: 123,
+ it('renders ModelStatsDisplay for "model_stats" type', () => {
+ const item: HistoryItem = {
+ ...baseItem,
+ type: 'model_stats',
+ };
+ const { lastFrame } = render(
+
+
+ ,
+ );
+ expect(lastFrame()).toContain(
+ 'No API calls have been made in this session.',
+ );
+ });
+
+ it('renders ToolStatsDisplay for "tool_stats" type', () => {
+ const item: HistoryItem = {
+ ...baseItem,
+ type: 'tool_stats',
};
+ const { lastFrame } = render(
+
+
+ ,
+ );
+ expect(lastFrame()).toContain(
+ 'No tool calls have been made in this session.',
+ );
+ });
+
+ it('renders SessionSummaryDisplay for "quit" type', () => {
const item: HistoryItem = {
...baseItem,
type: 'quit',
- stats,
duration: '1s',
};
const { lastFrame } = render(
- ,
+
+
+ ,
);
expect(lastFrame()).toContain('Agent powering down. Goodbye!');
});
--
cgit v1.2.3