mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-13 15:40:57 -07:00
413 lines
12 KiB
TypeScript
413 lines
12 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest';
|
|
import { HookSystem } from './hookSystem.js';
|
|
import { Config } from '../config/config.js';
|
|
import { HookType } from './types.js';
|
|
import { spawn } from 'node:child_process';
|
|
import type { ChildProcessWithoutNullStreams } from 'node:child_process';
|
|
import type { Readable, Writable } from 'node:stream';
|
|
|
|
// Mock type for the child_process spawn
|
|
type MockChildProcessWithoutNullStreams = ChildProcessWithoutNullStreams & {
|
|
mockStdoutOn: ReturnType<typeof vi.fn>;
|
|
mockStderrOn: ReturnType<typeof vi.fn>;
|
|
mockProcessOn: ReturnType<typeof vi.fn>;
|
|
};
|
|
|
|
// Mock child_process with importOriginal for partial mocking
|
|
vi.mock('node:child_process', async (importOriginal) => {
|
|
const actual = await importOriginal();
|
|
return {
|
|
...(actual as object),
|
|
spawn: vi.fn(),
|
|
};
|
|
});
|
|
|
|
// Mock debugLogger - use vi.hoisted to define mock before it's used in vi.mock
|
|
const mockDebugLogger = vi.hoisted(() => ({
|
|
debug: vi.fn(),
|
|
log: vi.fn(),
|
|
warn: vi.fn(),
|
|
error: vi.fn(),
|
|
}));
|
|
|
|
vi.mock('../utils/debugLogger.js', () => ({
|
|
debugLogger: mockDebugLogger,
|
|
}));
|
|
|
|
// Mock console methods
|
|
const mockConsole = {
|
|
log: vi.fn(),
|
|
warn: vi.fn(),
|
|
error: vi.fn(),
|
|
debug: vi.fn(),
|
|
};
|
|
|
|
vi.stubGlobal('console', mockConsole);
|
|
|
|
describe('HookSystem Integration', () => {
|
|
let hookSystem: HookSystem;
|
|
let config: Config;
|
|
let mockSpawn: MockChildProcessWithoutNullStreams;
|
|
|
|
beforeEach(() => {
|
|
vi.resetAllMocks();
|
|
|
|
// Create a real config with simple command hook configurations for testing
|
|
config = new Config({
|
|
model: 'gemini-1.5-flash',
|
|
targetDir: '/tmp/test-hooks',
|
|
sessionId: 'test-session',
|
|
debugMode: false,
|
|
cwd: '/tmp/test-hooks',
|
|
hooks: {
|
|
BeforeTool: [
|
|
{
|
|
matcher: 'TestTool',
|
|
hooks: [
|
|
{
|
|
type: HookType.Command,
|
|
command: 'echo',
|
|
timeout: 5000,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
});
|
|
|
|
// Provide getMessageBus mock for MessageBus integration tests
|
|
(config as unknown as { getMessageBus: () => unknown }).getMessageBus =
|
|
() => undefined;
|
|
|
|
hookSystem = new HookSystem(config);
|
|
|
|
// Set up spawn mock with accessible mock functions
|
|
const mockStdoutOn = vi.fn();
|
|
const mockStderrOn = vi.fn();
|
|
const mockProcessOn = vi.fn();
|
|
|
|
mockSpawn = {
|
|
stdin: {
|
|
write: vi.fn(),
|
|
end: vi.fn(),
|
|
on: vi.fn(),
|
|
} as unknown as Writable,
|
|
stdout: {
|
|
on: mockStdoutOn,
|
|
} as unknown as Readable,
|
|
stderr: {
|
|
on: mockStderrOn,
|
|
} as unknown as Readable,
|
|
on: mockProcessOn,
|
|
kill: vi.fn(),
|
|
killed: false,
|
|
mockStdoutOn,
|
|
mockStderrOn,
|
|
mockProcessOn,
|
|
} as unknown as MockChildProcessWithoutNullStreams;
|
|
|
|
vi.mocked(spawn).mockReturnValue(mockSpawn);
|
|
});
|
|
|
|
afterEach(async () => {
|
|
// No cleanup needed
|
|
});
|
|
|
|
describe('initialize', () => {
|
|
it('should initialize successfully', async () => {
|
|
await hookSystem.initialize();
|
|
|
|
expect(mockDebugLogger.debug).toHaveBeenCalledWith(
|
|
'Hook system initialized successfully',
|
|
);
|
|
|
|
expect(hookSystem.getAllHooks().length).toBe(1);
|
|
});
|
|
|
|
it('should not initialize twice', async () => {
|
|
await hookSystem.initialize();
|
|
await hookSystem.initialize(); // Second call should be no-op
|
|
|
|
// The system logs both registry initialization and system initialization
|
|
expect(mockDebugLogger.debug).toHaveBeenCalledWith(
|
|
'Hook system initialized successfully',
|
|
);
|
|
});
|
|
|
|
it('should handle initialization errors gracefully', async () => {
|
|
// Create a config with invalid hooks to trigger initialization errors
|
|
const invalidConfig = new Config({
|
|
model: 'gemini-1.5-flash',
|
|
targetDir: '/tmp/test-hooks-invalid',
|
|
sessionId: 'test-session-invalid',
|
|
debugMode: false,
|
|
cwd: '/tmp/test-hooks-invalid',
|
|
hooks: {
|
|
BeforeTool: [
|
|
{
|
|
hooks: [
|
|
{
|
|
type: 'invalid-type' as HookType, // Invalid hook type for testing
|
|
command: './test.sh',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
});
|
|
|
|
const invalidHookSystem = new HookSystem(invalidConfig);
|
|
|
|
// Should not throw, but should log warnings via debugLogger
|
|
await invalidHookSystem.initialize();
|
|
|
|
expect(mockDebugLogger.warn).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('getEventHandler', () => {
|
|
it('should return event bus when initialized', async () => {
|
|
await hookSystem.initialize();
|
|
|
|
// Set up spawn mock behavior for successful execution
|
|
mockSpawn.mockStdoutOn.mockImplementation(
|
|
(event: string, callback: (data: Buffer) => void) => {
|
|
if (event === 'data') {
|
|
setTimeout(() => callback(Buffer.from('')), 5); // echo outputs empty
|
|
}
|
|
},
|
|
);
|
|
|
|
mockSpawn.mockProcessOn.mockImplementation(
|
|
(event: string, callback: (code: number) => void) => {
|
|
if (event === 'close') {
|
|
setTimeout(() => callback(0), 10);
|
|
}
|
|
},
|
|
);
|
|
|
|
const eventBus = hookSystem.getEventHandler();
|
|
expect(eventBus).toBeDefined();
|
|
|
|
// Test that the event bus can actually fire events
|
|
const result = await eventBus.fireBeforeToolEvent('TestTool', {
|
|
test: 'data',
|
|
});
|
|
expect(result.success).toBe(true);
|
|
});
|
|
});
|
|
|
|
describe('hook execution', () => {
|
|
it('should execute hooks and return results', async () => {
|
|
await hookSystem.initialize();
|
|
|
|
// Set up spawn mock behavior for successful execution
|
|
mockSpawn.mockStdoutOn.mockImplementation(
|
|
(event: string, callback: (data: Buffer) => void) => {
|
|
if (event === 'data') {
|
|
setTimeout(() => callback(Buffer.from('')), 5); // echo outputs empty
|
|
}
|
|
},
|
|
);
|
|
|
|
mockSpawn.mockProcessOn.mockImplementation(
|
|
(event: string, callback: (code: number) => void) => {
|
|
if (event === 'close') {
|
|
setTimeout(() => callback(0), 10);
|
|
}
|
|
},
|
|
);
|
|
|
|
const eventBus = hookSystem.getEventHandler();
|
|
|
|
// Test BeforeTool event with command hook
|
|
const result = await eventBus.fireBeforeToolEvent('TestTool', {
|
|
test: 'data',
|
|
});
|
|
|
|
expect(result.success).toBe(true);
|
|
// Command hooks with echo should succeed but may not have specific decisions
|
|
expect(result.errors).toHaveLength(0);
|
|
});
|
|
|
|
it('should handle no matching hooks', async () => {
|
|
await hookSystem.initialize();
|
|
|
|
const eventBus = hookSystem.getEventHandler();
|
|
|
|
// Test with a tool that doesn't match any hooks
|
|
const result = await eventBus.fireBeforeToolEvent('UnmatchedTool', {
|
|
test: 'data',
|
|
});
|
|
|
|
expect(result.success).toBe(true);
|
|
expect(result.allOutputs).toHaveLength(0);
|
|
expect(result.finalOutput).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe('hook disabling via settings', () => {
|
|
it('should not execute disabled hooks from settings', async () => {
|
|
// Create config with two hooks, one enabled and one disabled via settings
|
|
const configWithDisabled = new Config({
|
|
model: 'gemini-1.5-flash',
|
|
targetDir: '/tmp/test-hooks-disabled',
|
|
sessionId: 'test-session-disabled',
|
|
debugMode: false,
|
|
cwd: '/tmp/test-hooks-disabled',
|
|
hooks: {
|
|
BeforeTool: [
|
|
{
|
|
matcher: 'TestTool',
|
|
hooks: [
|
|
{
|
|
type: HookType.Command,
|
|
command: 'echo "enabled-hook"',
|
|
timeout: 5000,
|
|
},
|
|
{
|
|
type: HookType.Command,
|
|
command: 'echo "disabled-hook"',
|
|
timeout: 5000,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
disabled: ['echo "disabled-hook"'], // Disable the second hook
|
|
},
|
|
});
|
|
|
|
(
|
|
configWithDisabled as unknown as { getMessageBus: () => unknown }
|
|
).getMessageBus = () => undefined;
|
|
|
|
const systemWithDisabled = new HookSystem(configWithDisabled);
|
|
await systemWithDisabled.initialize();
|
|
|
|
// Set up spawn mock - only enabled hook should execute
|
|
let executionCount = 0;
|
|
mockSpawn.mockStdoutOn.mockImplementation(
|
|
(event: string, callback: (data: Buffer) => void) => {
|
|
if (event === 'data') {
|
|
executionCount++;
|
|
setTimeout(() => callback(Buffer.from('output')), 5);
|
|
}
|
|
},
|
|
);
|
|
|
|
mockSpawn.mockProcessOn.mockImplementation(
|
|
(event: string, callback: (code: number) => void) => {
|
|
if (event === 'close') {
|
|
setTimeout(() => callback(0), 10);
|
|
}
|
|
},
|
|
);
|
|
|
|
const eventBus = systemWithDisabled.getEventHandler();
|
|
const result = await eventBus.fireBeforeToolEvent('TestTool', {
|
|
test: 'data',
|
|
});
|
|
|
|
expect(result.success).toBe(true);
|
|
// Only the enabled hook should have executed
|
|
expect(executionCount).toBe(1);
|
|
});
|
|
});
|
|
|
|
describe('hook disabling via command', () => {
|
|
it('should disable hook when setHookEnabled is called', async () => {
|
|
// Create config with a hook
|
|
const configForDisabling = new Config({
|
|
model: 'gemini-1.5-flash',
|
|
targetDir: '/tmp/test-hooks-setEnabled',
|
|
sessionId: 'test-session-setEnabled',
|
|
debugMode: false,
|
|
cwd: '/tmp/test-hooks-setEnabled',
|
|
hooks: {
|
|
BeforeTool: [
|
|
{
|
|
matcher: 'TestTool',
|
|
hooks: [
|
|
{
|
|
type: HookType.Command,
|
|
command: 'echo "will-be-disabled"',
|
|
timeout: 5000,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
});
|
|
|
|
(
|
|
configForDisabling as unknown as { getMessageBus: () => unknown }
|
|
).getMessageBus = () => undefined;
|
|
|
|
const systemForDisabling = new HookSystem(configForDisabling);
|
|
await systemForDisabling.initialize();
|
|
|
|
// First execution - hook should run
|
|
let executionCount = 0;
|
|
mockSpawn.mockStdoutOn.mockImplementation(
|
|
(event: string, callback: (data: Buffer) => void) => {
|
|
if (event === 'data') {
|
|
executionCount++;
|
|
setTimeout(() => callback(Buffer.from('output')), 5);
|
|
}
|
|
},
|
|
);
|
|
|
|
mockSpawn.mockProcessOn.mockImplementation(
|
|
(event: string, callback: (code: number) => void) => {
|
|
if (event === 'close') {
|
|
setTimeout(() => callback(0), 10);
|
|
}
|
|
},
|
|
);
|
|
|
|
const eventBus = systemForDisabling.getEventHandler();
|
|
const result1 = await eventBus.fireBeforeToolEvent('TestTool', {
|
|
test: 'data',
|
|
});
|
|
|
|
expect(result1.success).toBe(true);
|
|
expect(executionCount).toBe(1);
|
|
|
|
// Disable the hook via setHookEnabled (simulating /hooks disable command)
|
|
systemForDisabling.setHookEnabled('echo "will-be-disabled"', false);
|
|
|
|
// Reset execution count
|
|
executionCount = 0;
|
|
|
|
// Second execution - hook should NOT run
|
|
const result2 = await eventBus.fireBeforeToolEvent('TestTool', {
|
|
test: 'data',
|
|
});
|
|
|
|
expect(result2.success).toBe(true);
|
|
// Hook should not have executed
|
|
expect(executionCount).toBe(0);
|
|
|
|
// Re-enable the hook
|
|
systemForDisabling.setHookEnabled('echo "will-be-disabled"', true);
|
|
|
|
// Reset execution count
|
|
executionCount = 0;
|
|
|
|
// Third execution - hook should run again
|
|
const result3 = await eventBus.fireBeforeToolEvent('TestTool', {
|
|
test: 'data',
|
|
});
|
|
|
|
expect(result3.success).toBe(true);
|
|
expect(executionCount).toBe(1);
|
|
});
|
|
});
|
|
});
|