-
Notifications
You must be signed in to change notification settings - Fork 254
Expand file tree
/
Copy pathutils.test.ts
More file actions
423 lines (360 loc) · 15.4 KB
/
utils.test.ts
File metadata and controls
423 lines (360 loc) · 15.4 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
import { expect, test, vi } from 'vitest'
import { fileReferenceToString, getAnswerPartFromAssistantMessage, groupMessageIntoSteps, repairReferences, truncateFileContent, isContextWindowError, CONTEXT_WINDOW_USER_MESSAGE } from './utils'
import { FILE_REFERENCE_REGEX, ANSWER_TAG } from './constants';
import { SBChatMessage, SBChatMessagePart } from './types';
// Mock the env module
vi.mock('@sourcebot/shared', () => ({
env: {
SOURCEBOT_CHAT_FILE_MAX_CHARACTERS: 4000,
}
}));
test('fileReferenceToString formats file references correctly', () => {
expect(fileReferenceToString({
repo: 'github.com/sourcebot-dev/sourcebot',
path: 'auth.ts'
})).toBe('@file:{github.com/sourcebot-dev/sourcebot::auth.ts}');
expect(fileReferenceToString({
repo: 'github.com/sourcebot-dev/sourcebot',
path: 'auth.ts',
range: {
startLine: 45,
endLine: 60,
}
})).toBe('@file:{github.com/sourcebot-dev/sourcebot::auth.ts:45-60}');
});
test('fileReferenceToString matches FILE_REFERENCE_REGEX', () => {
expect(FILE_REFERENCE_REGEX.test(fileReferenceToString({
repo: 'github.com/sourcebot-dev/sourcebot',
path: 'auth.ts'
}))).toBe(true);
FILE_REFERENCE_REGEX.lastIndex = 0;
expect(FILE_REFERENCE_REGEX.test(fileReferenceToString({
repo: 'github.com/sourcebot-dev/sourcebot',
path: 'auth.ts',
range: {
startLine: 45,
endLine: 60,
}
}))).toBe(true);
});
test('groupMessageIntoSteps returns an empty array when there are no parts', () => {
const parts: SBChatMessagePart[] = []
const steps = groupMessageIntoSteps(parts);
expect(steps).toEqual([]);
});
test('groupMessageIntoSteps returns a single group when there is only one step-start part', () => {
const parts: SBChatMessagePart[] = [
{
type: 'step-start',
},
{
type: 'text',
text: 'Hello, world!',
}
]
const steps = groupMessageIntoSteps(parts);
expect(steps).toEqual([
[
{
type: 'step-start',
},
{
type: 'text',
text: 'Hello, world!',
}
]
]);
});
test('groupMessageIntoSteps returns a multiple groups when there is multiple step-start parts', () => {
const parts: SBChatMessagePart[] = [
{
type: 'step-start',
},
{
type: 'text',
text: 'Hello, world!',
},
{
type: 'step-start',
},
{
type: 'text',
text: 'Ok lets go',
},
]
const steps = groupMessageIntoSteps(parts);
expect(steps).toEqual([
[
{
type: 'step-start',
},
{
type: 'text',
text: 'Hello, world!',
}
],
[
{
type: 'step-start',
},
{
type: 'text',
text: 'Ok lets go',
}
]
]);
});
test('groupMessageIntoSteps returns a single group when there is no step-start part', () => {
const parts: SBChatMessagePart[] = [
{
type: 'text',
text: 'Hello, world!',
},
{
type: 'text',
text: 'Ok lets go',
},
]
const steps = groupMessageIntoSteps(parts);
expect(steps).toEqual([
[
{
type: 'text',
text: 'Hello, world!',
},
{
type: 'text',
text: 'Ok lets go',
}
]
]);
});
test('getAnswerPartFromAssistantMessage returns text part when it starts with ANSWER_TAG while not streaming', () => {
const message: SBChatMessage = {
role: 'assistant',
parts: [
{
type: 'text',
text: 'Some initial text'
},
{
type: 'text',
text: `${ANSWER_TAG}This is the answer to your question.`
}
]
} as SBChatMessage;
const result = getAnswerPartFromAssistantMessage(message, false);
expect(result).toEqual({
type: 'text',
text: `${ANSWER_TAG}This is the answer to your question.`
});
});
test('getAnswerPartFromAssistantMessage returns text part when it starts with ANSWER_TAG while streaming', () => {
const message: SBChatMessage = {
role: 'assistant',
parts: [
{
type: 'text',
text: 'Some initial text'
},
{
type: 'text',
text: `${ANSWER_TAG}This is the answer to your question.`
}
]
} as SBChatMessage;
const result = getAnswerPartFromAssistantMessage(message, true);
expect(result).toEqual({
type: 'text',
text: `${ANSWER_TAG}This is the answer to your question.`
});
});
test('getAnswerPartFromAssistantMessage returns last text part as fallback when not streaming and no ANSWER_TAG', () => {
const message: SBChatMessage = {
role: 'assistant',
parts: [
{
type: 'text',
text: 'First text part'
},
{
type: 'tool-call',
id: 'call-1',
name: 'search',
args: {}
},
{
type: 'text',
text: 'This is the last text part without answer tag'
}
]
} as SBChatMessage;
const result = getAnswerPartFromAssistantMessage(message, false);
expect(result).toEqual({
type: 'text',
text: 'This is the last text part without answer tag'
});
});
test('getAnswerPartFromAssistantMessage returns undefined when streaming and no ANSWER_TAG', () => {
const message: SBChatMessage = {
role: 'assistant',
parts: [
{
type: 'text',
text: 'Some text without answer tag'
},
{
type: 'text',
text: 'Another text part'
}
]
} as SBChatMessage;
const result = getAnswerPartFromAssistantMessage(message, true);
expect(result).toBeUndefined();
});
test('repairReferences fixes missing colon after @file', () => {
const input = 'See the function in @file{github.com/sourcebot-dev/sourcebot::auth.ts} for details.';
const expected = 'See the function in @file:{github.com/sourcebot-dev/sourcebot::auth.ts} for details.';
expect(repairReferences(input)).toBe(expected);
});
test('repairReferences fixes missing colon with range', () => {
const input = 'Check @file{github.com/sourcebot-dev/sourcebot::config.ts:15-20} for the configuration.';
const expected = 'Check @file:{github.com/sourcebot-dev/sourcebot::config.ts:15-20} for the configuration.';
expect(repairReferences(input)).toBe(expected);
});
test('repairReferences fixes missing braces around filename', () => {
const input = 'The logic is in @file:github.com/sourcebot-dev/sourcebot::utils.js and handles validation.';
const expected = 'The logic is in @file:{github.com/sourcebot-dev/sourcebot::utils.js} and handles validation.';
expect(repairReferences(input)).toBe(expected);
});
test('repairReferences fixes missing braces with path', () => {
const input = 'Look at @file:github.com/sourcebot-dev/sourcebot::src/components/Button.tsx for the component.';
const expected = 'Look at @file:{github.com/sourcebot-dev/sourcebot::src/components/Button.tsx} for the component.';
expect(repairReferences(input)).toBe(expected);
});
test('repairReferences removes multiple ranges keeping only first', () => {
const input = 'See @file:{github.com/sourcebot-dev/sourcebot::service.ts:10-15,20-25,30-35} for implementation.';
const expected = 'See @file:{github.com/sourcebot-dev/sourcebot::service.ts:10-15} for implementation.';
expect(repairReferences(input)).toBe(expected);
});
test('repairReferences fixes malformed triple number ranges', () => {
const input = 'Check @file:{github.com/sourcebot-dev/sourcebot::handler.ts:5-10-15} for the logic.';
const expected = 'Check @file:{github.com/sourcebot-dev/sourcebot::handler.ts:5-10} for the logic.';
expect(repairReferences(input)).toBe(expected);
});
test('repairReferences handles multiple citations in same text', () => {
const input = 'See @file{github.com/sourcebot-dev/sourcebot::auth.ts} and @file:github.com/sourcebot-dev/sourcebot::config.js for setup details.';
const expected = 'See @file:{github.com/sourcebot-dev/sourcebot::auth.ts} and @file:{github.com/sourcebot-dev/sourcebot::config.js} for setup details.';
expect(repairReferences(input)).toBe(expected);
});
test('repairReferences leaves correctly formatted citations unchanged', () => {
const input = 'The function @file:{github.com/sourcebot-dev/sourcebot::utils.ts:42-50} handles validation correctly.';
expect(repairReferences(input)).toBe(input);
});
test('repairReferences handles edge cases with spaces and punctuation', () => {
const input = 'Functions like @file:github.com/sourcebot-dev/sourcebot::helper.ts, @file{github.com/sourcebot-dev/sourcebot::main.js}, and @file:{github.com/sourcebot-dev/sourcebot::app.ts:1-5,10-15} work.';
const expected = 'Functions like @file:{github.com/sourcebot-dev/sourcebot::helper.ts}, @file:{github.com/sourcebot-dev/sourcebot::main.js}, and @file:{github.com/sourcebot-dev/sourcebot::app.ts:1-5} work.';
expect(repairReferences(input)).toBe(expected);
});
test('repairReferences returns empty string unchanged', () => {
expect(repairReferences('')).toBe('');
});
test('repairReferences returns text without citations unchanged', () => {
const input = 'This is just regular text without any file references.';
expect(repairReferences(input)).toBe(input);
});
test('repairReferences handles complex file paths correctly', () => {
const input = 'Check @file:github.com/sourcebot-dev/sourcebot::src/components/ui/Button/index.tsx for implementation.';
const expected = 'Check @file:{github.com/sourcebot-dev/sourcebot::src/components/ui/Button/index.tsx} for implementation.';
expect(repairReferences(input)).toBe(expected);
});
test('repairReferences handles files with numbers and special characters', () => {
const input = 'See @file{github.com/sourcebot-dev/sourcebot::utils-v2.0.1.ts} and @file:github.com/sourcebot-dev/sourcebot::config_2024.json for setup.';
const expected = 'See @file:{github.com/sourcebot-dev/sourcebot::utils-v2.0.1.ts} and @file:{github.com/sourcebot-dev/sourcebot::config_2024.json} for setup.';
expect(repairReferences(input)).toBe(expected);
});
test('repairReferences handles citation at end of sentence', () => {
const input = 'The implementation is in @file:github.com/sourcebot-dev/sourcebot::helper.ts.';
const expected = 'The implementation is in @file:{github.com/sourcebot-dev/sourcebot::helper.ts}.';
expect(repairReferences(input)).toBe(expected);
});
test('repairReferences preserves already correct citations with ranges', () => {
const input = 'The function @file:{github.com/sourcebot-dev/sourcebot::utils.ts:10-20} and variable @file:{github.com/sourcebot-dev/sourcebot::config.js:5} work correctly.';
expect(repairReferences(input)).toBe(input);
});
test('repairReferences handles extra closing parenthesis', () => {
const input = 'See @file:{github.com/sourcebot-dev/sourcebot::packages/web/src/auth.ts:5-6)} for details.';
const expected = 'See @file:{github.com/sourcebot-dev/sourcebot::packages/web/src/auth.ts:5-6} for details.';
expect(repairReferences(input)).toBe(expected);
});
test('repairReferences handles extra colon at end of range', () => {
const input = 'See @file:{github.com/sourcebot-dev/sourcebot::packages/web/src/auth.ts:5-6:} for details.';
const expected = 'See @file:{github.com/sourcebot-dev/sourcebot::packages/web/src/auth.ts:5-6} for details.';
expect(repairReferences(input)).toBe(expected);
});
test('repairReferences handles inline code blocks around file references', () => {
const input = 'See `@file:{github.com/sourcebot-dev/sourcebot::packages/web/src/auth.ts}` for details.';
const expected = 'See @file:{github.com/sourcebot-dev/sourcebot::packages/web/src/auth.ts} for details.';
expect(repairReferences(input)).toBe(expected);
});
test('repairReferences handles malformed inline code blocks', () => {
const input = 'See `@file:{github.com/sourcebot-dev/sourcebot::packages/web/src/auth.ts`} for details.';
const expected = 'See @file:{github.com/sourcebot-dev/sourcebot::packages/web/src/auth.ts} for details.';
expect(repairReferences(input)).toBe(expected);
});
// truncateFileContent tests
test('truncateFileContent returns content unchanged when under limit', () => {
const source = 'line 1\nline 2\nline 3';
const result = truncateFileContent(source, 100);
expect(result.content).toBe(source);
expect(result.wasTruncated).toBe(false);
});
test('truncateFileContent returns content unchanged when exactly at limit', () => {
const source = 'abcde';
const result = truncateFileContent(source, 5);
expect(result.content).toBe(source);
expect(result.wasTruncated).toBe(false);
});
test('truncateFileContent truncates at line boundary when over limit', () => {
const source = 'line 1\nline 2\nline 3\nline 4\nline 5';
// Limit of 20 characters: "line 1\nline 2\nline 3" is 20 chars
const result = truncateFileContent(source, 15);
expect(result.wasTruncated).toBe(true);
expect(result.content).toContain('line 1\nline 2');
expect(result.content).toContain('... [truncated:');
expect(result.content).not.toContain('line 4');
});
test('truncateFileContent includes line count information', () => {
const source = 'a\nb\nc\nd\ne';
const result = truncateFileContent(source, 3);
expect(result.wasTruncated).toBe(true);
expect(result.content).toMatch(/showing \d+ of 5 lines/);
});
// isContextWindowError tests
test('isContextWindowError detects OpenAI context length error', () => {
expect(isContextWindowError('This model\'s maximum context length is 128000 tokens')).toBe(true);
});
test('isContextWindowError detects Anthropic prompt too long error', () => {
expect(isContextWindowError('prompt is too long: 150000 tokens > 100000 maximum')).toBe(true);
});
test('isContextWindowError detects context_length_exceeded error', () => {
expect(isContextWindowError('context_length_exceeded')).toBe(true);
});
test('isContextWindowError detects token limit error', () => {
expect(isContextWindowError('Request exceeds the maximum number of tokens')).toBe(true);
});
test('isContextWindowError detects reduce the length error', () => {
expect(isContextWindowError('Please reduce the length of the messages')).toBe(true);
});
test('isContextWindowError detects request too large error', () => {
expect(isContextWindowError('request too large')).toBe(true);
});
test('isContextWindowError returns false for unrelated errors', () => {
expect(isContextWindowError('Internal server error')).toBe(false);
expect(isContextWindowError('Rate limit exceeded')).toBe(false);
expect(isContextWindowError('Invalid API key')).toBe(false);
});
test('CONTEXT_WINDOW_USER_MESSAGE is a non-empty string', () => {
expect(typeof CONTEXT_WINDOW_USER_MESSAGE).toBe('string');
expect(CONTEXT_WINDOW_USER_MESSAGE.length).toBeGreaterThan(0);
});