mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-23 11:34:44 -07:00
1d383a4a8e
Co-authored-by: Abhijit Balaji <abhijitbalaji@google.com> Co-authored-by: Samee Zahid <sameez@google.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
69 lines
2.0 KiB
TypeScript
69 lines
2.0 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2026 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import fs from 'node:fs';
|
|
import { beforeEach, describe, expect, it, vi } from 'vitest';
|
|
import type { GemmaModelRouterSettings } from '@google/gemini-cli-core';
|
|
|
|
const mockGetBinaryPath = vi.hoisted(() => vi.fn());
|
|
const mockIsServerRunning = vi.hoisted(() => vi.fn());
|
|
const mockStartServer = vi.hoisted(() => vi.fn());
|
|
|
|
vi.mock('../commands/gemma/platform.js', () => ({
|
|
getBinaryPath: mockGetBinaryPath,
|
|
isServerRunning: mockIsServerRunning,
|
|
}));
|
|
|
|
vi.mock('../commands/gemma/start.js', () => ({
|
|
startServer: mockStartServer,
|
|
}));
|
|
|
|
import { LiteRtServerManager } from './liteRtServerManager.js';
|
|
|
|
describe('LiteRtServerManager', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks();
|
|
vi.spyOn(fs, 'existsSync').mockReturnValue(true);
|
|
mockIsServerRunning.mockResolvedValue(false);
|
|
mockStartServer.mockResolvedValue(true);
|
|
});
|
|
|
|
it('uses the configured custom binary path when auto-starting', async () => {
|
|
mockGetBinaryPath.mockReturnValue('/user/lit');
|
|
|
|
const settings: GemmaModelRouterSettings = {
|
|
enabled: true,
|
|
binaryPath: '/workspace/evil',
|
|
classifier: {
|
|
host: 'http://localhost:8123',
|
|
},
|
|
};
|
|
|
|
await LiteRtServerManager.ensureRunning(settings);
|
|
|
|
expect(mockGetBinaryPath).toHaveBeenCalledTimes(1);
|
|
expect(fs.existsSync).toHaveBeenCalledWith('/user/lit');
|
|
expect(mockStartServer).toHaveBeenCalledWith('/user/lit', 8123);
|
|
});
|
|
|
|
it('falls back to the default binary path when no custom path is configured', async () => {
|
|
mockGetBinaryPath.mockReturnValue('/default/lit');
|
|
|
|
const settings: GemmaModelRouterSettings = {
|
|
enabled: true,
|
|
classifier: {
|
|
host: 'http://localhost:9379',
|
|
},
|
|
};
|
|
|
|
await LiteRtServerManager.ensureRunning(settings);
|
|
|
|
expect(mockGetBinaryPath).toHaveBeenCalledTimes(1);
|
|
expect(fs.existsSync).toHaveBeenCalledWith('/default/lit');
|
|
expect(mockStartServer).toHaveBeenCalledWith('/default/lit', 9379);
|
|
});
|
|
});
|