-
-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathResourceObjectConverterTests.cs
578 lines (496 loc) · 18.9 KB
/
ResourceObjectConverterTests.cs
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
using System.Net;
using System.Text;
using System.Text.Json;
using FluentAssertions;
using JetBrains.Annotations;
using JsonApiDotNetCore.Configuration;
using JsonApiDotNetCore.Errors;
using JsonApiDotNetCore.Middleware;
using JsonApiDotNetCore.Resources;
using JsonApiDotNetCore.Resources.Annotations;
using JsonApiDotNetCore.Serialization.JsonConverters;
using JsonApiDotNetCore.Serialization.Objects;
using Microsoft.Extensions.Logging.Abstractions;
using TestBuildingBlocks;
using Xunit;
namespace JsonApiDotNetCoreTests.UnitTests.Serialization.Extensions;
public sealed class ResourceObjectConverterTests
{
private static readonly JsonApiMediaTypeExtension TypeInfoMediaTypeExtension = new("https://www.jsonapi.net/ext/type-info");
private static readonly JsonWriterOptions WriterOptions = new()
{
Indented = true
};
[Fact]
public void Permits_request_body_without_extension_usage()
{
// Arrange
TestContext testContext = TestContext.WithoutExtension;
const string requestJson = """
{
"type": "derivedTypes",
"attributes": {
"baseValue": "baseAttribute",
"derivedValue": "derivedAttribute"
},
"relationships": {
"parent": {
"data": {
"type": "baseTypes",
"id": "1"
}
}
}
}
""";
var reader = new Utf8JsonReader(Encoding.UTF8.GetBytes(requestJson));
// Act
ResourceObject resourceObject = testContext.Converter.Read(ref reader, typeof(ResourceObject), testContext.SerializerReadOptions);
// Assert
resourceObject.Attributes.ShouldContainKey("baseValue").Should().Be("baseAttribute");
resourceObject.Attributes.ShouldContainKey("derivedValue").Should().Be("derivedAttribute");
resourceObject.Relationships.ShouldContainKey("parent").With(value =>
{
value.ShouldNotBeNull();
value.Data.SingleValue.ShouldNotBeNull();
value.Data.SingleValue.Type.Should().Be("baseTypes");
value.Data.SingleValue.Id.Should().Be("1");
});
}
[Fact]
public void Blocks_request_body_with_extension_in_attributes_when_extension_not_enabled()
{
// Arrange
TestContext testContext = TestContext.WithoutExtension;
const string requestJson = """
{
"type": "derivedTypes",
"attributes": {
"type-info:fail": false,
"baseValue": "baseAttribute",
"derivedValue": "derivedAttribute"
}
}
""";
// Act
Action action = () =>
{
var reader = new Utf8JsonReader(Encoding.UTF8.GetBytes(requestJson));
_ = testContext.Converter.Read(ref reader, typeof(ResourceObject), testContext.SerializerReadOptions);
};
// Assert
action.Should().ThrowExactly<JsonException>().WithMessage("Unsupported usage of JSON:API extension 'type-info' in attributes.");
}
[Fact]
public void Blocks_request_body_with_extension_in_relationships_when_extension_not_enabled()
{
// Arrange
TestContext testContext = TestContext.WithoutExtension;
const string requestJson = """
{
"type": "derivedTypes",
"relationships": {
"type-info:fail": false,
"parent": {
"data": {
"type": "baseTypes",
"id": "1"
}
}
}
}
""";
// Act
Action action = () =>
{
var reader = new Utf8JsonReader(Encoding.UTF8.GetBytes(requestJson));
_ = testContext.Converter.Read(ref reader, typeof(ResourceObject), testContext.SerializerReadOptions);
};
// Assert
action.Should().ThrowExactly<JsonException>().WithMessage("Unsupported usage of JSON:API extension 'type-info' in relationships.");
}
[Fact]
public void Permits_request_body_with_extension_when_extension_enabled()
{
// Arrange
TestContext testContext = TestContext.WithExtension;
const string requestJson = """
{
"type": "derivedTypes",
"attributes": {
"type-info:fail": false,
"baseValue": "baseAttribute",
"derivedValue": "derivedAttribute"
},
"relationships": {
"type-info:fail": false,
"parent": {
"data": {
"type": "baseTypes",
"id": "1"
}
}
}
}
""";
var reader = new Utf8JsonReader(Encoding.UTF8.GetBytes(requestJson));
// Act
ResourceObject resourceObject = testContext.Converter.Read(ref reader, typeof(ResourceObject), testContext.SerializerReadOptions);
// Assert
resourceObject.Attributes.ShouldNotBeNull();
resourceObject.Relationships.ShouldNotBeNull();
}
[Fact]
public void Throws_for_request_body_with_extension_in_attributes_when_extension_enabled()
{
// Arrange
TestContext testContext = TestContext.WithExtension;
const string requestJson = """
{
"type": "derivedTypes",
"attributes": {
"type-info:fail": true,
"baseValue": "baseAttribute",
"derivedValue": "derivedAttribute"
}
}
""";
// Act
Action action = () =>
{
var reader = new Utf8JsonReader(Encoding.UTF8.GetBytes(requestJson));
_ = testContext.Converter.Read(ref reader, typeof(ResourceObject), testContext.SerializerReadOptions);
};
// Assert
JsonApiException? exception = action.Should().ThrowExactly<NotSupportedException>().WithInnerExceptionExactly<JsonApiException>().Which;
exception.StackTrace.Should().Contain(nameof(ExtensionAwareResourceObjectConverter));
exception.Errors.ShouldHaveCount(1);
ErrorObject error = exception.Errors[0];
error.StatusCode.Should().Be(HttpStatusCode.BadRequest);
error.Title.Should().Be("Failure requested from attributes.");
error.Source.ShouldNotBeNull();
error.Source.Pointer.Should().Be("attributes/type-info:fail");
}
[Fact]
public void Throws_for_request_body_with_extension_in_relationships_when_extension_enabled()
{
// Arrange
TestContext testContext = TestContext.WithExtension;
const string requestJson = """
{
"type": "derivedTypes",
"relationships": {
"type-info:fail": true,
"parent": {
"data": {
"type": "baseTypes",
"id": "1"
}
}
}
}
""";
// Act
Action action = () =>
{
var reader = new Utf8JsonReader(Encoding.UTF8.GetBytes(requestJson));
_ = testContext.Converter.Read(ref reader, typeof(ResourceObject), testContext.SerializerReadOptions);
};
// Assert
JsonApiException? exception = action.Should().ThrowExactly<NotSupportedException>().WithInnerExceptionExactly<JsonApiException>().Which;
exception.StackTrace.Should().Contain(nameof(ExtensionAwareResourceObjectConverter));
exception.Errors.ShouldHaveCount(1);
ErrorObject error = exception.Errors[0];
error.StatusCode.Should().Be(HttpStatusCode.BadRequest);
error.Title.Should().Be("Failure requested from relationships.");
error.Source.ShouldNotBeNull();
error.Source.Pointer.Should().Be("relationships/type-info:fail");
}
[Fact]
public void Hides_extension_in_response_body_when_extension_not_enabled()
{
// Arrange
TestContext testContext = TestContext.WithoutExtension;
var resourceObject = new ResourceObject
{
Type = "derivedTypes",
Id = "1",
Attributes = new Dictionary<string, object?>
{
["baseValue"] = "baseAttribute",
["derivedValue"] = "derivedAttribute"
},
Relationships = new Dictionary<string, RelationshipObject?>
{
["parent"] = new()
{
Data = new SingleOrManyData<ResourceIdentifierObject>(new ResourceIdentifierObject
{
Type = "baseTypes",
Id = "1"
})
}
}
};
using var stream = new MemoryStream();
using (var writer = new Utf8JsonWriter(stream, WriterOptions))
{
// Act
testContext.Converter.Write(writer, resourceObject, testContext.SerializerWriteOptions);
}
// Assert
string responseJson = Encoding.UTF8.GetString(stream.ToArray());
responseJson.Should().BeJson("""
{
"type": "derivedTypes",
"id": "1",
"attributes": {
"baseValue": "baseAttribute",
"derivedValue": "derivedAttribute"
},
"relationships": {
"parent": {
"data": {
"type": "baseTypes",
"id": "1"
}
}
}
}
""");
}
[Fact]
public void Hides_extension_in_response_body_when_extension_enabled_with_base_type()
{
// Arrange
TestContext testContext = TestContext.WithExtension;
var resourceObject = new ResourceObject
{
Type = "baseTypes",
Id = "1",
Attributes = new Dictionary<string, object?>
{
["baseValue"] = "baseAttribute"
},
Relationships = new Dictionary<string, RelationshipObject?>
{
["parent"] = new()
{
Data = new SingleOrManyData<ResourceIdentifierObject>(new ResourceIdentifierObject
{
Type = "baseTypes",
Id = "1"
})
}
}
};
using var stream = new MemoryStream();
using (var writer = new Utf8JsonWriter(stream, WriterOptions))
{
// Act
testContext.Converter.Write(writer, resourceObject, testContext.SerializerWriteOptions);
}
// Assert
string responseJson = Encoding.UTF8.GetString(stream.ToArray());
responseJson.Should().BeJson("""
{
"type": "baseTypes",
"id": "1",
"attributes": {
"baseValue": "baseAttribute"
},
"relationships": {
"parent": {
"data": {
"type": "baseTypes",
"id": "1"
}
}
}
}
""");
}
[Fact]
public void Writes_extension_in_response_body_when_extension_enabled_with_derived_type()
{
// Arrange
TestContext testContext = TestContext.WithExtension;
var resourceObject = new ResourceObject
{
Type = "derivedTypes",
Id = "1",
Attributes = new Dictionary<string, object?>
{
["baseValue"] = "baseAttribute",
["derivedValue"] = "derivedAttribute"
},
Relationships = new Dictionary<string, RelationshipObject?>
{
["parent"] = new()
{
Data = new SingleOrManyData<ResourceIdentifierObject>(new ResourceIdentifierObject
{
Type = "baseTypes",
Id = "1"
})
}
}
};
using var stream = new MemoryStream();
using (var writer = new Utf8JsonWriter(stream, WriterOptions))
{
// Act
testContext.Converter.Write(writer, resourceObject, testContext.SerializerWriteOptions);
}
// Assert
string responseJson = Encoding.UTF8.GetString(stream.ToArray());
responseJson.Should().BeJson("""
{
"type": "derivedTypes",
"id": "1",
"attributes": {
"type-info:baseType": "baseTypes",
"baseValue": "baseAttribute",
"derivedValue": "derivedAttribute"
},
"relationships": {
"type-info:baseType": "baseTypes",
"parent": {
"data": {
"type": "baseTypes",
"id": "1"
}
}
}
}
""");
}
private sealed class ExtensionAwareResourceObjectConverter : ResourceObjectConverter
{
private const string ExtensionNamespace = "type-info";
private const string ExtensionName = "fail";
private readonly IResourceGraph _resourceGraph;
private readonly JsonApiRequestAccessor _requestAccessor;
private bool IsTypeInfoExtensionEnabled => _requestAccessor.Request.Extensions.Contains(TypeInfoMediaTypeExtension);
public ExtensionAwareResourceObjectConverter(IResourceGraph resourceGraph, JsonApiRequestAccessor requestAccessor)
: base(resourceGraph)
{
ArgumentNullException.ThrowIfNull(resourceGraph);
ArgumentNullException.ThrowIfNull(requestAccessor);
_resourceGraph = resourceGraph;
_requestAccessor = requestAccessor;
}
private protected override void ValidateExtensionInAttributes(string extensionNamespace, string extensionName, ResourceType resourceType,
Utf8JsonReader reader)
{
if (extensionNamespace == ExtensionNamespace && IsTypeInfoExtensionEnabled && extensionName == ExtensionName)
{
if (reader.GetBoolean())
{
CapturedThrow(new JsonApiException(new ErrorObject(HttpStatusCode.BadRequest)
{
Title = "Failure requested from attributes.",
Source = new ErrorSource
{
Pointer = $"attributes/{ExtensionNamespace}:{ExtensionName}"
}
}));
}
return;
}
base.ValidateExtensionInAttributes(extensionNamespace, extensionName, resourceType, reader);
}
private protected override void ValidateExtensionInRelationships(string extensionNamespace, string extensionName, ResourceType resourceType,
Utf8JsonReader reader)
{
if (extensionNamespace == ExtensionNamespace && IsTypeInfoExtensionEnabled && extensionName == ExtensionName)
{
if (reader.GetBoolean())
{
CapturedThrow(new JsonApiException(new ErrorObject(HttpStatusCode.BadRequest)
{
Title = "Failure requested from relationships.",
Source = new ErrorSource
{
Pointer = $"relationships/{ExtensionNamespace}:{ExtensionName}"
}
}));
}
return;
}
base.ValidateExtensionInRelationships(extensionNamespace, extensionName, resourceType, reader);
}
private protected override void WriteExtensionInAttributes(Utf8JsonWriter writer, ResourceObject value)
{
WriteBaseType(writer, value);
}
private protected override void WriteExtensionInRelationships(Utf8JsonWriter writer, ResourceObject value)
{
WriteBaseType(writer, value);
}
private void WriteBaseType(Utf8JsonWriter writer, ResourceObject value)
{
if (IsTypeInfoExtensionEnabled && value.Type != null)
{
ResourceType? resourceType = _resourceGraph.FindResourceType(value.Type);
if (resourceType is { BaseType: not null })
{
writer.WriteString($"{ExtensionNamespace}:baseType", resourceType.BaseType.PublicName);
}
}
}
}
private sealed class JsonApiRequestAccessor
{
public IJsonApiRequest Request { get; }
public JsonApiRequestAccessor(IJsonApiRequest request)
{
ArgumentNullException.ThrowIfNull(request);
Request = request;
}
}
private sealed class TestContext
{
public static TestContext WithExtension { get; } = new(true);
public static TestContext WithoutExtension { get; } = new(false);
public ExtensionAwareResourceObjectConverter Converter { get; }
public JsonSerializerOptions SerializerReadOptions { get; }
public JsonSerializerOptions SerializerWriteOptions { get; }
private TestContext(bool includeExtension)
{
var options = new JsonApiOptions();
var request = new JsonApiRequest();
if (includeExtension)
{
request.Extensions = new HashSet<JsonApiMediaTypeExtension>([TypeInfoMediaTypeExtension]);
}
// @formatter:wrap_chained_method_calls chop_always
// @formatter:wrap_before_first_method_call true
IResourceGraph resourceGraph = new ResourceGraphBuilder(options, NullLoggerFactory.Instance)
.Add<BaseType, Guid>()
.Add<DerivedType, Guid>()
.Build();
// @formatter:wrap_before_first_method_call restore
// @formatter:wrap_chained_method_calls restore
var requestAccessor = new JsonApiRequestAccessor(request);
Converter = new ExtensionAwareResourceObjectConverter(resourceGraph, requestAccessor);
options.SerializerOptions.Converters.Add(Converter);
SerializerReadOptions = ((IJsonApiOptions)options).SerializerReadOptions;
SerializerWriteOptions = ((IJsonApiOptions)options).SerializerWriteOptions;
}
}
[UsedImplicitly(ImplicitUseTargetFlags.Members)]
private class BaseType : Identifiable<Guid>
{
[Attr]
public string? BaseValue { get; set; }
[HasOne]
public BaseType? Parent { get; set; }
}
[UsedImplicitly(ImplicitUseTargetFlags.Members)]
private sealed class DerivedType : BaseType
{
[Attr]
public string? DerivedValue { get; set; }
}
}