forked from google-gemini/gemini-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhookTranslator.test.ts
More file actions
286 lines (247 loc) · 7.79 KB
/
hookTranslator.test.ts
File metadata and controls
286 lines (247 loc) · 7.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { describe, it, expect, beforeEach } from 'vitest';
import {
HookTranslatorGenAIv1,
defaultHookTranslator,
type LLMRequest,
type LLMResponse,
type HookToolConfig,
} from './hookTranslator.js';
import type {
GenerateContentParameters,
GenerateContentResponse,
ToolConfig,
ContentListUnion,
} from '@google/genai';
describe('HookTranslator', () => {
let translator: HookTranslatorGenAIv1;
beforeEach(() => {
translator = new HookTranslatorGenAIv1();
});
describe('defaultHookTranslator', () => {
it('should be an instance of HookTranslatorGenAIv1', () => {
expect(defaultHookTranslator).toBeInstanceOf(HookTranslatorGenAIv1);
});
});
describe('LLM Request Translation', () => {
it('should convert SDK request to hook format', () => {
const sdkRequest: GenerateContentParameters = {
model: 'gemini-1.5-flash',
contents: [
{
role: 'user',
parts: [{ text: 'Hello world' }],
},
],
config: {
temperature: 0.7,
maxOutputTokens: 1000,
},
} as unknown as GenerateContentParameters;
const hookRequest = translator.toHookLLMRequest(sdkRequest);
expect(hookRequest).toEqual({
model: 'gemini-1.5-flash',
messages: [
{
role: 'user',
content: 'Hello world',
},
],
config: {
temperature: 0.7,
maxOutputTokens: 1000,
topP: undefined,
topK: undefined,
},
});
});
it('should handle string contents', () => {
const sdkRequest: GenerateContentParameters = {
model: 'gemini-1.5-flash',
contents: ['Simple string message'],
} as unknown as GenerateContentParameters;
const hookRequest = translator.toHookLLMRequest(sdkRequest);
expect(hookRequest.messages).toEqual([
{
role: 'user',
content: 'Simple string message',
},
]);
});
it('should handle conversion errors gracefully', () => {
const sdkRequest: GenerateContentParameters = {
model: 'gemini-1.5-flash',
contents: [null as unknown as ContentListUnion], // Invalid content
} as unknown as GenerateContentParameters;
const hookRequest = translator.toHookLLMRequest(sdkRequest);
// When contents are invalid, the translator skips them and returns empty messages
expect(hookRequest.messages).toEqual([]);
expect(hookRequest.model).toBe('gemini-1.5-flash');
});
it('should convert hook request back to SDK format', () => {
const hookRequest: LLMRequest = {
model: 'gemini-1.5-flash',
messages: [
{
role: 'user',
content: 'Hello world',
},
],
config: {
temperature: 0.7,
maxOutputTokens: 1000,
},
};
const sdkRequest = translator.fromHookLLMRequest(hookRequest);
expect(sdkRequest.model).toBe('gemini-1.5-flash');
expect(sdkRequest.contents).toEqual([
{
role: 'user',
parts: [{ text: 'Hello world' }],
},
]);
});
it('should apply model override when hook returns only model field', () => {
const baseRequest: GenerateContentParameters = {
model: 'gemini-2.5-flash-lite',
contents: [
{
role: 'user',
parts: [{ text: 'Hello' }],
},
],
} as unknown as GenerateContentParameters;
// Simulate a hook that only overrides the model — no messages field
const hookRequest = {
model: 'gemini-2.5-flash',
} as unknown as LLMRequest;
const sdkRequest = translator.fromHookLLMRequest(
hookRequest,
baseRequest,
);
// Model should be overridden
expect(sdkRequest.model).toBe('gemini-2.5-flash');
// Original conversation contents should be preserved
expect(sdkRequest.contents).toEqual(baseRequest.contents);
});
it('should preserve base request contents when hook messages is undefined', () => {
const baseRequest: GenerateContentParameters = {
model: 'gemini-1.5-flash',
contents: [
{ role: 'user', parts: [{ text: 'original message' }] },
{ role: 'model', parts: [{ text: 'original reply' }] },
],
} as unknown as GenerateContentParameters;
const hookRequest = {
model: 'gemini-1.5-pro',
// messages intentionally omitted
} as unknown as LLMRequest;
const sdkRequest = translator.fromHookLLMRequest(
hookRequest,
baseRequest,
);
expect(sdkRequest.model).toBe('gemini-1.5-pro');
expect(sdkRequest.contents).toEqual(baseRequest.contents);
});
});
describe('LLM Response Translation', () => {
it('should convert SDK response to hook format', () => {
const sdkResponse: GenerateContentResponse = {
text: 'Hello response',
candidates: [
{
content: {
role: 'model',
parts: [{ text: 'Hello response' }],
},
finishReason: 'STOP',
index: 0,
},
],
usageMetadata: {
promptTokenCount: 10,
candidatesTokenCount: 20,
totalTokenCount: 30,
},
} as unknown as GenerateContentResponse;
const hookResponse = translator.toHookLLMResponse(sdkResponse);
expect(hookResponse).toEqual({
text: 'Hello response',
candidates: [
{
content: {
role: 'model',
parts: ['Hello response'],
},
finishReason: 'STOP',
index: 0,
safetyRatings: undefined,
},
],
usageMetadata: {
promptTokenCount: 10,
candidatesTokenCount: 20,
totalTokenCount: 30,
},
});
});
it('should convert hook response back to SDK format', () => {
const hookResponse: LLMResponse = {
text: 'Hello response',
candidates: [
{
content: {
role: 'model',
parts: ['Hello response'],
},
finishReason: 'STOP',
},
],
};
const sdkResponse = translator.fromHookLLMResponse(hookResponse);
expect(sdkResponse.text).toBe('Hello response');
expect(sdkResponse.candidates).toHaveLength(1);
expect(sdkResponse.candidates?.[0]?.content?.parts?.[0]?.text).toBe(
'Hello response',
);
});
});
describe('Tool Config Translation', () => {
it('should convert SDK tool config to hook format', () => {
const sdkToolConfig = {
functionCallingConfig: {
mode: 'ANY',
allowedFunctionNames: ['tool1', 'tool2'],
},
} as unknown as ToolConfig;
const hookToolConfig = translator.toHookToolConfig(sdkToolConfig);
expect(hookToolConfig).toEqual({
mode: 'ANY',
allowedFunctionNames: ['tool1', 'tool2'],
});
});
it('should convert hook tool config back to SDK format', () => {
const hookToolConfig: HookToolConfig = {
mode: 'AUTO',
allowedFunctionNames: ['tool1', 'tool2'],
};
const sdkToolConfig = translator.fromHookToolConfig(hookToolConfig);
expect(sdkToolConfig.functionCallingConfig).toEqual({
mode: 'AUTO',
allowedFunctionNames: ['tool1', 'tool2'],
});
});
it('should handle undefined tool config', () => {
const sdkToolConfig = {} as ToolConfig;
const hookToolConfig = translator.toHookToolConfig(sdkToolConfig);
expect(hookToolConfig).toEqual({
mode: undefined,
allowedFunctionNames: undefined,
});
});
});
});