-
Notifications
You must be signed in to change notification settings - Fork 367
Expand file tree
/
Copy pathutils.test.ts
More file actions
874 lines (767 loc) · 28.2 KB
/
Copy pathutils.test.ts
File metadata and controls
874 lines (767 loc) · 28.2 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
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
import { expect, test, describe, vi } from 'vitest'
import { createUIMessage, fileReferenceToString, getAnswerPartFromAssistantMessage, getLastStepParts, getTurnProgressState, getUserMessageText, groupMessageIntoSteps, repairReferences, slateContentToString } from './utils'
import { FILE_REFERENCE_REGEX, ANSWER_TAG } from './constants';
import { SBChatMessage, SBChatMessagePart } from './types';
import type { Descendant } from 'slate';
// Mock the env module
vi.mock('@sourcebot/shared', () => ({
env: {
SOURCEBOT_CHAT_FILE_MAX_CHARACTERS: 4000,
}
}));
const createAssistantMessage = (parts: SBChatMessagePart[]): SBChatMessage => ({
id: 'assistant-message',
role: 'assistant',
parts,
});
const createUserMessage = (): SBChatMessage => ({
id: 'user-message',
role: 'user',
parts: [
{
type: 'text',
text: 'Hello',
},
],
});
const dynamicApprovalRequestedPart = {
type: 'dynamic-tool',
toolName: 'mcp_linear__save_issue',
toolCallId: 'tool-call-1',
state: 'approval-requested',
input: { title: 'Issue' },
approval: { id: 'approval-1' },
} satisfies SBChatMessagePart;
const dynamicApprovalRespondedPart = {
type: 'dynamic-tool',
toolName: 'mcp_linear__save_issue',
toolCallId: 'tool-call-1',
state: 'approval-responded',
input: { title: 'Issue' },
approval: { id: 'approval-1', approved: true },
} satisfies SBChatMessagePart;
const listReposInput = {
sort: 'name',
page: 1,
perPage: 30,
direction: 'asc',
} as const;
const listReposOutput = {
output: 'Done',
metadata: {
repos: [],
totalCount: 0,
},
};
const staticApprovalRequestedPart = {
type: 'tool-list_repos',
toolCallId: 'tool-call-2',
state: 'approval-requested',
input: listReposInput,
approval: { id: 'approval-2' },
} satisfies SBChatMessagePart;
const staticApprovalRespondedPart = {
type: 'tool-list_repos',
toolCallId: 'tool-call-2',
state: 'approval-responded',
input: listReposInput,
approval: { id: 'approval-2', approved: true },
} satisfies SBChatMessagePart;
const outputAvailablePart = {
type: 'tool-list_repos',
toolCallId: 'tool-call-3',
state: 'output-available',
input: listReposInput,
output: listReposOutput,
} satisfies SBChatMessagePart;
const outputErrorPart = {
type: 'tool-list_repos',
toolCallId: 'tool-call-5',
state: 'output-error',
input: listReposInput,
errorText: 'Tool failed',
} satisfies SBChatMessagePart;
const inputAvailablePart = {
type: 'tool-list_repos',
toolCallId: 'tool-call-4',
state: 'input-available',
input: listReposInput,
} satisfies SBChatMessagePart;
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('slateContentToString serializes command mentions as literal slash commands', () => {
const children = [{
type: 'paragraph',
children: [
{
type: 'mention',
data: {
type: 'command',
commandId: 'skill-1',
sourceId: 'personal-skill',
slug: 'review-pr',
name: 'Review PR',
},
children: [{ text: '' }],
},
{ text: ' focus on auth changes' },
],
}] satisfies Descendant[];
expect(slateContentToString(children)).toBe('/review-pr focus on auth changes\n');
});
test('slateContentToString separates command mentions from adjacent text without doubling spaces', () => {
const commandMention = {
type: 'mention' as const,
data: {
type: 'command' as const,
commandId: 'skill-1',
sourceId: 'personal-skill',
slug: 'review-pr',
name: 'Review PR',
},
children: [{ text: '' }],
};
expect(slateContentToString([{
type: 'paragraph',
children: [
commandMention,
{ text: 'focus on auth changes' },
],
}])).toBe('/review-pr focus on auth changes\n');
expect(slateContentToString([{
type: 'paragraph',
children: [
commandMention,
{ text: ' focus on auth changes' },
],
}])).toBe('/review-pr focus on auth changes\n');
});
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('getLastStepParts returns the last grouped step', () => {
const parts: SBChatMessagePart[] = [
{
type: 'step-start',
},
{
type: 'text',
text: 'First step',
},
{
type: 'step-start',
},
{
type: 'text',
text: 'Last step',
},
];
const lastStep = getLastStepParts(parts);
expect(lastStep).toEqual([
{
type: 'step-start',
},
{
type: 'text',
text: 'Last step',
},
]);
});
test('getTurnProgressState treats submitted and streaming as in progress and navigation guarded', () => {
expect(getTurnProgressState({ messages: [createUserMessage()], status: 'submitted' })).toMatchObject({
isNetworkActive: true,
isTurnInProgress: true,
shouldGuardNavigation: true,
});
expect(getTurnProgressState({ messages: [createUserMessage()], status: 'streaming' })).toMatchObject({
isNetworkActive: true,
isTurnInProgress: true,
shouldGuardNavigation: true,
});
});
test('getTurnProgressState returns idle for no messages and latest user message when ready', () => {
expect(getTurnProgressState({ messages: [], status: 'ready' })).toMatchObject({
isNetworkActive: false,
isTurnInProgress: false,
shouldGuardNavigation: false,
});
expect(getTurnProgressState({ messages: [createUserMessage()], status: 'ready' })).toMatchObject({
isNetworkActive: false,
isTurnInProgress: false,
shouldGuardNavigation: false,
});
});
test('getTurnProgressState treats latest-step approval-requested as awaiting approval but not navigation guarded', () => {
const message = createAssistantMessage([
{
type: 'step-start',
},
dynamicApprovalRequestedPart,
]);
expect(getTurnProgressState({ messages: [createUserMessage(), message], status: 'ready' })).toMatchObject({
hasPendingToolApproval: true,
isAwaitingToolApproval: true,
isTurnInProgress: true,
shouldGuardNavigation: false,
});
});
test('getTurnProgressState treats approval continuation readiness as in progress and navigation guarded', () => {
const message = createAssistantMessage([
{
type: 'step-start',
},
dynamicApprovalRespondedPart,
outputAvailablePart,
]);
expect(getTurnProgressState({ messages: [createUserMessage(), message], status: 'ready' })).toMatchObject({
hasApprovalContinuationReady: true,
isAwaitingToolApproval: false,
isTurnInProgress: true,
shouldGuardNavigation: true,
});
});
test('getTurnProgressState treats approval-responded and output-error as continuation-ready', () => {
const message = createAssistantMessage([
{
type: 'step-start',
},
dynamicApprovalRespondedPart,
outputErrorPart,
]);
expect(getTurnProgressState({ messages: [createUserMessage(), message], status: 'ready' })).toMatchObject({
hasApprovalContinuationReady: true,
isTurnInProgress: true,
shouldGuardNavigation: true,
});
});
test('getTurnProgressState does not treat a responded approval with non-terminal tools as continuation-ready', () => {
const message = createAssistantMessage([
{
type: 'step-start',
},
dynamicApprovalRespondedPart,
inputAvailablePart,
]);
expect(getTurnProgressState({ messages: [createUserMessage(), message], status: 'ready' })).toMatchObject({
hasApprovalContinuationReady: false,
isTurnInProgress: false,
shouldGuardNavigation: false,
});
});
test('getTurnProgressState does not keep terminal tool states in progress', () => {
const message = createAssistantMessage([
{
type: 'step-start',
},
outputAvailablePart,
]);
expect(getTurnProgressState({ messages: [createUserMessage(), message], status: 'ready' })).toMatchObject({
hasPendingToolApproval: false,
hasApprovalContinuationReady: false,
isTurnInProgress: false,
});
});
test('getTurnProgressState treats error as not in progress even with pending approval', () => {
const message = createAssistantMessage([
{
type: 'step-start',
},
dynamicApprovalRequestedPart,
]);
expect(getTurnProgressState({ messages: [createUserMessage(), message], status: 'error' })).toMatchObject({
hasPendingToolApproval: true,
isTurnInProgress: false,
shouldGuardNavigation: false,
});
});
test('getTurnProgressState ignores approvals in older messages and older steps', () => {
const olderMessage = createAssistantMessage([
{
type: 'step-start',
},
dynamicApprovalRequestedPart,
]);
const latestMessage = createAssistantMessage([
{
type: 'step-start',
},
dynamicApprovalRequestedPart,
{
type: 'step-start',
},
{
type: 'text',
text: 'Later step',
},
]);
expect(getTurnProgressState({ messages: [createUserMessage(), olderMessage, createUserMessage()], status: 'ready' })).toMatchObject({
isTurnInProgress: false,
});
expect(getTurnProgressState({ messages: [createUserMessage(), latestMessage], status: 'ready' })).toMatchObject({
isTurnInProgress: false,
});
});
test('getTurnProgressState classifies dynamic and static tool approvals', () => {
expect(getTurnProgressState({
messages: [createAssistantMessage([dynamicApprovalRequestedPart])],
status: 'ready',
})).toMatchObject({
hasPendingToolApproval: true,
isAwaitingToolApproval: true,
});
expect(getTurnProgressState({
messages: [createAssistantMessage([staticApprovalRequestedPart])],
status: 'ready',
})).toMatchObject({
hasPendingToolApproval: true,
isAwaitingToolApproval: true,
});
expect(getTurnProgressState({
messages: [createAssistantMessage([staticApprovalRespondedPart])],
status: 'ready',
})).toMatchObject({
hasApprovalContinuationReady: true,
shouldGuardNavigation: true,
});
});
test('getAnswerPartFromAssistantMessage returns text part when it starts with ANSWER_TAG while turn is complete', () => {
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: `This is the answer to your question.`
});
});
test('getAnswerPartFromAssistantMessage returns text part when it starts with ANSWER_TAG while turn is in progress', () => {
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: `This is the answer to your question.`
});
});
test('getAnswerPartFromAssistantMessage returns last text part as fallback when turn is complete 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 turn is in progress 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();
});
describe('getUserMessageText', () => {
test('returns the text when the text part is first', () => {
const message: SBChatMessage = {
role: 'user',
parts: [
{
type: 'text',
text: 'Hello, world!',
},
],
} as SBChatMessage;
expect(getUserMessageText(message)).toBe('Hello, world!');
});
test('returns the text when a non-text part precedes the text part', () => {
const message: SBChatMessage = {
role: 'user',
parts: [
{
type: 'data-source',
data: {
type: 'file',
path: 'auth.ts',
repo: 'github.com/sourcebot-dev/sourcebot',
name: 'auth.ts',
revision: 'main',
},
},
{
type: 'text',
text: 'Explain this file',
},
],
} as SBChatMessage;
expect(getUserMessageText(message)).toBe('Explain this file');
});
test('returns an empty string when there is no text part', () => {
const message: SBChatMessage = {
role: 'user',
parts: [
{
type: 'data-source',
data: {
type: 'file',
path: 'auth.ts',
repo: 'github.com/sourcebot-dev/sourcebot',
name: 'auth.ts',
revision: 'main',
},
},
],
} as SBChatMessage;
expect(getUserMessageText(message)).toBe('');
});
test('returns an empty string when there are no parts', () => {
const message: SBChatMessage = {
role: 'user',
parts: [],
} as unknown as SBChatMessage;
expect(getUserMessageText(message)).toBe('');
});
});
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);
});
describe('createUIMessage', () => {
test('includes an explicit ranged file source', () => {
const result = createUIMessage('Explain this selected code.', [], [], [], [], [{
type: 'file',
repo: 'github.com/sourcebot-dev/sourcebot',
path: 'packages/web/src/auth.ts',
name: 'auth.ts',
revision: 'main',
range: { startLine: 12, endLine: 30 },
}]);
expect(result.parts).toContainEqual({
type: 'data-source',
data: {
type: 'file',
repo: 'github.com/sourcebot-dev/sourcebot',
path: 'packages/web/src/auth.ts',
name: 'auth.ts',
revision: 'main',
range: { startLine: 12, endLine: 30 },
},
});
});
test('includes disabledMcpServerIds in metadata when provided', () => {
const result = createUIMessage('hello', [], [], ['server1', 'server2']);
expect(result.metadata?.disabledMcpServerIds).toEqual(['server1', 'server2']);
});
test('defaults disabledMcpServerIds to empty array when omitted', () => {
const result = createUIMessage('hello', [], []);
expect(result.metadata?.disabledMcpServerIds).toEqual([]);
});
test('passes through empty array', () => {
const result = createUIMessage('hello', [], [], []);
expect(result.metadata?.disabledMcpServerIds).toEqual([]);
});
test('includes both selectedSearchScopes and disabledMcpServerIds in metadata', () => {
const scopes = [{ type: 'repo' as const, value: 'org/repo', name: 'repo', codeHostType: 'github' }];
const result = createUIMessage('hello', [], scopes, ['disabled1']);
expect(result.metadata?.selectedSearchScopes).toEqual(scopes);
expect(result.metadata?.disabledMcpServerIds).toEqual(['disabled1']);
});
test('converts a leading command mention into command data', () => {
const result = createUIMessage('/review-pr src/auth/session.ts\n', [{
type: 'command',
commandId: 'skill-1',
sourceId: 'personal-skill',
slug: 'review-pr',
name: 'Review PR',
}], [], []);
expect(result.parts).toEqual([
{
type: 'text',
text: '/review-pr src/auth/session.ts\n',
},
{
type: 'data-command',
data: {
type: 'command',
commandId: 'skill-1',
sourceId: 'personal-skill',
slug: 'review-pr',
name: 'Review PR',
},
},
]);
});
test('converts non-leading command mentions into command data', () => {
const result = createUIMessage('please /review-pr src/auth/session.ts', [{
type: 'command',
commandId: 'skill-1',
sourceId: 'personal-skill',
slug: 'review-pr',
name: 'Review PR',
}], [], []);
expect(result.parts).toEqual([
{
type: 'text',
text: 'please /review-pr src/auth/session.ts',
},
{
type: 'data-command',
data: {
type: 'command',
commandId: 'skill-1',
sourceId: 'personal-skill',
slug: 'review-pr',
name: 'Review PR',
},
},
]);
});
});