-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathtoolMetricsUtils.test.ts
More file actions
263 lines (245 loc) · 7.8 KB
/
toolMetricsUtils.test.ts
File metadata and controls
263 lines (245 loc) · 7.8 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
/**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import assert from 'node:assert';
import {describe, it} from 'node:test';
import {
applyToExistingMetrics,
generateToolMetrics,
validateEnumHomogeneity,
} from '../../src/telemetry/toolMetricsUtils.js';
import {zod} from '../../src/third_party/index.js';
import {ToolCategory} from '../../src/tools/categories.js';
import type {ToolDefinition} from '../../src/tools/ToolDefinition.js';
describe('toolMetricsUtils', () => {
describe('validateEnumHomogeneity', () => {
it('should return the primitive type of a homogeneous enum', () => {
const result = validateEnumHomogeneity(['a', 'b', 'c']);
assert.strictEqual(result, 'string');
const result2 = validateEnumHomogeneity([1, 2, 3]);
assert.strictEqual(result2, 'number');
});
it('should throw for heterogeneous enum types', () => {
assert.throws(() => {
validateEnumHomogeneity(['a', 1, 'c']);
}, /Heterogeneous enum types found/);
});
});
describe('generateToolMetrics', () => {
it('should map tools correctly and apply transformations', () => {
const mockTool: ToolDefinition = {
name: 'test_tool',
description: 'test description',
annotations: {
category: ToolCategory.INPUT,
readOnlyHint: true,
},
schema: {
argStr: zod.string(),
uid: zod.string(), // Should be blocked
},
handler: async () => {
// no-op
},
};
const metrics = generateToolMetrics([mockTool]);
assert.strictEqual(metrics.length, 1);
assert.strictEqual(metrics[0].name, 'test_tool');
assert.strictEqual(metrics[0].args.length, 1); // uid is blocked
assert.strictEqual(metrics[0].args[0].name, 'arg_str_length');
assert.strictEqual(metrics[0].args[0].argType, 'number');
});
it('should handle enums correctly', () => {
const mockTool: ToolDefinition = {
name: 'enum_tool',
description: 'test description',
annotations: {
category: ToolCategory.INPUT,
readOnlyHint: true,
},
schema: {
argEnum: zod.enum(['foo', 'bar']),
},
handler: async () => {
// no-op
},
};
const metrics = generateToolMetrics([mockTool]);
assert.strictEqual(metrics.length, 1);
assert.strictEqual(metrics[0].args[0].name, 'arg_enum');
assert.strictEqual(metrics[0].args[0].argType, 'string');
});
});
describe('applyToExistingMetrics', () => {
it('should return the same metrics if existing and update are the same', () => {
const existing = [{name: 'foo', args: []}];
const update = [{name: 'foo', args: []}];
const result = applyToExistingMetrics(existing, update);
const expected = [{name: 'foo', args: []}];
assert.deepStrictEqual(result, expected);
});
it('should append new entries to the end of the array', () => {
const existing = [{name: 'foo', args: []}];
const update = [
{name: 'foo', args: []},
{name: 'bar', args: []},
];
const result = applyToExistingMetrics(existing, update);
const expected = [
{name: 'foo', args: []},
{name: 'bar', args: []},
];
assert.deepStrictEqual(result, expected);
});
it('should mark missing entries as deprecated and preserve their order', () => {
const existing = [
{name: 'foo', args: []},
{name: 'bar', args: []},
];
const update = [{name: 'foo', args: []}];
const result = applyToExistingMetrics(existing, update);
const expected = [
{name: 'foo', args: []},
{name: 'bar', args: [], isDeprecated: true},
];
assert.deepStrictEqual(result, expected);
});
it('should handle adding new entries and deprecating old ones simultaneously', () => {
const existing = [
{name: 'foo', args: []},
{name: 'bar', args: []},
];
const update = [
{name: 'bar', args: []},
{name: 'baz', args: []},
];
const result = applyToExistingMetrics(existing, update);
const expected = [
{name: 'foo', args: [], isDeprecated: true},
{name: 'bar', args: []},
{name: 'baz', args: []},
];
assert.deepStrictEqual(result, expected);
});
it('should append new arguments to the back', () => {
const existing = [
{name: 'foo', args: [{name: 'arg_a', argType: 'string'}]},
];
const update = [
{
name: 'foo',
args: [
{name: 'arg_a', argType: 'string'},
{name: 'arg_b', argType: 'string'},
],
},
];
const result = applyToExistingMetrics(existing, update);
const expected = [
{
name: 'foo',
args: [
{name: 'arg_a', argType: 'string'},
{name: 'arg_b', argType: 'string'},
],
},
];
assert.deepStrictEqual(result, expected);
});
it('should mark removed arguments as deprecated', () => {
const existing = [
{
name: 'foo',
args: [
{name: 'arg_a', argType: 'string'},
{name: 'arg_b', argType: 'string'},
],
},
];
const update = [
{name: 'foo', args: [{name: 'arg_a', argType: 'string'}]},
];
const result = applyToExistingMetrics(existing, update);
const expected = [
{
name: 'foo',
args: [
{name: 'arg_a', argType: 'string'},
{name: 'arg_b', argType: 'string', isDeprecated: true},
],
},
];
assert.deepStrictEqual(result, expected);
});
it('should not change args if they are the same', () => {
const existing = [
{name: 'foo', args: [{name: 'arg_a', argType: 'string'}]},
];
const update = [
{name: 'foo', args: [{name: 'arg_a', argType: 'string'}]},
];
const result = applyToExistingMetrics(existing, update);
const expected = [
{name: 'foo', args: [{name: 'arg_a', argType: 'string'}]},
];
assert.deepStrictEqual(result, expected);
});
it('should handle adding and removing arguments simultaneously', () => {
const existing = [
{
name: 'foo',
args: [
{name: 'arg_a', argType: 'string'},
{name: 'arg_b', argType: 'string'},
],
},
];
const update = [
{
name: 'foo',
args: [
{name: 'arg_b', argType: 'string'},
{name: 'arg_c', argType: 'string'},
],
},
];
const result = applyToExistingMetrics(existing, update);
const expected = [
{
name: 'foo',
args: [
{name: 'arg_a', argType: 'string', isDeprecated: true},
{name: 'arg_b', argType: 'string'},
{name: 'arg_c', argType: 'string'},
],
},
];
assert.deepStrictEqual(result, expected);
});
it('should handle tool and argument changes simultaneously', () => {
const existing = [
{name: 'foo', args: [{name: 'arg_a', argType: 'string'}]},
{name: 'bar', args: []},
];
const update = [
{name: 'foo', args: [{name: 'arg_b', argType: 'string'}]},
{name: 'baz', args: []},
];
const result = applyToExistingMetrics(existing, update);
const expected = [
{
name: 'foo',
args: [
{name: 'arg_a', argType: 'string', isDeprecated: true},
{name: 'arg_b', argType: 'string'},
],
},
{name: 'bar', args: [], isDeprecated: true},
{name: 'baz', args: []},
];
assert.deepStrictEqual(result, expected);
});
});
});