-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathForwardCompatibilityTests.cs
More file actions
308 lines (264 loc) · 9.59 KB
/
ForwardCompatibilityTests.cs
File metadata and controls
308 lines (264 loc) · 9.59 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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------------------------------------------*/
using System.Text.Json;
using System.Text.Json.Serialization;
using Xunit;
namespace GitHub.Copilot.Test.Unit;
/// <summary>
/// Tests for forward-compatible handling of unknown session event types.
/// Verifies that the SDK gracefully handles event types introduced by newer CLI versions.
/// </summary>
public class ForwardCompatibilityTests
{
[Fact]
public void FromJson_KnownEventType_DeserializesNormally()
{
var json = """
{
"id": "00000000-0000-0000-0000-000000000001",
"timestamp": "2026-01-01T00:00:00Z",
"parentId": null,
"agentId": "agent-1",
"type": "user.message",
"data": {
"content": "Hello"
}
}
""";
var result = SessionEvent.FromJson(json);
Assert.IsType<UserMessageEvent>(result);
Assert.Equal("user.message", result.Type);
Assert.Equal("agent-1", result.AgentId);
}
[Fact]
public void FromJson_UnknownEventType_ReturnsBaseSessionEvent()
{
var json = """
{
"id": "12345678-1234-1234-1234-123456789abc",
"timestamp": "2026-06-15T10:30:00Z",
"parentId": "abcdefab-abcd-abcd-abcd-abcdefabcdef",
"agentId": "future-agent",
"type": "future.feature_from_server",
"data": { "key": "value" }
}
""";
var result = SessionEvent.FromJson(json);
Assert.IsType<SessionEvent>(result);
Assert.Equal("unknown", result.Type);
Assert.Equal("future-agent", result.AgentId);
}
[Fact]
public void FromJson_UnknownEventType_PreservesBaseMetadata()
{
var json = """
{
"id": "12345678-1234-1234-1234-123456789abc",
"timestamp": "2026-06-15T10:30:00Z",
"parentId": "abcdefab-abcd-abcd-abcd-abcdefabcdef",
"type": "future.feature_from_server",
"data": {}
}
""";
var result = SessionEvent.FromJson(json);
Assert.Equal(Guid.Parse("12345678-1234-1234-1234-123456789abc"), result.Id);
Assert.Equal(DateTimeOffset.Parse("2026-06-15T10:30:00Z"), result.Timestamp);
Assert.Equal(Guid.Parse("abcdefab-abcd-abcd-abcd-abcdefabcdef"), result.ParentId);
}
[Fact]
public void FromJson_MultipleEvents_MixedKnownAndUnknown()
{
var events = new[]
{
"""{"id":"00000000-0000-0000-0000-000000000001","timestamp":"2026-01-01T00:00:00Z","parentId":null,"type":"user.message","data":{"content":"Hi"}}""",
"""{"id":"00000000-0000-0000-0000-000000000002","timestamp":"2026-01-01T00:00:00Z","parentId":null,"type":"future.unknown_type","data":{}}""",
"""{"id":"00000000-0000-0000-0000-000000000003","timestamp":"2026-01-01T00:00:00Z","parentId":null,"type":"user.message","data":{"content":"Bye"}}""",
};
var results = events.Select(SessionEvent.FromJson).ToList();
Assert.Equal(3, results.Count);
Assert.IsType<UserMessageEvent>(results[0]);
Assert.IsType<SessionEvent>(results[1]);
Assert.IsType<UserMessageEvent>(results[2]);
}
[Fact]
public void FromJson_KnownEventType_WithExtraUnknownFields_IgnoresExtras()
{
// Forward-compat: when the runtime adds new fields to a known event,
// older SDK versions must ignore them and still successfully parse the event.
var json = """
{
"id": "00000000-0000-0000-0000-000000000001",
"timestamp": "2026-01-01T00:00:00Z",
"parentId": null,
"agentId": "agent-1",
"type": "user.message",
"futureEnvelopeField": {"someShape": [1,2,3]},
"data": {
"content": "Hello",
"futureDataField": "ignored",
"anotherFutureField": {"nested": true}
}
}
""";
var result = SessionEvent.FromJson(json);
var msg = Assert.IsType<UserMessageEvent>(result);
Assert.Equal("Hello", msg.Data.Content);
}
[Fact]
public void FromJson_KnownEventType_WithExtraUnknownEnvelopeFields_IgnoresExtras()
{
// Pure envelope-level extra field (no inner data extras).
var json = """
{
"id": "00000000-0000-0000-0000-000000000001",
"timestamp": "2026-01-01T00:00:00Z",
"parentId": null,
"agentId": "agent-1",
"type": "session.idle",
"newServerOnlyField": 42,
"data": {}
}
""";
var result = SessionEvent.FromJson(json);
Assert.IsType<SessionIdleEvent>(result);
Assert.Equal("agent-1", result.AgentId);
}
[Fact]
public void FromJson_UnknownEventType_WithUnknownEnumInData_DoesNotThrow()
{
// Unknown event types are mapped to base SessionEvent which does not parse data.
// So unknown enum values inside the data of an unknown event must not throw.
var json = """
{
"id": "00000000-0000-0000-0000-000000000001",
"timestamp": "2026-01-01T00:00:00Z",
"parentId": null,
"type": "future.event_with_enum",
"data": {
"futureMode": "future_value_not_in_sdk_enum"
}
}
""";
var result = SessionEvent.FromJson(json);
Assert.IsType<SessionEvent>(result);
Assert.Equal("unknown", result.Type);
}
[Fact]
public void FromJson_KnownEventType_WithUnknownEnumInData_PreservesValue()
{
var json = """
{
"id": "00000000-0000-0000-0000-000000000001",
"timestamp": "2026-01-01T00:00:00Z",
"parentId": null,
"type": "abort",
"data": {
"reason": "future_abort_reason"
}
}
""";
var result = SessionEvent.FromJson(json);
var abort = Assert.IsType<AbortEvent>(result);
Assert.Equal("future_abort_reason", abort.Data.Reason.Value);
}
[Fact]
public void FromJson_KnownEventType_WithNonStringEnumInData_ThrowsJsonException()
{
var json = """
{
"id": "00000000-0000-0000-0000-000000000001",
"timestamp": "2026-01-01T00:00:00Z",
"parentId": null,
"type": "abort",
"data": {
"reason": false
}
}
""";
var exception = Assert.Throws<JsonException>(() => SessionEvent.FromJson(json));
Assert.Contains("AbortReason", exception.Message);
}
[Fact]
public void RpcEnum_WithUnknownValue_PreservesValue()
{
var mode = JsonSerializer.Deserialize(
"""
"future_mode"
""",
ForwardCompatibilityJsonContext.Default.SessionMode);
Assert.Equal("future_mode", mode.Value);
Assert.Equal(
"""
"future_mode"
""",
JsonSerializer.Serialize(mode, ForwardCompatibilityJsonContext.Default.SessionMode));
}
[Fact]
public void RpcEnum_WithNonStringValue_ThrowsJsonException()
{
var exception = Assert.Throws<JsonException>(() => JsonSerializer.Deserialize(
"""
42
""",
ForwardCompatibilityJsonContext.Default.SessionMode));
Assert.Contains("SessionMode", exception.Message);
}
[Fact]
public void RpcEnum_DefaultValue_HasEmptyStringValue()
{
GitHub.Copilot.SessionMode mode = default;
Assert.Equal(string.Empty, mode.Value);
Assert.Equal(string.Empty, mode.ToString());
}
[Fact]
public void RpcEnum_DefaultValueSerialization_ThrowsJsonException()
{
GitHub.Copilot.SessionMode mode = default;
var exception = Assert.Throws<JsonException>(() => JsonSerializer.Serialize(
mode,
ForwardCompatibilityJsonContext.Default.SessionMode));
Assert.Contains("SessionMode", exception.Message);
}
[Fact]
public void FromJson_KnownEventType_WithNullOptionalFields_DoesNotThrow()
{
// The CLI may emit null for optional fields. Verify parsing doesn't throw.
var json = """
{
"id": "00000000-0000-0000-0000-000000000001",
"timestamp": "2026-01-01T00:00:00Z",
"parentId": null,
"agentId": null,
"type": "user.message",
"data": {
"content": "Hello"
}
}
""";
var result = SessionEvent.FromJson(json);
var msg = Assert.IsType<UserMessageEvent>(result);
Assert.Null(msg.AgentId);
Assert.Null(msg.ParentId);
Assert.Equal("Hello", msg.Data.Content);
}
[Fact]
public void FromJson_UnknownEventType_PreservesAgentIdNull()
{
// Some events legitimately have no agent id. Verify it round-trips as null.
var json = """
{
"id": "00000000-0000-0000-0000-000000000001",
"timestamp": "2026-01-01T00:00:00Z",
"parentId": null,
"type": "future.something",
"data": {}
}
""";
var result = SessionEvent.FromJson(json);
Assert.Equal("unknown", result.Type);
Assert.Null(result.AgentId);
}
}
[JsonSerializable(typeof(GitHub.Copilot.SessionMode))]
internal partial class ForwardCompatibilityJsonContext : JsonSerializerContext;