-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathSessionConfigE2ETests.cs
More file actions
862 lines (728 loc) · 30.8 KB
/
Copy pathSessionConfigE2ETests.cs
File metadata and controls
862 lines (728 loc) · 30.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
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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------------------------------------------*/
using GitHub.Copilot.Rpc;
using GitHub.Copilot.Test.Harness;
using System.Text;
using System.Text.Json;
using Xunit;
using Xunit.Abstractions;
namespace GitHub.Copilot.Test.E2E;
public class SessionConfigE2ETests(E2ETestFixture fixture, ITestOutputHelper output)
: E2ETestBase(fixture, "session_config", output)
{
private const string ViewImagePrompt = "Use the view tool to look at the file test.png and describe what you see";
private const string ProviderHeaderName = "x-copilot-sdk-provider-header";
private const string ClientName = "csharp-public-surface-client";
private static readonly byte[] Png1X1 = Convert.FromBase64String(
"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==");
[Fact]
public async Task Vision_Disabled_Then_Enabled_Via_SetModel()
{
await File.WriteAllBytesAsync(Path.Join(Ctx.WorkDir, "test.png"), Png1X1);
var session = await CreateSessionAsync(new SessionConfig
{
Model = "claude-sonnet-4.5",
ModelCapabilities = new ModelCapabilitiesOverride
{
Supports = new ModelCapabilitiesOverrideSupports { Vision = false },
},
});
// Turn 1: vision off — no image_url expected
await session.SendAndWaitAsync(new MessageOptions { Prompt = ViewImagePrompt });
var trafficAfterT1 = await Ctx.GetExchangesAsync();
var t1Messages = trafficAfterT1.SelectMany(e => e.Request.Messages).ToList();
Assert.False(HasImageUrlContent(t1Messages), "Expected no image_url content when vision is disabled");
// Switch vision on
await session.SetModelAsync(
"claude-sonnet-4.5",
reasoningEffort: null,
modelCapabilities: new ModelCapabilitiesOverride
{
Supports = new ModelCapabilitiesOverrideSupports { Vision = true },
});
// Turn 2: vision on — image_url expected
await session.SendAndWaitAsync(new MessageOptions { Prompt = ViewImagePrompt });
var trafficAfterT2 = await Ctx.GetExchangesAsync();
var newExchanges = trafficAfterT2.Skip(trafficAfterT1.Count).ToList();
Assert.NotEmpty(newExchanges);
var t2Messages = newExchanges.SelectMany(e => e.Request.Messages).ToList();
Assert.True(HasImageUrlContent(t2Messages), "Expected image_url content when vision is enabled");
await session.DisposeAsync();
}
[Fact]
public async Task Vision_Enabled_Then_Disabled_Via_SetModel()
{
await File.WriteAllBytesAsync(Path.Join(Ctx.WorkDir, "test.png"), Png1X1);
var session = await CreateSessionAsync(new SessionConfig
{
Model = "claude-sonnet-4.5",
ModelCapabilities = new ModelCapabilitiesOverride
{
Supports = new ModelCapabilitiesOverrideSupports { Vision = true },
},
});
// Turn 1: vision on — image_url expected
await session.SendAndWaitAsync(new MessageOptions { Prompt = ViewImagePrompt });
var trafficAfterT1 = await Ctx.GetExchangesAsync();
var t1Messages = trafficAfterT1.SelectMany(e => e.Request.Messages).ToList();
Assert.True(HasImageUrlContent(t1Messages), "Expected image_url content when vision is enabled");
// Switch vision off
await session.SetModelAsync(
"claude-sonnet-4.5",
reasoningEffort: null,
modelCapabilities: new ModelCapabilitiesOverride
{
Supports = new ModelCapabilitiesOverrideSupports { Vision = false },
});
// Turn 2: vision off — no image_url expected in new exchanges
await session.SendAndWaitAsync(new MessageOptions { Prompt = ViewImagePrompt });
var trafficAfterT2 = await Ctx.GetExchangesAsync();
var newExchanges = trafficAfterT2.Skip(trafficAfterT1.Count).ToList();
Assert.NotEmpty(newExchanges);
var t2Messages = newExchanges.SelectMany(e => e.Request.Messages).ToList();
Assert.False(HasImageUrlContent(t2Messages), "Expected no image_url content when vision is disabled");
await session.DisposeAsync();
}
[Fact]
public async Task Should_Use_Custom_SessionId()
{
var requestedSessionId = Guid.NewGuid().ToString();
var session = await CreateSessionAsync(new SessionConfig
{
SessionId = requestedSessionId,
});
Assert.Equal(requestedSessionId, session.SessionId);
var messages = await session.GetEventsAsync();
var startEvent = Assert.IsType<SessionStartEvent>(messages[0]);
Assert.Equal(requestedSessionId, startEvent.Data.SessionId);
await session.DisposeAsync();
}
[Fact]
[Trait(E2ETestTraits.Backend, E2ETestTraits.SelfConfiguredBackend)]
public async Task Should_Apply_ReasoningEffort_On_Session_Create()
{
const string reasoningModelId = "custom-reasoning-model";
var session = await CreateSessionAsync(new SessionConfig
{
Model = reasoningModelId,
Provider = CreateProxyProvider("create-reasoning"),
ReasoningEffort = "high",
});
var startEvent = Assert.Single((await session.GetEventsAsync()).OfType<SessionStartEvent>());
Assert.Equal(reasoningModelId, startEvent.Data.SelectedModel);
Assert.Equal("high", startEvent.Data.ReasoningEffort);
await session.DisposeAsync();
}
[Theory]
[Trait(E2ETestTraits.Backend, E2ETestTraits.SelfConfiguredBackend)]
[InlineData("low")]
[InlineData("medium")]
[InlineData("high")]
public async Task Should_Apply_All_ReasoningEffort_Values_On_Session_Create(string effort)
{
const string reasoningModelId = "custom-reasoning-model";
var session = await CreateSessionAsync(new SessionConfig
{
Model = reasoningModelId,
Provider = CreateProxyProvider($"reasoning-{effort}"),
ReasoningEffort = effort,
});
var startEvent = Assert.Single((await session.GetEventsAsync()).OfType<SessionStartEvent>());
Assert.Equal(reasoningModelId, startEvent.Data.SelectedModel);
Assert.Equal(effort, startEvent.Data.ReasoningEffort);
await session.DisposeAsync();
}
[Fact]
[Trait(E2ETestTraits.Backend, E2ETestTraits.SelfConfiguredBackend)]
public async Task Should_Apply_ReasoningEffort_On_Session_Resume()
{
var originalSession = await CreateSessionAsync();
const string reasoningModelId = "custom-reasoning-model";
var resumedSession = await ResumeSessionAsync(originalSession.SessionId, new ResumeSessionConfig
{
Model = reasoningModelId,
Provider = CreateProxyProvider("resume-reasoning"),
ReasoningEffort = "high",
});
var resumeEvent = Assert.Single((await resumedSession.GetEventsAsync()).OfType<SessionResumeEvent>());
Assert.Equal(reasoningModelId, resumeEvent.Data.SelectedModel);
Assert.Equal("high", resumeEvent.Data.ReasoningEffort);
await resumedSession.DisposeAsync();
await originalSession.DisposeAsync();
}
[Fact]
public async Task Should_Forward_ClientName_In_UserAgent()
{
var session = await CreateSessionAsync(new SessionConfig
{
ClientName = ClientName,
});
await session.SendAndWaitAsync(new MessageOptions { Prompt = "What is 1+1?" });
var exchange = Assert.Single(await Ctx.GetExchangesAsync());
AssertHeaderContains(exchange.RequestHeaders, "user-agent", ClientName);
await session.DisposeAsync();
}
[Fact]
[Trait(E2ETestTraits.Backend, E2ETestTraits.SelfConfiguredBackend)]
public async Task Should_Forward_Custom_Provider_Headers_On_Create()
{
var session = await CreateSessionAsync(new SessionConfig
{
Model = "claude-sonnet-4.5",
Provider = CreateProxyProvider("create-provider-header"),
});
var message = await session.SendAndWaitAsync(new MessageOptions { Prompt = "What is 1+1?" });
Assert.Contains("2", message?.Data.Content ?? string.Empty);
var exchange = Assert.Single(await Ctx.GetExchangesAsync());
AssertHeaderContains(exchange.RequestHeaders, "authorization", "Bearer test-provider-key");
AssertHeaderContains(exchange.RequestHeaders, ProviderHeaderName, "create-provider-header");
await session.DisposeAsync();
}
[Fact]
[Trait(E2ETestTraits.Backend, E2ETestTraits.SelfConfiguredBackend)]
public async Task Should_Forward_Custom_Provider_Headers_On_Resume()
{
var session1 = await CreateSessionAsync();
var sessionId = session1.SessionId;
var session2 = await ResumeSessionAsync(sessionId, new ResumeSessionConfig
{
Model = "claude-sonnet-4.5",
Provider = CreateProxyProvider("resume-provider-header"),
});
var message = await session2.SendAndWaitAsync(new MessageOptions { Prompt = "What is 2+2?" });
Assert.Contains("4", message?.Data.Content ?? string.Empty);
var exchange = Assert.Single(await Ctx.GetExchangesAsync());
AssertHeaderContains(exchange.RequestHeaders, "authorization", "Bearer test-provider-key");
AssertHeaderContains(exchange.RequestHeaders, ProviderHeaderName, "resume-provider-header");
await session2.DisposeAsync();
}
[Fact]
[Trait(E2ETestTraits.Backend, E2ETestTraits.SelfConfiguredBackend)]
public async Task Should_Forward_Provider_Wire_Model()
{
// Verifies that ProviderConfig.WireModel overrides the model name sent to
// the provider API, while SessionConfig.Model still drives runtime
// configuration lookup (capabilities, prompts, reasoning behavior).
// MaxOutputTokens is also set here to confirm the SDK accepts it without
// serialization errors; the CLI does not echo it as `max_tokens` on the
// OpenAI-style wire request, so we don't assert on it directly (see unit
// tests for serialization coverage).
var session = await CreateSessionAsync(new SessionConfig
{
Model = "claude-sonnet-4.5",
Provider = new ProviderConfig
{
Type = "openai",
BaseUrl = Ctx.ProxyUrl,
ApiKey = "test-provider-key",
WireModel = "test-wire-model",
MaxOutputTokens = 1024,
},
});
await session.SendAndWaitAsync(new MessageOptions { Prompt = "What is 1+1?" });
var exchange = Assert.Single(await Ctx.GetExchangesAsync());
Assert.Equal("test-wire-model", exchange.Request.Model);
await session.DisposeAsync();
}
[Fact]
[Trait(E2ETestTraits.Backend, E2ETestTraits.SelfConfiguredBackend)]
public async Task Should_Use_Provider_Model_Id_As_Wire_Model()
{
// ProviderConfig.ModelId drives both the runtime resolved model AND the wire model
// when WireModel is not specified. Here SessionConfig.Model is intentionally omitted
// so that ModelId is the only model source.
var session = await CreateSessionAsync(new SessionConfig
{
Provider = new ProviderConfig
{
Type = "openai",
BaseUrl = Ctx.ProxyUrl,
ApiKey = "test-provider-key",
ModelId = "claude-sonnet-4.5",
},
});
await session.SendAndWaitAsync(new MessageOptions { Prompt = "What is 1+1?" });
var exchange = Assert.Single(await Ctx.GetExchangesAsync());
Assert.Equal("claude-sonnet-4.5", exchange.Request.Model);
await session.DisposeAsync();
}
[Fact]
public async Task Should_Use_WorkingDirectory_For_Tool_Execution()
{
var subDir = Path.Join(Ctx.WorkDir, "subproject");
Directory.CreateDirectory(subDir);
await File.WriteAllTextAsync(Path.Join(subDir, "marker.txt"), "I am in the subdirectory");
var session = await CreateSessionAsync(new SessionConfig
{
WorkingDirectory = subDir,
});
var message = await session.SendAndWaitAsync(new MessageOptions
{
Prompt = "Read the file marker.txt and tell me what it says",
});
Assert.Contains("subdirectory", message?.Data.Content ?? string.Empty);
await session.DisposeAsync();
}
[Fact]
public async Task Should_Apply_WorkingDirectory_On_Session_Resume()
{
var subDir = Path.Join(Ctx.WorkDir, "resume-subproject");
Directory.CreateDirectory(subDir);
await File.WriteAllTextAsync(Path.Join(subDir, "resume-marker.txt"), "I am in the resume working directory");
var session1 = await CreateSessionAsync();
var sessionId = session1.SessionId;
var session2 = await ResumeSessionAsync(sessionId, new ResumeSessionConfig
{
WorkingDirectory = subDir,
});
var message = await session2.SendAndWaitAsync(new MessageOptions
{
Prompt = "Read the file resume-marker.txt and tell me what it says",
});
Assert.Contains("resume working directory", message?.Data.Content ?? string.Empty);
await session2.DisposeAsync();
}
[Fact]
public async Task Should_Apply_SystemMessage_On_Session_Resume()
{
var session1 = await CreateSessionAsync();
var sessionId = session1.SessionId;
var resumeInstruction = "End the response with RESUME_SYSTEM_MESSAGE_SENTINEL.";
var session2 = await ResumeSessionAsync(sessionId, new ResumeSessionConfig
{
SystemMessage = new SystemMessageConfig
{
Mode = SystemMessageMode.Append,
Content = resumeInstruction,
},
});
var message = await session2.SendAndWaitAsync(new MessageOptions { Prompt = "What is 1+1?" });
Assert.Contains("RESUME_SYSTEM_MESSAGE_SENTINEL", message?.Data.Content ?? string.Empty);
var exchange = Assert.Single(await Ctx.GetExchangesAsync());
Assert.Contains(resumeInstruction, GetSystemMessage(exchange));
await session2.DisposeAsync();
}
[Fact]
public async Task Should_Apply_InstructionDirectories_On_Create()
{
var projectDir = Path.Join(Ctx.WorkDir, "instruction-create-project");
var instructionDir = Path.Join(Ctx.WorkDir, "extra-create-instructions");
var instructionFilesDir = Path.Join(instructionDir, ".github", "instructions");
const string sentinel = "CS_CREATE_INSTRUCTION_DIRECTORIES_SENTINEL";
Directory.CreateDirectory(projectDir);
Directory.CreateDirectory(instructionFilesDir);
await File.WriteAllTextAsync(
Path.Join(instructionFilesDir, "extra.instructions.md"),
$"Always include {sentinel}.");
var session = await CreateSessionAsync(new SessionConfig
{
WorkingDirectory = projectDir,
InstructionDirectories = [instructionDir],
});
await session.SendAndWaitAsync(new MessageOptions { Prompt = "What is 1+1?" });
var exchange = Assert.Single(await Ctx.GetExchangesAsync());
Assert.Contains(sentinel, GetSystemMessage(exchange));
await session.DisposeAsync();
}
[Fact]
public async Task Should_Apply_InstructionDirectories_On_Resume()
{
var projectDir = Path.Join(Ctx.WorkDir, "instruction-resume-project");
var instructionDir = Path.Join(Ctx.WorkDir, "extra-resume-instructions");
var instructionFilesDir = Path.Join(instructionDir, ".github", "instructions");
const string sentinel = "CS_RESUME_INSTRUCTION_DIRECTORIES_SENTINEL";
Directory.CreateDirectory(projectDir);
Directory.CreateDirectory(instructionFilesDir);
await File.WriteAllTextAsync(
Path.Join(instructionFilesDir, "extra.instructions.md"),
$"Always include {sentinel}.");
var session1 = await CreateSessionAsync(new SessionConfig
{
WorkingDirectory = projectDir,
});
var session2 = await ResumeSessionAsync(session1.SessionId, new ResumeSessionConfig
{
WorkingDirectory = projectDir,
InstructionDirectories = [instructionDir],
});
await session2.SendAndWaitAsync(new MessageOptions { Prompt = "What is 1+1?" });
var exchange = Assert.Single(await Ctx.GetExchangesAsync());
Assert.Contains(sentinel, GetSystemMessage(exchange));
await session2.DisposeAsync();
await session1.DisposeAsync();
}
[Fact]
public async Task Should_Apply_AvailableTools_On_Session_Resume()
{
var session1 = await CreateSessionAsync();
var sessionId = session1.SessionId;
var session2 = await ResumeSessionAsync(sessionId, new ResumeSessionConfig
{
AvailableTools = ["view"],
});
try
{
var exchange = Assert.Single(await SendAndWaitForExchangesAsync(
session2,
new MessageOptions { Prompt = "What is 1+1?" }));
Assert.Equal(["view"], GetToolNames(exchange));
}
finally
{
await session2.DisposeAsync();
}
}
[Fact]
public async Task Should_Apply_Session_Limits_On_Create()
{
var session = await CreateSessionAsync(new SessionConfig
{
SessionLimits = new SessionLimitsConfig
{
MaxAiCredits = 30,
},
});
try
{
var exchange = await SendAndGetNextExchangeAsync(
session,
"Acknowledge the current session limits.");
AssertSessionLimitsStatus(exchange, "30 AI credits");
}
finally
{
await session.DisposeAsync();
}
}
[Fact]
public async Task Should_Apply_Session_Limits_On_Resume()
{
var session1 = await CreateSessionAsync();
var session2 = await ResumeSessionAsync(session1.SessionId, new ResumeSessionConfig
{
SessionLimits = new SessionLimitsConfig
{
MaxAiCredits = 30,
},
});
try
{
var exchange = await SendAndGetNextExchangeAsync(
session2,
"Acknowledge the current session limits.");
AssertSessionLimitsStatus(exchange, "30 AI credits");
}
finally
{
await session2.DisposeAsync();
await session1.DisposeAsync();
}
}
[Fact]
public async Task Should_Apply_Excluded_Built_In_Agents_On_Create()
{
const string excludedAgent = "explore";
const string prompt = "What is 1+1?";
var baselineSession = await CreateSessionAsync();
try
{
var baselineExchange = await SendAndGetNextExchangeAsync(baselineSession, prompt);
Assert.Contains(excludedAgent, GetTaskAgentTypes(baselineExchange));
}
finally
{
await baselineSession.DisposeAsync();
}
var excludedSession = await CreateSessionAsync(new SessionConfig
{
ExcludedBuiltInAgents = [excludedAgent],
});
try
{
var excludedExchange = await SendAndGetNextExchangeAsync(excludedSession, prompt);
var agentTypes = GetTaskAgentTypes(excludedExchange);
Assert.NotEmpty(agentTypes);
Assert.DoesNotContain(excludedAgent, agentTypes);
}
finally
{
await excludedSession.DisposeAsync();
}
}
[Fact]
public async Task Should_Apply_Excluded_Built_In_Agents_On_Resume()
{
const string excludedAgent = "explore";
var session1 = await CreateSessionAsync();
var session2 = await ResumeSessionAsync(session1.SessionId, new ResumeSessionConfig
{
ExcludedBuiltInAgents = [excludedAgent],
});
try
{
var exchange = await SendAndGetNextExchangeAsync(session2, "What is 1+1?");
var agentTypes = GetTaskAgentTypes(exchange);
Assert.NotEmpty(agentTypes);
Assert.DoesNotContain(excludedAgent, agentTypes);
}
finally
{
await session2.DisposeAsync();
await session1.DisposeAsync();
}
}
[Fact]
[Trait(E2ETestTraits.Backend, E2ETestTraits.SelfConfiguredBackend)]
public async Task Should_Enable_Citations_For_Anthropic_File_Attachments_On_Create()
{
var handler = new RecordingRequestHandler();
await using var client = CreateClientWithRequestHandler(handler);
await client.StartAsync();
var session = await Ctx.CreateSessionAsync(client, new SessionConfig
{
OnPermissionRequest = PermissionHandler.ApproveAll,
Model = "claude-sonnet-4.5",
EnableCitations = true,
Provider = CreateAnthropicProvider(),
});
try
{
await session.SendAndWaitAsync(new MessageOptions
{
Prompt = "Summarize the attached PDF with citations enabled.",
Attachments = [CreatePdfAttachment()],
});
AssertAnthropicDocumentCitationsEnabled(Assert.Single(handler.InferenceRequests).Body);
}
finally
{
await session.DisposeAsync();
}
}
[Fact]
[Trait(E2ETestTraits.Backend, E2ETestTraits.SelfConfiguredBackend)]
public async Task Should_Enable_Citations_For_Anthropic_File_Attachments_On_Resume()
{
const string connectionToken = "citation-resume-token";
var handler = new RecordingRequestHandler();
await using var client = CreateClientWithRequestHandler(
handler,
RuntimeConnection.ForTcp(connectionToken: connectionToken));
await client.StartAsync();
var session1 = await Ctx.CreateSessionAsync(client, new SessionConfig
{
OnPermissionRequest = PermissionHandler.ApproveAll,
});
var sessionId = session1.SessionId;
var port = client.RuntimePort
?? throw new InvalidOperationException("The handler-backed E2E client must use TCP transport to support multi-client resume.");
await using var resumeClient = Ctx.CreateClient(options: new CopilotClientOptions
{
Connection = RuntimeConnection.ForUri($"localhost:{port}", connectionToken: connectionToken),
});
var session2 = await Ctx.ResumeSessionAsync(resumeClient, sessionId, new ResumeSessionConfig
{
OnPermissionRequest = PermissionHandler.ApproveAll,
Model = "claude-sonnet-4.5",
EnableCitations = true,
Provider = CreateAnthropicProvider(),
});
try
{
await session2.SendAndWaitAsync(new MessageOptions
{
Prompt = "Summarize the attached PDF with citations enabled.",
Attachments = [CreatePdfAttachment()],
});
AssertAnthropicDocumentCitationsEnabled(Assert.Single(handler.InferenceRequests).Body);
}
finally
{
await session2.DisposeAsync();
await session1.DisposeAsync();
}
}
[Fact]
[Trait(E2ETestTraits.Backend, E2ETestTraits.SelfConfiguredBackend)]
public async Task Should_Create_Session_With_Custom_Provider_Config()
{
// Per the TS test (session_config.e2e.test.ts), this only verifies that a
// session can be created with a custom provider config and that disconnect
// is allowed to fail since the fake provider URL won't be reachable.
var session = await CreateSessionAsync(new SessionConfig
{
Provider = new ProviderConfig
{
BaseUrl = "https://api.example.com/v1",
ApiKey = "test-key",
},
});
Assert.Matches(@"^[a-f0-9-]+$", session.SessionId);
try
{
await session.DisposeAsync();
}
catch (Exception)
{
// disconnect may fail since the provider is fake
}
}
[Fact]
public async Task Should_Accept_Blob_Attachments()
{
const string pngBase64 =
"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==";
var session = await CreateSessionAsync();
var response = await session.SendAndWaitAsync(new MessageOptions
{
Prompt = "Acknowledge receipt of this image in exactly two words: Image received.",
Attachments =
[
new AttachmentBlob
{
Data = pngBase64,
MimeType = "image/png",
DisplayName = "pixel.png",
},
],
});
Assert.Equal("Image received.", response?.Data.Content);
var exchange = Assert.Single(await Ctx.GetExchangesAsync());
Assert.True(HasImageUrlContent(exchange.Request.Messages), "Expected the request to contain the blob image");
await session.DisposeAsync();
}
[Fact]
public async Task Should_Accept_Message_Attachments()
{
var attachedPath = Path.Join(Ctx.WorkDir, "attached.txt");
await File.WriteAllTextAsync(attachedPath, "This file is attached");
var session = await CreateSessionAsync();
await session.SendAndWaitAsync(new MessageOptions
{
Prompt = "Summarize the attached file",
Attachments =
[
new AttachmentFile
{
Path = attachedPath,
DisplayName = "attached.txt",
},
],
});
await session.DisposeAsync();
}
private CopilotClient CreateClientWithRequestHandler(
CopilotRequestHandler handler,
RuntimeConnection? connection = null)
{
return Ctx.CreateClient(options: new CopilotClientOptions
{
Connection = connection ?? RuntimeConnection.ForStdio(),
RequestHandler = handler,
});
}
private async Task<ParsedHttpExchange> SendAndGetNextExchangeAsync(CopilotSession session, string prompt)
{
var existingCount = (await Ctx.GetExchangesAsync()).Count;
var exchanges = await SendAndWaitForExchangesAsync(
session,
new MessageOptions { Prompt = prompt },
minimumCount: existingCount + 1);
return exchanges[existingCount];
}
private static void AssertSessionLimitsStatus(ParsedHttpExchange exchange, string expectedRemaining)
{
var message = exchange.Request.Messages.SingleOrDefault(m =>
m.Role == "user"
&& m.StringContent?.Contains("<session_limits_status>", StringComparison.Ordinal) == true);
Assert.NotNull(message);
Assert.Contains($"Remaining session limits: {expectedRemaining}.", message!.StringContent);
Assert.Contains(
"Be frugal; avoid optional exploration and unnecessary tool calls.",
message.StringContent);
}
private static IReadOnlyList<string> GetTaskAgentTypes(ParsedHttpExchange exchange)
{
var taskTool = Assert.Single(
exchange.Request.Tools ?? [],
tool => string.Equals(tool.Function.Name, "task", StringComparison.Ordinal));
var parameters = taskTool.Function.Parameters;
Assert.NotNull(parameters);
var enumValues = parameters!.Value
.GetProperty("properties")
.GetProperty("agent_type")
.GetProperty("enum");
return [.. enumValues.EnumerateArray().Select(value => value.GetString()).OfType<string>()];
}
private static AttachmentBlob CreatePdfAttachment()
{
const string pdfText = "%PDF-1.4\n1 0 obj\n<< /Type /Catalog >>\nendobj\ntrailer\n<< /Root 1 0 R >>\n%%EOF\n";
return new AttachmentBlob
{
Data = Convert.ToBase64String(Encoding.ASCII.GetBytes(pdfText)),
DisplayName = "citation-source.pdf",
MimeType = "application/pdf",
};
}
private static ProviderConfig CreateAnthropicProvider()
{
return new ProviderConfig
{
Type = "anthropic",
BaseUrl = "https://anthropic-citations.invalid/v1",
ApiKey = "test-provider-key",
ModelId = "claude-sonnet-4.5",
WireModel = "claude-sonnet-4.5",
};
}
private static void AssertAnthropicDocumentCitationsEnabled(string requestBody)
{
using var document = JsonDocument.Parse(requestBody);
var documentBlocks = document.RootElement
.GetProperty("messages")
.EnumerateArray()
.SelectMany(message => message.GetProperty("content").EnumerateArray())
.Where(block => block.GetProperty("type").GetString() == "document")
.ToList();
var documentBlock = Assert.Single(documentBlocks);
Assert.Equal("citation-source.pdf", documentBlock.GetProperty("title").GetString());
Assert.True(documentBlock.GetProperty("citations").GetProperty("enabled").GetBoolean());
}
private ProviderConfig CreateProxyProvider(string headerValue)
{
return new ProviderConfig
{
Type = "openai",
BaseUrl = Ctx.ProxyUrl,
ApiKey = "test-provider-key",
Headers = new Dictionary<string, string>
{
[ProviderHeaderName] = headerValue,
},
};
}
private static void AssertHeaderContains(
Dictionary<string, JsonElement>? headers,
string expectedName,
string expectedValue)
{
Assert.NotNull(headers);
var header = headers.FirstOrDefault(
pair => string.Equals(pair.Key, expectedName, StringComparison.OrdinalIgnoreCase));
var actualHeaders = string.Join(", ", headers.Select(pair => $"{pair.Key}={HeaderValueAsString(pair.Value)}"));
Assert.False(
string.IsNullOrEmpty(header.Key),
$"Expected header '{expectedName}' to be present. Actual headers: {actualHeaders}");
Assert.Contains(expectedValue, HeaderValueAsString(header.Value), StringComparison.Ordinal);
}
private static string HeaderValueAsString(JsonElement value)
{
return value.ValueKind switch
{
JsonValueKind.String => value.GetString() ?? string.Empty,
JsonValueKind.Array => string.Join(",", value.EnumerateArray().Select(HeaderValueAsString)),
_ => value.ToString(),
};
}
}