mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-10 05:10:59 -07:00
309 lines
9.9 KiB
TypeScript
309 lines
9.9 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { describe, it, expect } from 'vitest';
|
|
import { act } from 'react';
|
|
import { renderHook } from '../../test-utils/render.js';
|
|
import { useHistory } from './useHistoryManager.js';
|
|
import type { HistoryItem } from '../types.js';
|
|
|
|
describe('useHistoryManager', () => {
|
|
it('should initialize with an empty history', async () => {
|
|
const { result } = await renderHook(() => useHistory());
|
|
expect(result.current.history).toEqual([]);
|
|
});
|
|
|
|
it('should add an item to history with a unique ID', async () => {
|
|
const { result } = await renderHook(() => useHistory());
|
|
const timestamp = Date.now();
|
|
const itemData: Omit<HistoryItem, 'id'> = {
|
|
type: 'user', // Replaced HistoryItemType.User
|
|
text: 'Hello',
|
|
};
|
|
|
|
act(() => {
|
|
result.current.addItem(itemData, timestamp);
|
|
});
|
|
|
|
expect(result.current.history).toHaveLength(1);
|
|
expect(result.current.history[0]).toEqual(
|
|
expect.objectContaining({
|
|
...itemData,
|
|
id: expect.any(Number),
|
|
}),
|
|
);
|
|
// Basic check that ID incorporates timestamp
|
|
expect(result.current.history[0].id).toBeGreaterThanOrEqual(timestamp);
|
|
});
|
|
|
|
it('should generate strictly increasing IDs even if baseTimestamp goes backwards', async () => {
|
|
const { result } = await renderHook(() => useHistory());
|
|
const timestamp = 1000000;
|
|
const itemData: Omit<HistoryItem, 'id'> = { type: 'info', text: 'First' };
|
|
|
|
let id1!: number;
|
|
let id2!: number;
|
|
|
|
act(() => {
|
|
id1 = result.current.addItem(itemData, timestamp);
|
|
// Try to add with a smaller timestamp
|
|
id2 = result.current.addItem(itemData, timestamp - 500);
|
|
});
|
|
|
|
expect(id1).toBe(timestamp);
|
|
expect(id2).toBe(id1 + 1);
|
|
expect(result.current.history[1].id).toBe(id2);
|
|
});
|
|
|
|
it('should ensure new IDs start after existing IDs when resuming a session', async () => {
|
|
const initialItems: HistoryItem[] = [
|
|
{ id: 5000, type: 'info', text: 'Existing' },
|
|
];
|
|
const { result } = await renderHook(() => useHistory({ initialItems }));
|
|
|
|
let newId!: number;
|
|
act(() => {
|
|
// Try to add with a timestamp smaller than the highest existing ID
|
|
newId = result.current.addItem({ type: 'info', text: 'New' }, 2000);
|
|
});
|
|
|
|
expect(newId).toBe(5001);
|
|
expect(result.current.history[1].id).toBe(5001);
|
|
});
|
|
|
|
it('should update lastIdRef when loading new history', async () => {
|
|
const { result } = await renderHook(() => useHistory());
|
|
|
|
act(() => {
|
|
result.current.loadHistory([{ id: 8000, type: 'info', text: 'Loaded' }]);
|
|
});
|
|
|
|
let newId!: number;
|
|
act(() => {
|
|
newId = result.current.addItem({ type: 'info', text: 'New' }, 1000);
|
|
});
|
|
|
|
expect(newId).toBe(8001);
|
|
});
|
|
|
|
it('should generate unique IDs for items added with the same base timestamp', async () => {
|
|
const { result } = await renderHook(() => useHistory());
|
|
const timestamp = Date.now();
|
|
const itemData1: Omit<HistoryItem, 'id'> = {
|
|
type: 'user', // Replaced HistoryItemType.User
|
|
text: 'First',
|
|
};
|
|
const itemData2: Omit<HistoryItem, 'id'> = {
|
|
type: 'gemini', // Replaced HistoryItemType.Gemini
|
|
text: 'Second',
|
|
};
|
|
|
|
let id1!: number;
|
|
let id2!: number;
|
|
|
|
act(() => {
|
|
id1 = result.current.addItem(itemData1, timestamp);
|
|
id2 = result.current.addItem(itemData2, timestamp);
|
|
});
|
|
|
|
expect(result.current.history).toHaveLength(2);
|
|
expect(id1).not.toEqual(id2);
|
|
expect(result.current.history[0].id).toEqual(id1);
|
|
expect(result.current.history[1].id).toEqual(id2);
|
|
// IDs should be sequential based on the counter
|
|
expect(id2).toBeGreaterThan(id1);
|
|
});
|
|
|
|
it('should update an existing history item', async () => {
|
|
const { result } = await renderHook(() => useHistory());
|
|
const timestamp = Date.now();
|
|
const initialItem: Omit<HistoryItem, 'id'> = {
|
|
type: 'gemini', // Replaced HistoryItemType.Gemini
|
|
text: 'Initial content',
|
|
};
|
|
let itemId!: number;
|
|
|
|
act(() => {
|
|
itemId = result.current.addItem(initialItem, timestamp);
|
|
});
|
|
|
|
const updatedText = 'Updated content';
|
|
act(() => {
|
|
result.current.updateItem(itemId, { text: updatedText });
|
|
});
|
|
|
|
expect(result.current.history).toHaveLength(1);
|
|
expect(result.current.history[0]).toEqual({
|
|
...initialItem,
|
|
id: itemId,
|
|
text: updatedText,
|
|
});
|
|
});
|
|
|
|
it('should not change history if updateHistoryItem is called with a nonexistent ID', async () => {
|
|
const { result } = await renderHook(() => useHistory());
|
|
const timestamp = Date.now();
|
|
const itemData: Omit<HistoryItem, 'id'> = {
|
|
type: 'user', // Replaced HistoryItemType.User
|
|
text: 'Hello',
|
|
};
|
|
|
|
act(() => {
|
|
result.current.addItem(itemData, timestamp);
|
|
});
|
|
|
|
const originalHistory = [...result.current.history]; // Clone before update attempt
|
|
|
|
act(() => {
|
|
result.current.updateItem(99999, { text: 'Should not apply' }); // Nonexistent ID
|
|
});
|
|
|
|
expect(result.current.history).toEqual(originalHistory);
|
|
});
|
|
|
|
it('should clear the history', async () => {
|
|
const { result } = await renderHook(() => useHistory());
|
|
const timestamp = Date.now();
|
|
const itemData1: Omit<HistoryItem, 'id'> = {
|
|
type: 'user', // Replaced HistoryItemType.User
|
|
text: 'First',
|
|
};
|
|
const itemData2: Omit<HistoryItem, 'id'> = {
|
|
type: 'gemini', // Replaced HistoryItemType.Gemini
|
|
text: 'Second',
|
|
};
|
|
|
|
act(() => {
|
|
result.current.addItem(itemData1, timestamp);
|
|
result.current.addItem(itemData2, timestamp);
|
|
});
|
|
|
|
expect(result.current.history).toHaveLength(2);
|
|
|
|
act(() => {
|
|
result.current.clearItems();
|
|
});
|
|
|
|
expect(result.current.history).toEqual([]);
|
|
});
|
|
|
|
it('should not add consecutive duplicate user messages', async () => {
|
|
const { result } = await renderHook(() => useHistory());
|
|
const timestamp = Date.now();
|
|
const itemData1: Omit<HistoryItem, 'id'> = {
|
|
type: 'user', // Replaced HistoryItemType.User
|
|
text: 'Duplicate message',
|
|
};
|
|
const itemData2: Omit<HistoryItem, 'id'> = {
|
|
type: 'user', // Replaced HistoryItemType.User
|
|
text: 'Duplicate message',
|
|
};
|
|
const itemData3: Omit<HistoryItem, 'id'> = {
|
|
type: 'gemini', // Replaced HistoryItemType.Gemini
|
|
text: 'Gemini response',
|
|
};
|
|
const itemData4: Omit<HistoryItem, 'id'> = {
|
|
type: 'user', // Replaced HistoryItemType.User
|
|
text: 'Another user message',
|
|
};
|
|
|
|
act(() => {
|
|
result.current.addItem(itemData1, timestamp);
|
|
result.current.addItem(itemData2, timestamp + 1); // Same text, different timestamp
|
|
result.current.addItem(itemData3, timestamp + 2);
|
|
result.current.addItem(itemData4, timestamp + 3);
|
|
});
|
|
|
|
expect(result.current.history).toHaveLength(3);
|
|
expect(result.current.history[0].text).toBe('Duplicate message');
|
|
expect(result.current.history[1].text).toBe('Gemini response');
|
|
expect(result.current.history[2].text).toBe('Another user message');
|
|
});
|
|
|
|
it('should add duplicate user messages if they are not consecutive', async () => {
|
|
const { result } = await renderHook(() => useHistory());
|
|
const timestamp = Date.now();
|
|
const itemData1: Omit<HistoryItem, 'id'> = {
|
|
type: 'user', // Replaced HistoryItemType.User
|
|
text: 'Message 1',
|
|
};
|
|
const itemData2: Omit<HistoryItem, 'id'> = {
|
|
type: 'gemini', // Replaced HistoryItemType.Gemini
|
|
text: 'Gemini response',
|
|
};
|
|
const itemData3: Omit<HistoryItem, 'id'> = {
|
|
type: 'user', // Replaced HistoryItemType.User
|
|
text: 'Message 1', // Duplicate text, but not consecutive
|
|
};
|
|
|
|
act(() => {
|
|
result.current.addItem(itemData1, timestamp);
|
|
result.current.addItem(itemData2, timestamp + 1);
|
|
result.current.addItem(itemData3, timestamp + 2);
|
|
});
|
|
|
|
expect(result.current.history).toHaveLength(3);
|
|
expect(result.current.history[0].text).toBe('Message 1');
|
|
expect(result.current.history[1].text).toBe('Gemini response');
|
|
expect(result.current.history[2].text).toBe('Message 1');
|
|
});
|
|
|
|
it('should use Date.now() as default baseTimestamp if not provided', async () => {
|
|
const { result } = await renderHook(() => useHistory());
|
|
const before = Date.now();
|
|
const itemData: Omit<HistoryItem, 'id'> = {
|
|
type: 'user',
|
|
text: 'Default timestamp test',
|
|
};
|
|
|
|
act(() => {
|
|
result.current.addItem(itemData);
|
|
});
|
|
const after = Date.now();
|
|
|
|
expect(result.current.history).toHaveLength(1);
|
|
// ID should be >= before (since baseTimestamp defaults to Date.now())
|
|
expect(result.current.history[0].id).toBeGreaterThanOrEqual(before);
|
|
expect(result.current.history[0].id).toBeLessThanOrEqual(after + 1);
|
|
});
|
|
|
|
describe('initialItems with auth information', () => {
|
|
it('should initialize with auth information', async () => {
|
|
const email = 'user@example.com';
|
|
const tier = 'Pro';
|
|
const authMessage = `Authenticated as: ${email} (Plan: ${tier})`;
|
|
const initialItems: HistoryItem[] = [
|
|
{
|
|
id: 1,
|
|
type: 'info',
|
|
text: authMessage,
|
|
},
|
|
];
|
|
const { result } = await renderHook(() => useHistory({ initialItems }));
|
|
expect(result.current.history).toHaveLength(1);
|
|
expect(result.current.history[0].text).toBe(authMessage);
|
|
});
|
|
|
|
it('should add items with auth information via addItem', async () => {
|
|
const { result } = await renderHook(() => useHistory());
|
|
const email = 'user@example.com';
|
|
const tier = 'Pro';
|
|
const authMessage = `Authenticated as: ${email} (Plan: ${tier})`;
|
|
|
|
act(() => {
|
|
result.current.addItem({
|
|
type: 'info',
|
|
text: authMessage,
|
|
});
|
|
});
|
|
|
|
expect(result.current.history).toHaveLength(1);
|
|
expect(result.current.history[0].text).toBe(authMessage);
|
|
expect(result.current.history[0].type).toBe('info');
|
|
});
|
|
});
|
|
});
|