diff options
| author | Nick Salerni <[email protected]> | 2025-07-17 07:14:35 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-17 14:14:35 +0000 |
| commit | 0d64355be6f69beb09c6c2f9fb1d08eb42f5f8e7 (patch) | |
| tree | 1fa9739b909ef67b20d2797f311b6dd596dada90 /packages/cli/src/ui/commands/clearCommand.test.ts | |
| parent | ac8e98511edc89533cf906f87835752c4531423a (diff) | |
bug(ux): update context percentage when /clear command is run (#4162)
Co-authored-by: matt korwel <[email protected]>
Diffstat (limited to 'packages/cli/src/ui/commands/clearCommand.test.ts')
| -rw-r--r-- | packages/cli/src/ui/commands/clearCommand.test.ts | 32 |
1 files changed, 27 insertions, 5 deletions
diff --git a/packages/cli/src/ui/commands/clearCommand.test.ts b/packages/cli/src/ui/commands/clearCommand.test.ts index 8019dd68..10d54f4b 100644 --- a/packages/cli/src/ui/commands/clearCommand.test.ts +++ b/packages/cli/src/ui/commands/clearCommand.test.ts @@ -8,7 +8,19 @@ import { vi, describe, it, expect, beforeEach, Mock } from 'vitest'; import { clearCommand } from './clearCommand.js'; import { type CommandContext } from './types.js'; import { createMockCommandContext } from '../../test-utils/mockCommandContext.js'; -import { GeminiClient } from '@google/gemini-cli-core'; + +// Mock the telemetry service +vi.mock('@google/gemini-cli-core', async () => { + const actual = await vi.importActual('@google/gemini-cli-core'); + return { + ...actual, + uiTelemetryService: { + resetLastPromptTokenCount: vi.fn(), + }, + }; +}); + +import { GeminiClient, uiTelemetryService } from '@google/gemini-cli-core'; describe('clearCommand', () => { let mockContext: CommandContext; @@ -16,6 +28,7 @@ describe('clearCommand', () => { beforeEach(() => { mockResetChat = vi.fn().mockResolvedValue(undefined); + vi.clearAllMocks(); mockContext = createMockCommandContext({ services: { @@ -29,7 +42,7 @@ describe('clearCommand', () => { }); }); - it('should set debug message, reset chat, and clear UI when config is available', async () => { + it('should set debug message, reset chat, reset telemetry, and clear UI when config is available', async () => { if (!clearCommand.action) { throw new Error('clearCommand must have an action.'); } @@ -42,18 +55,24 @@ describe('clearCommand', () => { expect(mockContext.ui.setDebugMessage).toHaveBeenCalledTimes(1); expect(mockResetChat).toHaveBeenCalledTimes(1); - + expect(uiTelemetryService.resetLastPromptTokenCount).toHaveBeenCalledTimes( + 1, + ); expect(mockContext.ui.clear).toHaveBeenCalledTimes(1); // Check the order of operations. const setDebugMessageOrder = (mockContext.ui.setDebugMessage as Mock).mock .invocationCallOrder[0]; const resetChatOrder = mockResetChat.mock.invocationCallOrder[0]; + const resetTelemetryOrder = ( + uiTelemetryService.resetLastPromptTokenCount as Mock + ).mock.invocationCallOrder[0]; const clearOrder = (mockContext.ui.clear as Mock).mock .invocationCallOrder[0]; expect(setDebugMessageOrder).toBeLessThan(resetChatOrder); - expect(resetChatOrder).toBeLessThan(clearOrder); + expect(resetChatOrder).toBeLessThan(resetTelemetryOrder); + expect(resetTelemetryOrder).toBeLessThan(clearOrder); }); it('should not attempt to reset chat if config service is not available', async () => { @@ -70,9 +89,12 @@ describe('clearCommand', () => { await clearCommand.action(nullConfigContext, ''); expect(nullConfigContext.ui.setDebugMessage).toHaveBeenCalledWith( - 'Clearing terminal and resetting chat.', + 'Clearing terminal.', ); expect(mockResetChat).not.toHaveBeenCalled(); + expect(uiTelemetryService.resetLastPromptTokenCount).toHaveBeenCalledTimes( + 1, + ); expect(nullConfigContext.ui.clear).toHaveBeenCalledTimes(1); }); }); |
