-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Expand file tree
/
Copy pathsettings-validation.test.ts
More file actions
476 lines (409 loc) · 13 KB
/
settings-validation.test.ts
File metadata and controls
476 lines (409 loc) · 13 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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/// <reference types="vitest/globals" />
import { describe, it, expect } from 'vitest';
import {
validateSettings,
formatValidationError,
settingsZodSchema,
} from './settings-validation.js';
import { z } from 'zod';
describe('settings-validation', () => {
describe('validateSettings', () => {
it('should accept valid settings with correct model.name as string', () => {
const validSettings = {
model: {
name: 'gemini-2.0-flash-exp',
maxSessionTurns: 10,
},
ui: {
theme: 'dark',
},
};
const result = validateSettings(validSettings);
expect(result.success).toBe(true);
});
it('should reject model.name as object instead of string', () => {
const invalidSettings = {
model: {
name: {
skipNextSpeakerCheck: true,
},
},
};
const result = validateSettings(invalidSettings);
expect(result.success).toBe(false);
expect(result.error).toBeDefined();
if (result.error) {
const issues = result.error.issues;
expect(issues.length).toBeGreaterThan(0);
expect(issues[0]?.path).toEqual(['model', 'name']);
expect(issues[0]?.code).toBe('invalid_type');
}
});
it('should accept valid model.summarizeToolOutput structure', () => {
const validSettings = {
model: {
summarizeToolOutput: {
run_shell_command: {
tokenBudget: 500,
},
},
},
};
const result = validateSettings(validSettings);
expect(result.success).toBe(true);
});
it('should reject invalid model.summarizeToolOutput structure', () => {
const invalidSettings = {
model: {
summarizeToolOutput: {
run_shell_command: {
tokenBudget: 500,
},
},
},
};
// First test with valid structure
let result = validateSettings(invalidSettings);
expect(result.success).toBe(true);
// Now test with wrong type (string instead of object)
const actuallyInvalidSettings = {
model: {
summarizeToolOutput: 'invalid',
},
};
result = validateSettings(actuallyInvalidSettings);
expect(result.success).toBe(false);
if (result.error) {
expect(result.error.issues.length).toBeGreaterThan(0);
}
});
it('should accept empty settings object', () => {
const emptySettings = {};
const result = validateSettings(emptySettings);
expect(result.success).toBe(true);
});
it('should accept unknown top-level keys (for migration compatibility)', () => {
const settingsWithUnknownKey = {
unknownKey: 'some value',
};
const result = validateSettings(settingsWithUnknownKey);
expect(result.success).toBe(true);
// Unknown keys are allowed via .passthrough() for migration scenarios
});
it('should accept nested valid settings', () => {
const validSettings = {
ui: {
theme: 'dark',
hideWindowTitle: true,
footer: {
hideCWD: false,
hideModelInfo: true,
},
},
tools: {
sandbox: 'inherit',
},
};
const result = validateSettings(validSettings);
expect(result.success).toBe(true);
});
it('should validate array types correctly', () => {
const validSettings = {
tools: {
allowed: ['git', 'npm'],
exclude: ['dangerous-tool'],
},
context: {
includeDirectories: ['/path/1', '/path/2'],
},
};
const result = validateSettings(validSettings);
expect(result.success).toBe(true);
});
it('should reject invalid types in arrays', () => {
const invalidSettings = {
tools: {
allowed: ['git', 123],
},
};
const result = validateSettings(invalidSettings);
expect(result.success).toBe(false);
});
it('should validate boolean fields correctly', () => {
const validSettings = {
general: {
vimMode: true,
disableAutoUpdate: false,
},
};
const result = validateSettings(validSettings);
expect(result.success).toBe(true);
});
it('should reject non-boolean values for boolean fields', () => {
const invalidSettings = {
general: {
vimMode: 'yes',
},
};
const result = validateSettings(invalidSettings);
expect(result.success).toBe(false);
});
it('should coerce "true" and "false" strings to boolean', () => {
const stringBoolSettings = {
general: {
vimMode: 'true',
enableAutoUpdate: 'false',
},
};
const result = validateSettings(stringBoolSettings);
expect(result.success).toBe(true);
if (result.success && result.data) {
const data = result.data as any;
expect(data.general.vimMode).toBe(true);
expect(data.general.enableAutoUpdate).toBe(false);
}
});
it('should still reject other string values for boolean fields', () => {
const invalidSettings = {
general: {
vimMode: '1',
},
};
const result = validateSettings(invalidSettings);
expect(result.success).toBe(false);
});
it('should validate number fields correctly', () => {
const validSettings = {
model: {
maxSessionTurns: 50,
compressionThreshold: 0.2,
},
};
const result = validateSettings(validSettings);
expect(result.success).toBe(true);
});
it('should validate complex nested mcpServers configuration', () => {
const invalidSettings = {
mcpServers: {
'my-server': {
command: 123, // Should be string
args: ['arg1'],
env: {
VAR: 'value',
},
},
},
};
const result = validateSettings(invalidSettings);
expect(result.success).toBe(false);
if (result.error) {
expect(result.error.issues.length).toBeGreaterThan(0);
// Path should be mcpServers.my-server.command
const issue = result.error.issues.find((i) =>
i.path.includes('command'),
);
expect(issue).toBeDefined();
expect(issue?.code).toBe('invalid_type');
}
});
it('should validate mcpServers with type field for all transport types', () => {
const validSettings = {
mcpServers: {
'sse-server': {
url: 'https://example.com/sse',
type: 'sse',
headers: { 'X-API-Key': 'key' },
},
'http-server': {
url: 'https://example.com/mcp',
type: 'http',
},
'stdio-server': {
command: '/usr/bin/mcp-server',
type: 'stdio',
},
},
};
const result = validateSettings(validSettings);
expect(result.success).toBe(true);
});
it('should reject invalid type values in mcpServers', () => {
const invalidSettings = {
mcpServers: {
'bad-server': {
url: 'https://example.com/mcp',
type: 'invalid-type',
},
},
};
const result = validateSettings(invalidSettings);
expect(result.success).toBe(false);
});
it('should validate mcpServers without type field', () => {
const validSettings = {
mcpServers: {
'stdio-server': {
command: '/usr/bin/mcp-server',
args: ['--port', '8080'],
},
'url-server': {
url: 'https://example.com/mcp',
},
},
};
const result = validateSettings(validSettings);
expect(result.success).toBe(true);
});
it('should validate complex nested customThemes configuration', () => {
const invalidSettings = {
ui: {
customThemes: {
'my-theme': {
type: 'custom',
// Missing 'name' property which is required
text: {
primary: '#ffffff',
},
},
},
},
};
const result = validateSettings(invalidSettings);
expect(result.success).toBe(false);
if (result.error) {
expect(result.error.issues.length).toBeGreaterThan(0);
// Should complain about missing 'name'
const issue = result.error.issues.find(
(i) => i.code === 'invalid_type' && i.message.includes('Required'),
);
expect(issue).toBeDefined();
}
});
});
describe('formatValidationError', () => {
it('should format error with file path and helpful message for model.name', () => {
const invalidSettings = {
model: {
name: {
skipNextSpeakerCheck: true,
},
},
};
const result = validateSettings(invalidSettings);
expect(result.success).toBe(false);
if (result.error) {
const formatted = formatValidationError(
result.error,
'/path/to/settings.json',
);
expect(formatted).toContain('/path/to/settings.json');
expect(formatted).toContain('model.name');
expect(formatted).toContain('Expected: string, but received: object');
expect(formatted).toContain('Please fix the configuration.');
expect(formatted).toContain(
'https://geminicli.com/docs/reference/configuration/',
);
}
});
it('should format error for model.summarizeToolOutput', () => {
const invalidSettings = {
model: {
summarizeToolOutput: 'wrong type',
},
};
const result = validateSettings(invalidSettings);
expect(result.success).toBe(false);
if (result.error) {
const formatted = formatValidationError(
result.error,
'~/.gemini/settings.json',
);
expect(formatted).toContain('~/.gemini/settings.json');
expect(formatted).toContain('model.summarizeToolOutput');
}
});
it('should include link to documentation', () => {
const invalidSettings = {
model: {
name: { invalid: 'object' }, // model.name should be a string
},
};
const result = validateSettings(invalidSettings);
expect(result.success).toBe(false);
if (result.error) {
const formatted = formatValidationError(result.error, 'test.json');
expect(formatted).toContain(
'https://geminicli.com/docs/reference/configuration/',
);
}
});
it('should list all validation errors', () => {
const invalidSettings = {
model: {
name: { invalid: 'object' },
maxSessionTurns: 'not a number',
},
};
const result = validateSettings(invalidSettings);
expect(result.success).toBe(false);
if (result.error) {
const formatted = formatValidationError(result.error, 'test.json');
// Should have multiple errors listed
expect(formatted.match(/Error in:/g)?.length).toBeGreaterThan(1);
}
});
it('should format array paths correctly (e.g. tools.allowed[0])', () => {
const invalidSettings = {
tools: {
allowed: ['git', 123], // 123 is invalid, expected string
},
};
const result = validateSettings(invalidSettings);
expect(result.success).toBe(false);
if (result.error) {
const formatted = formatValidationError(result.error, 'test.json');
expect(formatted).toContain('tools.allowed[1]');
}
});
it('should limit the number of displayed errors', () => {
const invalidSettings = {
tools: {
// Create 6 invalid items to trigger the limit
allowed: [1, 2, 3, 4, 5, 6],
},
};
const result = validateSettings(invalidSettings);
expect(result.success).toBe(false);
if (result.error) {
const formatted = formatValidationError(result.error, 'test.json');
// Should see the first 5
expect(formatted).toContain('tools.allowed[0]');
expect(formatted).toContain('tools.allowed[4]');
// Should NOT see the 6th
expect(formatted).not.toContain('tools.allowed[5]');
// Should see the summary
expect(formatted).toContain('...and 1 more errors.');
}
});
});
describe('settingsZodSchema', () => {
it('should be a valid Zod object schema', () => {
expect(settingsZodSchema).toBeInstanceOf(z.ZodObject);
});
it('should have optional fields', () => {
// All top-level fields should be optional
const shape = settingsZodSchema.shape;
expect(shape['model']).toBeDefined();
expect(shape['ui']).toBeDefined();
expect(shape['tools']).toBeDefined();
// Test that empty object is valid (all fields optional)
const result = settingsZodSchema.safeParse({});
expect(result.success).toBe(true);
});
});
});