forked from github/copilot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSessionConfigE2ETests.cs
More file actions
584 lines (486 loc) · 21.4 KB
/
Copy pathSessionConfigE2ETests.cs
File metadata and controls
584 lines (486 loc) · 21.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
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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------------------------------------------*/
using GitHub.Copilot.Rpc;
using GitHub.Copilot.Test.Harness;
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]
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]
[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]
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]
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]
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]
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]
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_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()
{
// Write the image to disk so the model can view it if it tries
const string pngBase64 =
"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==";
await File.WriteAllBytesAsync(
Path.Join(Ctx.WorkDir, "pixel.png"),
Convert.FromBase64String(pngBase64));
var session = await CreateSessionAsync();
await session.SendAndWaitAsync(new MessageOptions
{
Prompt = "What color is this pixel? Reply in one word.",
Attachments =
[
new UserMessageAttachmentBlob
{
Data = pngBase64,
MimeType = "image/png",
DisplayName = "pixel.png",
},
],
});
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 UserMessageAttachmentFile
{
Path = attachedPath,
DisplayName = "attached.txt",
},
],
});
await session.DisposeAsync();
}
/// <summary>
/// Checks whether any user message contains an image_url content part.
/// Content can be a string (no images) or a JSON array of content parts.
/// </summary>
private static bool HasImageUrlContent(List<ChatCompletionMessage> messages)
{
return messages
.Where(m => m.Role == "user" && m.Content is { ValueKind: JsonValueKind.Array })
.Any(m => m.Content!.Value.EnumerateArray().Any(part =>
part.TryGetProperty("type", out var typeProp) &&
typeProp.ValueKind == JsonValueKind.String &&
typeProp.GetString() == "image_url"));
}
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(),
};
}
}