-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathClientSessionLifetimeTests.cs
More file actions
474 lines (397 loc) · 16.2 KB
/
ClientSessionLifetimeTests.cs
File metadata and controls
474 lines (397 loc) · 16.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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------------------------------------------*/
#if NET8_0_OR_GREATER
using System.Net;
using System.Net.Sockets;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Text;
using System.Text.Json;
using Xunit;
namespace GitHub.Copilot.Test.Unit;
public sealed class ClientSessionLifetimeTests
{
[Fact]
public async Task Dropped_Session_Remains_Rooted_By_Client()
{
await using var server = await FakeCopilotServer.StartAsync();
await using var client = new CopilotClient(new CopilotClientOptions { Connection = RuntimeConnection.ForUri(server.Url) });
var weakSession = await CreateDroppedSessionAsync(client);
ForceCollect();
Assert.True(
weakSession.TryGetTarget(out _),
"CopilotClient should root created sessions until they are explicitly disposed or the client stops.");
AssertSessionCount(client, sessions: 1);
GC.KeepAlive(client);
}
[Fact]
public async Task Disposed_Session_Is_Removed_From_Client()
{
await using var server = await FakeCopilotServer.StartAsync();
await using var client = new CopilotClient(new CopilotClientOptions { Connection = RuntimeConnection.ForUri(server.Url) });
var session = await client.CreateSessionAsync(new SessionConfig
{
OnPermissionRequest = PermissionHandler.ApproveAll
});
AssertSessionCount(client, sessions: 1);
await session.DisposeAsync();
AssertSessionCount(client, sessions: 0);
}
[Fact]
public async Task Disposing_Session_Remains_Rooted_Until_Destroy_Completes()
{
await using var server = await FakeCopilotServer.StartAsync();
server.DelayDestroy();
await using var client = new CopilotClient(new CopilotClientOptions { Connection = RuntimeConnection.ForUri(server.Url) });
var session = await client.CreateSessionAsync(new SessionConfig
{
OnPermissionRequest = PermissionHandler.ApproveAll
});
AssertSessionCount(client, sessions: 1);
var disposeTask = session.DisposeAsync().AsTask();
await server.DestroyStarted;
AssertSessionCount(client, sessions: 1);
server.CompleteDestroy();
await disposeTask;
AssertSessionCount(client, sessions: 0);
}
[Fact]
public async Task StopAsync_Removes_Rooted_Sessions()
{
await using var server = await FakeCopilotServer.StartAsync();
await using var client = new CopilotClient(new CopilotClientOptions { Connection = RuntimeConnection.ForUri(server.Url) });
_ = await client.CreateSessionAsync(new SessionConfig
{
OnPermissionRequest = PermissionHandler.ApproveAll
});
AssertSessionCount(client, sessions: 1);
await client.StopAsync();
AssertSessionCount(client, sessions: 0);
}
[Fact]
public async Task StopAsync_Keeps_Session_Rooted_Until_Destroy_Completes()
{
await using var server = await FakeCopilotServer.StartAsync();
server.DelayDestroy();
await using var client = new CopilotClient(new CopilotClientOptions { Connection = RuntimeConnection.ForUri(server.Url) });
_ = await client.CreateSessionAsync(new SessionConfig
{
OnPermissionRequest = PermissionHandler.ApproveAll
});
AssertSessionCount(client, sessions: 1);
var stopTask = client.StopAsync();
await server.DestroyStarted;
AssertSessionCount(client, sessions: 1);
server.CompleteDestroy();
await stopTask;
AssertSessionCount(client, sessions: 0);
}
[Fact]
public async Task ResumeSessionAsync_Throws_When_Same_Client_Already_Tracks_Session()
{
await using var server = await FakeCopilotServer.StartAsync();
await using var client = new CopilotClient(new CopilotClientOptions { Connection = RuntimeConnection.ForUri(server.Url) });
var sessionId = "same-session-id";
await using var session = await client.CreateSessionAsync(new SessionConfig
{
SessionId = sessionId,
OnPermissionRequest = PermissionHandler.ApproveAll
});
AssertSessionCount(client, sessions: 1);
var exception = await Assert.ThrowsAsync<InvalidOperationException>(() => client.ResumeSessionAsync(sessionId, new ResumeSessionConfig
{
OnPermissionRequest = PermissionHandler.ApproveAll
}));
Assert.Contains(sessionId, exception.Message);
AssertSessionCount(client, sessions: 1);
}
[Fact]
public async Task Generated_Session_Rpc_Throws_When_Session_Disposed()
{
await using var server = await FakeCopilotServer.StartAsync();
await using var client = new CopilotClient(new CopilotClientOptions { Connection = RuntimeConnection.ForUri(server.Url) });
var session = await client.CreateSessionAsync(new SessionConfig
{
OnPermissionRequest = PermissionHandler.ApproveAll
});
await session.DisposeAsync();
await Assert.ThrowsAsync<ObjectDisposedException>(() => session.Rpc.Model.GetCurrentAsync());
}
[MethodImpl(MethodImplOptions.NoInlining)]
private static async Task<WeakReference<CopilotSession>> CreateDroppedSessionAsync(CopilotClient client)
{
var session = await client.CreateSessionAsync(new SessionConfig
{
OnPermissionRequest = PermissionHandler.ApproveAll
});
return new WeakReference<CopilotSession>(session);
}
private static void ForceCollect()
{
GC.Collect();
GC.WaitForPendingFinalizers();
GC.Collect();
}
private static void AssertSessionCount(CopilotClient client, int sessions)
{
Assert.Equal(sessions, GetPrivateDictionaryCount(client, "_sessions"));
}
private static int GetPrivateDictionaryCount(CopilotClient client, string fieldName)
{
var field = typeof(CopilotClient).GetField(fieldName, BindingFlags.Instance | BindingFlags.NonPublic)
?? throw new InvalidOperationException($"Field '{fieldName}' was not found.");
var dictionary = field.GetValue(client)
?? throw new InvalidOperationException($"Field '{fieldName}' was null.");
var count = dictionary.GetType().GetProperty("Count")
?? throw new InvalidOperationException($"Field '{fieldName}' does not expose Count.");
return (int)count.GetValue(dictionary)!;
}
private sealed class FakeCopilotServer : IAsyncDisposable
{
private readonly TcpListener _listener;
private readonly CancellationTokenSource _cts = new();
private readonly SemaphoreSlim _writeLock = new(1, 1);
private readonly TaskCompletionSource _destroyStarted = new(TaskCreationOptions.RunContinuationsAsynchronously);
private readonly TaskCompletionSource _allowDestroy = new(TaskCreationOptions.RunContinuationsAsynchronously);
private readonly Task _serverTask;
private string? _lastSessionId;
private bool _delayDestroy;
private FakeCopilotServer(TcpListener listener)
{
_listener = listener;
_serverTask = RunAsync();
}
public string Url
{
get
{
var endpoint = (IPEndPoint)_listener.LocalEndpoint;
return $"http://127.0.0.1:{endpoint.Port}";
}
}
public static Task<FakeCopilotServer> StartAsync()
{
var listener = new TcpListener(IPAddress.Loopback, 0);
listener.Start();
return Task.FromResult(new FakeCopilotServer(listener));
}
public Task DestroyStarted => _destroyStarted.Task;
public void DelayDestroy()
{
_delayDestroy = true;
}
public void CompleteDestroy()
{
_allowDestroy.TrySetResult();
}
public async ValueTask DisposeAsync()
{
_allowDestroy.TrySetResult();
_cts.Cancel();
_listener.Stop();
try
{
await _serverTask;
}
catch (Exception ex) when (ex is OperationCanceledException or ObjectDisposedException or IOException or SocketException)
{
}
_cts.Dispose();
_writeLock.Dispose();
}
private async Task RunAsync()
{
using var tcpClient = await _listener.AcceptTcpClientAsync(_cts.Token);
using var stream = tcpClient.GetStream();
while (!_cts.Token.IsCancellationRequested)
{
using var request = await ReadMessageAsync(stream, _cts.Token);
if (request is null)
{
return;
}
await HandleRequestAsync(stream, request.RootElement, _cts.Token);
}
}
private async Task HandleRequestAsync(Stream stream, JsonElement request, CancellationToken cancellationToken)
{
if (!request.TryGetProperty("id", out var idElement))
{
return;
}
var id = idElement.Clone();
var method = request.GetProperty("method").GetString();
object? result = method switch
{
"connect" => new Dictionary<string, object?>
{
["ok"] = true,
["protocolVersion"] = 3,
["version"] = "test"
},
"session.create" => CreateSessionResult(request),
"session.resume" => CreateSessionResult(request),
"session.send" => new Dictionary<string, object?>
{
["messageId"] = "message-1"
},
"session.delete" => new Dictionary<string, object?>
{
["success"] = true
},
"session.destroy" => await DestroySessionAsync(cancellationToken),
_ => throw new InvalidOperationException($"Unexpected RPC method '{method}'.")
};
await WriteMessageAsync(stream, new Dictionary<string, object?>
{
["jsonrpc"] = "2.0",
["id"] = id,
["result"] = result
}, cancellationToken);
}
private Dictionary<string, object?> CreateSessionResult(JsonElement request)
{
string? sessionId = null;
if (request.TryGetProperty("params", out var paramsProp)
&& paramsProp.ValueKind == JsonValueKind.Object
&& paramsProp.TryGetProperty("sessionId", out var sidProp)
&& sidProp.ValueKind == JsonValueKind.String)
{
sessionId = sidProp.GetString();
}
if (string.IsNullOrEmpty(sessionId))
{
sessionId = Guid.NewGuid().ToString();
}
_lastSessionId = sessionId;
return new Dictionary<string, object?>
{
["sessionId"] = _lastSessionId,
["workspacePath"] = null,
["capabilities"] = null
};
}
private async Task<Dictionary<string, object?>> DestroySessionAsync(CancellationToken cancellationToken)
{
if (_delayDestroy)
{
_destroyStarted.TrySetResult();
await _allowDestroy.Task.WaitAsync(cancellationToken);
}
return [];
}
private async Task WriteMessageAsync(Stream stream, object payload, CancellationToken cancellationToken)
{
using var bodyStream = new MemoryStream();
using (var writer = new Utf8JsonWriter(bodyStream))
{
WriteJsonValue(writer, payload);
}
var body = bodyStream.ToArray();
var header = Encoding.ASCII.GetBytes($"Content-Length: {body.Length}\r\n\r\n");
await _writeLock.WaitAsync(cancellationToken);
try
{
await stream.WriteAsync(header, cancellationToken);
await stream.WriteAsync(body, cancellationToken);
await stream.FlushAsync(cancellationToken);
}
finally
{
_writeLock.Release();
}
}
private static void WriteJsonValue(Utf8JsonWriter writer, object? value)
{
switch (value)
{
case null:
writer.WriteNullValue();
break;
case string stringValue:
writer.WriteStringValue(stringValue);
break;
case bool boolValue:
writer.WriteBooleanValue(boolValue);
break;
case int intValue:
writer.WriteNumberValue(intValue);
break;
case long longValue:
writer.WriteNumberValue(longValue);
break;
case JsonElement jsonElement:
jsonElement.WriteTo(writer);
break;
case Dictionary<string, object?> dictionary:
writer.WriteStartObject();
foreach (var (propertyName, propertyValue) in dictionary)
{
writer.WritePropertyName(propertyName);
WriteJsonValue(writer, propertyValue);
}
writer.WriteEndObject();
break;
case object?[] array:
writer.WriteStartArray();
foreach (var item in array)
{
WriteJsonValue(writer, item);
}
writer.WriteEndArray();
break;
default:
throw new InvalidOperationException($"Unexpected JSON value type '{value.GetType().Name}'.");
}
}
private static async Task<JsonDocument?> ReadMessageAsync(Stream stream, CancellationToken cancellationToken)
{
var headerBytes = new List<byte>();
while (true)
{
var value = await ReadByteAsync(stream, cancellationToken);
if (value < 0)
{
return null;
}
headerBytes.Add((byte)value);
var count = headerBytes.Count;
if (count >= 4 &&
headerBytes[count - 4] == '\r' &&
headerBytes[count - 3] == '\n' &&
headerBytes[count - 2] == '\r' &&
headerBytes[count - 1] == '\n')
{
break;
}
}
var header = Encoding.ASCII.GetString([.. headerBytes]);
var contentLength = header
.Split(["\r\n"], StringSplitOptions.RemoveEmptyEntries)
.Select(line => line.Split(':', 2))
.Where(parts => parts.Length == 2 && parts[0].Equals("Content-Length", StringComparison.OrdinalIgnoreCase))
.Select(parts => int.Parse(parts[1].Trim(), System.Globalization.CultureInfo.InvariantCulture))
.Single();
var body = new byte[contentLength];
var offset = 0;
while (offset < body.Length)
{
var read = await stream.ReadAsync(body.AsMemory(offset, body.Length - offset), cancellationToken);
if (read == 0)
{
return null;
}
offset += read;
}
return JsonDocument.Parse(body);
}
private static async Task<int> ReadByteAsync(Stream stream, CancellationToken cancellationToken)
{
var buffer = new byte[1];
var read = await stream.ReadAsync(buffer, cancellationToken);
return read == 0 ? -1 : buffer[0];
}
}
}
#endif