-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathJsonRpcRequestConverterTests.cs
More file actions
637 lines (540 loc) · 18.1 KB
/
JsonRpcRequestConverterTests.cs
File metadata and controls
637 lines (540 loc) · 18.1 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
using A2A.AspNetCore;
using System.Text.Json;
namespace A2A.UnitTests.JsonRpc;
public class JsonRpcRequestConverterTests
{
private readonly JsonSerializerOptions _options;
public JsonRpcRequestConverterTests()
{
_options = new JsonSerializerOptions();
_options.Converters.Add(new JsonRpcRequestConverter());
}
#region Successful Deserialization Tests
[Fact]
public void Read_ValidJsonRpcRequest_WithAllFields_ReturnsRequest()
{
// Arrange
var json = """
{
"jsonrpc": "2.0",
"id": "test-id",
"method": "message/send",
"params": {
"message": {
"messageId": "msg-1",
"role": "user",
"parts": []
}
}
}
""";
// Act
var result = JsonSerializer.Deserialize<JsonRpcRequest>(json, _options);
// Assert
Assert.NotNull(result);
Assert.Equal("2.0", result.JsonRpc);
Assert.True(result.Id.IsString);
Assert.Equal("test-id", result.Id.AsString());
Assert.Equal("message/send", result.Method);
Assert.True(result.Params.HasValue);
Assert.True(result.Params.Value.TryGetProperty("message", out _));
}
[Fact]
public void Read_ValidJsonRpcRequest_WithoutParams_ReturnsRequest()
{
// Arrange
var json = """
{
"jsonrpc": "2.0",
"id": "test-id",
"method": "tasks/get"
}
""";
// Act
var result = JsonSerializer.Deserialize<JsonRpcRequest>(json, _options);
// Assert
Assert.NotNull(result);
Assert.Equal("2.0", result.JsonRpc);
Assert.True(result.Id.IsString);
Assert.Equal("test-id", result.Id.AsString());
Assert.Equal("tasks/get", result.Method);
Assert.False(result.Params.HasValue);
}
[Fact]
public void Read_ValidJsonRpcRequest_WithoutId_ReturnsRequest()
{
// Arrange
var json = """
{
"jsonrpc": "2.0",
"method": "message/send",
"params": {}
}
""";
// Act
var result = JsonSerializer.Deserialize<JsonRpcRequest>(json, _options);
// Assert
Assert.NotNull(result);
Assert.Equal("2.0", result.JsonRpc);
Assert.False(result.Id.HasValue);
Assert.Equal("message/send", result.Method);
Assert.True(result.Params.HasValue);
}
[Theory]
[InlineData("\"string-id\"", "string-id", true, false)]
[InlineData("123", "123", false, true)]
[InlineData("null", null, false, false)]
public void Read_ValidIdTypes_ReturnsCorrectId(string idJson, string? expectedStringValue, bool shouldBeString, bool shouldBeNumber)
{
// Arrange
var json = $$"""
{
"jsonrpc": "2.0",
"id": {{idJson}},
"method": "tasks/get"
}
""";
// Act
var result = JsonSerializer.Deserialize<JsonRpcRequest>(json, _options);
// Assert
Assert.NotNull(result);
if (expectedStringValue == null)
{
Assert.False(result.Id.HasValue);
}
else if (shouldBeString)
{
Assert.True(result.Id.IsString);
Assert.Equal(expectedStringValue, result.Id.AsString());
}
else if (shouldBeNumber)
{
Assert.True(result.Id.IsNumber);
Assert.Equal(123L, result.Id.AsNumber());
}
}
[Theory]
[InlineData("message/send")]
[InlineData("message/stream")]
[InlineData("tasks/get")]
[InlineData("tasks/cancel")]
[InlineData("tasks/subscribe")]
[InlineData("tasks/pushNotificationConfig/set")]
[InlineData("tasks/pushNotificationConfig/get")]
public void Read_ValidMethods_ReturnsCorrectMethod(string method)
{
// Arrange
var json = $$"""
{
"jsonrpc": "2.0",
"id": "test-id",
"method": "{{method}}"
}
""";
// Act
var result = JsonSerializer.Deserialize<JsonRpcRequest>(json, _options);
// Assert
Assert.NotNull(result);
Assert.Equal(method, result.Method);
}
#endregion
#region Validation Error Tests
[Fact]
public void Read_MissingJsonRpcField_ThrowsA2AException()
{
// Arrange
var json = """
{
"id": "test-id",
"method": "tasks/get"
}
""";
// Act & Assert
var exception = Assert.Throws<A2AException>(() =>
JsonSerializer.Deserialize<JsonRpcRequest>(json, _options));
Assert.Equal(A2AErrorCode.InvalidRequest, exception.ErrorCode);
Assert.Contains("missing 'jsonrpc' field", exception.Message);
}
[Theory]
[InlineData("\"1.0\"")]
[InlineData("\"3.0\"")]
[InlineData("\"invalid\"")]
[InlineData("null")]
public void Read_InvalidJsonRpcVersion_ThrowsA2AException(string versionJson)
{
// Arrange
var json = $$"""
{
"jsonrpc": {{versionJson}},
"id": "test-id",
"method": "tasks/get"
}
""";
// Act & Assert
var exception = Assert.Throws<A2AException>(() =>
JsonSerializer.Deserialize<JsonRpcRequest>(json, _options));
Assert.Equal(A2AErrorCode.InvalidRequest, exception.ErrorCode);
Assert.Contains("'jsonrpc' field must be '2.0'", exception.Message);
}
[Fact]
public void Read_MissingMethodField_ThrowsA2AException()
{
// Arrange
var json = """
{
"jsonrpc": "2.0",
"id": "test-id"
}
""";
// Act & Assert
var exception = Assert.Throws<A2AException>(() =>
JsonSerializer.Deserialize<JsonRpcRequest>(json, _options));
Assert.Equal(A2AErrorCode.InvalidRequest, exception.ErrorCode);
Assert.Contains("missing 'method' field", exception.Message);
}
[Theory]
[InlineData("\"\"")]
[InlineData("null")]
public void Read_EmptyOrNullMethod_ThrowsA2AException(string methodJson)
{
// Arrange
var json = $$"""
{
"jsonrpc": "2.0",
"id": "test-id",
"method": {{methodJson}}
}
""";
// Act & Assert
var exception = Assert.Throws<A2AException>(() =>
JsonSerializer.Deserialize<JsonRpcRequest>(json, _options));
Assert.Equal(A2AErrorCode.InvalidRequest, exception.ErrorCode);
Assert.Contains("missing 'method' field", exception.Message);
}
[Theory]
[InlineData("\"invalid/method\"")]
[InlineData("\"unknown\"")]
[InlineData("\"message/invalid\"")]
public void Read_InvalidMethod_ThrowsA2AException(string methodJson)
{
// Arrange
var json = $$"""
{
"jsonrpc": "2.0",
"id": "test-id",
"method": {{methodJson}}
}
""";
// Act & Assert
var exception = Assert.Throws<A2AException>(() =>
JsonSerializer.Deserialize<JsonRpcRequest>(json, _options));
Assert.Equal(A2AErrorCode.MethodNotFound, exception.ErrorCode);
Assert.Contains("not a valid A2A method", exception.Message);
}
[Theory]
[InlineData("true")]
[InlineData("[]")]
[InlineData("42.1")]
public void Read_InvalidIdType_ThrowsA2AException(string idJson)
{
// Arrange
var json = $$"""
{
"jsonrpc": "2.0",
"id": {{idJson}},
"method": "tasks/get"
}
""";
// Act & Assert
var exception = Assert.Throws<A2AException>(() =>
JsonSerializer.Deserialize<JsonRpcRequest>(json, _options));
Assert.Equal(A2AErrorCode.InvalidRequest, exception.ErrorCode);
Assert.Contains("'id' field must be a string, non-fractional number, or null", exception.Message);
}
[Theory]
[InlineData("[]")]
[InlineData("\"string\"")]
[InlineData("123")]
[InlineData("true")]
public void Read_InvalidParamsType_ThrowsA2AException(string paramsJson)
{
// Arrange
var json = $$"""
{
"jsonrpc": "2.0",
"id": "test-id",
"method": "tasks/get",
"params": {{paramsJson}}
}
""";
// Act & Assert
var exception = Assert.Throws<A2AException>(() =>
JsonSerializer.Deserialize<JsonRpcRequest>(json, _options));
Assert.Equal(A2AErrorCode.InvalidParams, exception.ErrorCode);
Assert.Contains("'params' field must be an object", exception.Message);
}
#endregion
#region Error Context Tests
[Fact]
public void Read_ErrorWithRequestId_IncludesRequestIdInException()
{
// Arrange
var json = """
{
"jsonrpc": "1.0",
"id": "error-test-id",
"method": "tasks/get"
}
""";
// Act & Assert
var exception = Assert.Throws<A2AException>(() =>
JsonSerializer.Deserialize<JsonRpcRequest>(json, _options));
Assert.Equal("error-test-id", exception.GetRequestId());
}
[Fact]
public void Read_ErrorWithoutRequestId_HasNullRequestId()
{
// Arrange
var json = """
{
"jsonrpc": "1.0",
"method": "tasks/get"
}
""";
// Act & Assert
var exception = Assert.Throws<A2AException>(() =>
JsonSerializer.Deserialize<JsonRpcRequest>(json, _options));
Assert.Null(exception.GetRequestId());
}
#endregion
#region Serialization Tests
[Fact]
public void Write_ValidJsonRpcRequest_WithAllFields_WritesCorrectJson()
{
// Arrange
using var paramsDoc = JsonDocument.Parse("""{"key": "value"}""");
var request = new JsonRpcRequest
{
JsonRpc = "2.0",
Id = "test-id",
Method = "message/send",
Params = paramsDoc.RootElement
};
// Act
var json = JsonSerializer.Serialize(request, _options);
// Assert
using var doc = JsonDocument.Parse(json);
var root = doc.RootElement;
Assert.Equal("2.0", root.GetProperty("jsonrpc").GetString());
Assert.Equal("test-id", root.GetProperty("id").GetString());
Assert.Equal("message/send", root.GetProperty("method").GetString());
Assert.Equal("value", root.GetProperty("params").GetProperty("key").GetString());
}
[Fact]
public void Write_ValidJsonRpcRequest_WithoutParams_WritesCorrectJson()
{
// Arrange
var request = new JsonRpcRequest
{
JsonRpc = "2.0",
Id = "test-id",
Method = "tasks/get",
Params = null
};
// Act
var json = JsonSerializer.Serialize(request, _options);
// Assert
using var doc = JsonDocument.Parse(json);
var root = doc.RootElement;
Assert.Equal("2.0", root.GetProperty("jsonrpc").GetString());
Assert.Equal("test-id", root.GetProperty("id").GetString());
Assert.Equal("tasks/get", root.GetProperty("method").GetString());
Assert.False(root.TryGetProperty("params", out _));
}
[Fact]
public void Write_ValidJsonRpcRequest_WithNullId_WritesCorrectJson()
{
// Arrange
var request = new JsonRpcRequest
{
JsonRpc = "2.0",
Id = new JsonRpcId((string?)null),
Method = "tasks/get",
Params = null
};
// Act
var json = JsonSerializer.Serialize(request, _options);
// Assert
using var doc = JsonDocument.Parse(json);
var root = doc.RootElement;
Assert.Equal("2.0", root.GetProperty("jsonrpc").GetString());
Assert.Equal(JsonValueKind.Null, root.GetProperty("id").ValueKind);
Assert.Equal("tasks/get", root.GetProperty("method").GetString());
}
#endregion
#region Round-trip Tests
[Fact]
public void RoundTrip_ValidJsonRpcRequest_PreservesAllData()
{
// Arrange
using var paramsDoc = JsonDocument.Parse("""
{
"message": {
"messageId": "msg-1",
"role": "user",
"parts": []
}
}
""");
var original = new JsonRpcRequest
{
JsonRpc = "2.0",
Id = "round-trip-test",
Method = "message/send",
Params = paramsDoc.RootElement
};
// Act
var json = JsonSerializer.Serialize(original, _options);
var deserialized = JsonSerializer.Deserialize<JsonRpcRequest>(json, _options);
// Assert
Assert.NotNull(deserialized);
Assert.Equal(original.JsonRpc, deserialized.JsonRpc);
Assert.Equal(original.Id, deserialized.Id);
Assert.Equal(original.Method, deserialized.Method);
Assert.True(deserialized.Params.HasValue);
Assert.Equal("msg-1", deserialized.Params.Value.GetProperty("message").GetProperty("messageId").GetString());
}
[Theory]
[InlineData("message/send")]
[InlineData("message/stream")]
[InlineData("tasks/get")]
[InlineData("tasks/cancel")]
[InlineData("tasks/subscribe")]
[InlineData("tasks/pushNotificationConfig/set")]
[InlineData("tasks/pushNotificationConfig/get")]
public void RoundTrip_AllValidMethods_PreservesMethod(string method)
{
// Arrange
var original = new JsonRpcRequest
{
JsonRpc = "2.0",
Id = "method-test",
Method = method,
Params = null
};
// Act
var json = JsonSerializer.Serialize(original, _options);
var deserialized = JsonSerializer.Deserialize<JsonRpcRequest>(json, _options);
// Assert
Assert.NotNull(deserialized);
Assert.Equal(method, deserialized.Method);
}
#endregion
#region Edge Case Tests
[Fact]
public void Read_ValidParamsNull_ReturnsRequestWithoutParams()
{
// Arrange
var json = """
{
"jsonrpc": "2.0",
"id": "test-id",
"method": "tasks/get",
"params": null
}
""";
// Act
var result = JsonSerializer.Deserialize<JsonRpcRequest>(json, _options);
// Assert
Assert.NotNull(result);
Assert.False(result.Params.HasValue);
}
[Fact]
public void Read_EmptyParamsObject_ReturnsRequestWithEmptyParams()
{
// Arrange
var json = """
{
"jsonrpc": "2.0",
"id": "test-id",
"method": "tasks/get",
"params": {}
}
""";
// Act
var result = JsonSerializer.Deserialize<JsonRpcRequest>(json, _options);
// Assert
Assert.NotNull(result);
Assert.True(result.Params.HasValue);
Assert.Equal(JsonValueKind.Object, result.Params.Value.ValueKind);
}
#endregion
#region ID Type Preservation Tests
[Fact]
public void RoundTrip_NumericId_PreservesNumericType()
{
// Arrange
var originalJson = """
{
"jsonrpc": "2.0",
"id": 123,
"method": "tasks/get"
}
""";
// Act - deserialize and serialize back
var request = JsonSerializer.Deserialize<JsonRpcRequest>(originalJson, _options);
var serializedJson = JsonSerializer.Serialize(request, _options);
// Assert - check the request
Assert.NotNull(request);
Assert.True(request.Id.IsNumber);
Assert.Equal(123L, request.Id.AsNumber());
Assert.False(request.Id.IsString);
// Assert - check the serialized JSON maintains numeric type
using var doc = JsonDocument.Parse(serializedJson);
var idElement = doc.RootElement.GetProperty("id");
Assert.Equal(JsonValueKind.Number, idElement.ValueKind);
Assert.Equal(123, idElement.GetInt32());
// Act - test response creation maintains type
var response = JsonRpcResponse.CreateJsonRpcResponse(request.Id, "test result");
var responseJson = JsonSerializer.Serialize(response, A2AJsonUtilities.DefaultOptions);
// Assert - response maintains numeric type
using var responseDoc = JsonDocument.Parse(responseJson);
var responseIdElement = responseDoc.RootElement.GetProperty("id");
Assert.Equal(JsonValueKind.Number, responseIdElement.ValueKind);
Assert.Equal(123, responseIdElement.GetInt32());
}
[Fact]
public void RoundTrip_StringId_PreservesStringType()
{
// Arrange
var originalJson = """
{
"jsonrpc": "2.0",
"id": "test-string-id",
"method": "tasks/get"
}
""";
// Act - deserialize and serialize back
var request = JsonSerializer.Deserialize<JsonRpcRequest>(originalJson, _options);
var serializedJson = JsonSerializer.Serialize(request, _options);
// Assert - check the request
Assert.NotNull(request);
Assert.True(request.Id.IsString);
Assert.Equal("test-string-id", request.Id.AsString());
Assert.False(request.Id.IsNumber);
// Assert - check the serialized JSON maintains string type
using var doc = JsonDocument.Parse(serializedJson);
var idElement = doc.RootElement.GetProperty("id");
Assert.Equal(JsonValueKind.String, idElement.ValueKind);
Assert.Equal("test-string-id", idElement.GetString());
// Act - test response creation maintains type
var response = JsonRpcResponse.CreateJsonRpcResponse(request.Id, "test result");
var responseJson = JsonSerializer.Serialize(response, A2AJsonUtilities.DefaultOptions);
// Assert - response maintains string type
using var responseDoc = JsonDocument.Parse(responseJson);
var responseIdElement = responseDoc.RootElement.GetProperty("id");
Assert.Equal(JsonValueKind.String, responseIdElement.ValueKind);
Assert.Equal("test-string-id", responseIdElement.GetString());
}
#endregion
}