-
Notifications
You must be signed in to change notification settings - Fork 252
/
Copy pathOpenApiSchemaTests.cs
667 lines (601 loc) · 21.9 KB
/
OpenApiSchemaTests.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
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
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Text.Json.Nodes;
using System.Threading.Tasks;
using FluentAssertions;
using Microsoft.OpenApi.Any;
using Microsoft.OpenApi.Extensions;
using Microsoft.OpenApi.Interfaces;
using Microsoft.OpenApi.Models;
using Microsoft.OpenApi.Models.Interfaces;
using Microsoft.OpenApi.Services;
using Microsoft.OpenApi.Writers;
using VerifyXunit;
using Xunit;
namespace Microsoft.OpenApi.Tests.Models
{
[Collection("DefaultSettings")]
public class OpenApiSchemaTests
{
private static readonly OpenApiSchema BasicSchema = new();
public static readonly OpenApiSchema AdvancedSchemaNumber = new()
{
Title = "title1",
MultipleOf = 3,
Maximum = 42,
ExclusiveMinimum = true,
Minimum = 10,
Default = 15,
Type = JsonSchemaType.Integer | JsonSchemaType.Null,
ExternalDocs = new()
{
Url = new("http://example.com/externalDocs")
},
Annotations = new Dictionary<string, object> { { "key1", "value1" }, { "key2", 2 } }
};
public static readonly OpenApiSchema AdvancedSchemaObject = new()
{
Title = "title1",
Properties = new Dictionary<string, IOpenApiSchema>
{
["property1"] = new OpenApiSchema()
{
Properties = new Dictionary<string, IOpenApiSchema>
{
["property2"] = new OpenApiSchema()
{
Type = JsonSchemaType.Integer
},
["property3"] = new OpenApiSchema()
{
Type = JsonSchemaType.String,
MaxLength = 15
}
},
},
["property4"] = new OpenApiSchema()
{
Properties = new Dictionary<string, IOpenApiSchema>
{
["property5"] = new OpenApiSchema()
{
Properties = new Dictionary<string, IOpenApiSchema>
{
["property6"] = new OpenApiSchema()
{
Type = JsonSchemaType.Boolean
}
}
},
["property7"] = new OpenApiSchema()
{
Type = JsonSchemaType.String,
MinLength = 2
}
},
},
},
Type = JsonSchemaType.Object | JsonSchemaType.Null,
ExternalDocs = new()
{
Url = new("http://example.com/externalDocs")
}
};
public static readonly OpenApiSchema AdvancedSchemaWithAllOf = new()
{
Title = "title1",
AllOf = new List<IOpenApiSchema>
{
new OpenApiSchema()
{
Title = "title2",
Properties = new Dictionary<string, IOpenApiSchema>
{
["property1"] = new OpenApiSchema()
{
Type = JsonSchemaType.Integer
},
["property2"] = new OpenApiSchema()
{
Type = JsonSchemaType.String,
MaxLength = 15
}
},
},
new OpenApiSchema()
{
Title = "title3",
Properties = new Dictionary<string, IOpenApiSchema>
{
["property3"] = new OpenApiSchema()
{
Properties = new Dictionary<string, IOpenApiSchema>
{
["property4"] = new OpenApiSchema()
{
Type = JsonSchemaType.Boolean
}
}
},
["property5"] = new OpenApiSchema()
{
Type = JsonSchemaType.String,
MinLength = 2
}
},
Type = JsonSchemaType.Object | JsonSchemaType.Null,
},
},
Type = JsonSchemaType.Object | JsonSchemaType.Null,
ExternalDocs = new()
{
Url = new("http://example.com/externalDocs")
}
};
public static readonly OpenApiSchema ReferencedSchema = new()
{
Title = "title1",
MultipleOf = 3,
Maximum = 42,
ExclusiveMinimum = true,
Minimum = 10,
Default = 15,
Type = JsonSchemaType.Integer | JsonSchemaType.Null,
ExternalDocs = new()
{
Url = new("http://example.com/externalDocs")
}
};
public static readonly OpenApiSchema AdvancedSchemaWithRequiredPropertiesObject = new()
{
Title = "title1",
Required = new HashSet<string> { "property1" },
Properties = new Dictionary<string, IOpenApiSchema>
{
["property1"] = new OpenApiSchema()
{
Required = new HashSet<string> { "property3" },
Properties = new Dictionary<string, IOpenApiSchema>
{
["property2"] = new OpenApiSchema()
{
Type = JsonSchemaType.Integer
},
["property3"] = new OpenApiSchema()
{
Type = JsonSchemaType.String,
MaxLength = 15,
ReadOnly = true
}
},
ReadOnly = true,
},
["property4"] = new OpenApiSchema()
{
Properties = new Dictionary<string, IOpenApiSchema>
{
["property5"] = new OpenApiSchema()
{
Properties = new Dictionary<string, IOpenApiSchema>
{
["property6"] = new OpenApiSchema()
{
Type = JsonSchemaType.Boolean
}
}
},
["property7"] = new OpenApiSchema()
{
Type = JsonSchemaType.String,
MinLength = 2
}
},
ReadOnly = true,
},
},
Type = JsonSchemaType.Object | JsonSchemaType.Null,
ExternalDocs = new()
{
Url = new("http://example.com/externalDocs")
}
};
[Fact]
public async Task SerializeBasicSchemaAsV3JsonWorks()
{
// Arrange
var expected = @"{ }";
// Act
var actual = await BasicSchema.SerializeAsJsonAsync(OpenApiSpecVersion.OpenApi3_0);
// Assert
actual = actual.MakeLineBreaksEnvironmentNeutral();
expected = expected.MakeLineBreaksEnvironmentNeutral();
Assert.Equal(expected, actual);
}
[Fact]
public async Task SerializeAdvancedSchemaNumberAsV3JsonWorks()
{
// Arrange
var expected =
"""
{
"title": "title1",
"multipleOf": 3,
"maximum": 42,
"minimum": 10,
"exclusiveMinimum": true,
"type": "integer",
"nullable": true,
"default": 15,
"externalDocs": {
"url": "http://example.com/externalDocs"
}
}
""";
// Act
var actual = await AdvancedSchemaNumber.SerializeAsJsonAsync(OpenApiSpecVersion.OpenApi3_0);
// Assert
Assert.True(JsonNode.DeepEquals(JsonNode.Parse(expected), JsonNode.Parse(actual)));
}
[Fact]
public async Task SerializeAdvancedSchemaObjectAsV3JsonWorks()
{
// Arrange
var expected =
"""
{
"title": "title1",
"type": "object",
"nullable": true,
"properties": {
"property1": {
"properties": {
"property2": {
"type": "integer"
},
"property3": {
"maxLength": 15,
"type": "string"
}
}
},
"property4": {
"properties": {
"property5": {
"properties": {
"property6": {
"type": "boolean"
}
}
},
"property7": {
"minLength": 2,
"type": "string"
}
}
}
},
"externalDocs": {
"url": "http://example.com/externalDocs"
}
}
""";
// Act
var actual = await AdvancedSchemaObject.SerializeAsJsonAsync(OpenApiSpecVersion.OpenApi3_0);
// Assert
Assert.True(JsonNode.DeepEquals(JsonNode.Parse(expected), JsonNode.Parse(actual)));
}
[Fact]
public async Task SerializeAdvancedSchemaWithAllOfAsV3JsonWorks()
{
// Arrange
var expected =
"""
{
"title": "title1",
"type": "object",
"nullable": true,
"allOf": [
{
"title": "title2",
"properties": {
"property1": {
"type": "integer"
},
"property2": {
"maxLength": 15,
"type": "string"
}
}
},
{
"title": "title3",
"type": "object",
"nullable": true,
"properties": {
"property3": {
"properties": {
"property4": {
"type": "boolean"
}
}
},
"property5": {
"minLength": 2,
"type": "string"
}
}
}
],
"externalDocs": {
"url": "http://example.com/externalDocs"
}
}
""";
// Act
var actual = await AdvancedSchemaWithAllOf.SerializeAsJsonAsync(OpenApiSpecVersion.OpenApi3_0);
// Assert
Assert.True(JsonObject.DeepEquals(JsonObject.Parse(expected), JsonObject.Parse(actual)));
}
[Theory]
[InlineData(true)]
[InlineData(false)]
public async Task SerializeReferencedSchemaAsV3WithoutReferenceJsonWorksAsync(bool produceTerseOutput)
{
// Arrange
var outputStringWriter = new StringWriter(CultureInfo.InvariantCulture);
var writer = new OpenApiJsonWriter(outputStringWriter, new() { Terse = produceTerseOutput });
// Act
ReferencedSchema.SerializeAsV3(writer);
await writer.FlushAsync();
// Assert
await Verifier.Verify(outputStringWriter).UseParameters(produceTerseOutput);
}
[Theory]
[InlineData(true)]
[InlineData(false)]
public async Task SerializeReferencedSchemaAsV3JsonWorksAsync(bool produceTerseOutput)
{
// Arrange
var outputStringWriter = new StringWriter(CultureInfo.InvariantCulture);
var writer = new OpenApiJsonWriter(outputStringWriter, new() { Terse = produceTerseOutput });
// Act
ReferencedSchema.SerializeAsV3(writer);
await writer.FlushAsync();
// Assert
await Verifier.Verify(outputStringWriter).UseParameters(produceTerseOutput);
}
[Theory]
[InlineData(true)]
[InlineData(false)]
public async Task SerializeSchemaWRequiredPropertiesAsV2JsonWorksAsync(bool produceTerseOutput)
{
// Arrange
var outputStringWriter = new StringWriter(CultureInfo.InvariantCulture);
var writer = new OpenApiJsonWriter(outputStringWriter, new() { Terse = produceTerseOutput });
// Act
AdvancedSchemaWithRequiredPropertiesObject.SerializeAsV2(writer);
await writer.FlushAsync();
// Assert
await Verifier.Verify(outputStringWriter).UseParameters(produceTerseOutput);
}
[Fact]
public async Task SerializeAsV2ShouldSetFormatPropertyInParentSchemaIfPresentInChildrenSchema()
{
// Arrange
var schema = new OpenApiSchema
{
OneOf = new List<IOpenApiSchema>
{
new OpenApiSchema()
{
Type = JsonSchemaType.Number,
Format = "decimal"
},
new OpenApiSchema() { Type = JsonSchemaType.String },
}
};
var outputStringWriter = new StringWriter(CultureInfo.InvariantCulture);
var openApiJsonWriter = new OpenApiJsonWriter(outputStringWriter, new() { Terse = false });
// Act
// Serialize as V2
schema.SerializeAsV2(openApiJsonWriter);
await openApiJsonWriter.FlushAsync();
var v2Schema = outputStringWriter.GetStringBuilder().ToString().MakeLineBreaksEnvironmentNeutral();
var expectedV2Schema =
"""
{
"format": "decimal",
"allOf": [
{
"type": "number",
"format": "decimal"
}
]
}
""".MakeLineBreaksEnvironmentNeutral();
// Assert
Assert.Equal(v2Schema, expectedV2Schema);
}
[Fact]
public void OpenApiSchemaCopyConstructorSucceeds()
{
var baseSchema = new OpenApiSchema
{
Type = JsonSchemaType.String,
Format = "date"
};
var actualSchema = baseSchema.CreateShallowCopy() as OpenApiSchema;
actualSchema.Type |= JsonSchemaType.Null;
Assert.Equal(JsonSchemaType.String, actualSchema.Type & JsonSchemaType.String);
Assert.Equal(JsonSchemaType.Null, actualSchema.Type & JsonSchemaType.Null);
Assert.Equal("date", actualSchema.Format);
}
[Fact]
public void OpenApiSchemaCopyConstructorWithAnnotationsSucceeds()
{
var baseSchema = new OpenApiSchema
{
Annotations = new Dictionary<string, object>
{
["key1"] = "value1",
["key2"] = 2
}
};
var actualSchema = baseSchema.CreateShallowCopy();
Assert.Equal(baseSchema.Annotations["key1"], actualSchema.Annotations["key1"]);
baseSchema.Annotations["key1"] = "value2";
Assert.NotEqual(baseSchema.Annotations["key1"], actualSchema.Annotations["key1"]);
}
public static TheoryData<JsonNode> SchemaExamples()
{
return new()
{
new JsonArray() { "example" },
new JsonArray { 0, 1, 2 }, // Represent OpenApiBinary as JsonArray of bytes
true,
JsonValue.Create((byte)42),
JsonValue.Create(new DateTime(2024, 07, 19, 12, 34, 56, DateTimeKind.Utc).ToString("o")), // DateTime object
42.37,
42.37f,
42,
null,
JsonValue.Create("secret"), //Represent OpenApiPassword as string
"example",
};
}
[Theory]
[MemberData(nameof(SchemaExamples))]
public void CloningSchemaExamplesWorks(JsonNode example)
{
// Arrange
var schema = new OpenApiSchema
{
Example = example
};
// Act && Assert
var schemaCopy = schema.CreateShallowCopy();
// Act && Assert
schema.Example.Should().BeEquivalentTo(schemaCopy.Example, options => options
.IgnoringCyclicReferences()
.Excluding(x => x.Options));
}
[Fact]
public void CloningSchemaExtensionsWorks()
{
// Arrange
var schema = new OpenApiSchema
{
Extensions =
{
{ "x-myextension", new OpenApiAny(42) }
}
};
// Act && Assert
var schemaCopy = schema.CreateShallowCopy() as OpenApiSchema;
Assert.Single(schemaCopy.Extensions);
// Act && Assert
schemaCopy.Extensions = new Dictionary<string, IOpenApiExtension>
{
{ "x-myextension" , new OpenApiAny(40) }
};
Assert.NotEqual(schema.Extensions, schemaCopy.Extensions);
}
[Fact]
public void OpenApiWalkerVisitsOpenApiSchemaNot()
{
var outerSchema = new OpenApiSchema()
{
Title = "Outer Schema",
Not = new OpenApiSchema()
{
Title = "Inner Schema",
Type = JsonSchemaType.String,
}
};
var document = new OpenApiDocument()
{
Paths = new OpenApiPaths()
{
["/foo"] = new OpenApiPathItem()
{
Parameters = new[]
{
new OpenApiParameter()
{
Name = "foo",
In = ParameterLocation.Query,
Schema = outerSchema,
}
}
}
}
};
// Act
var visitor = new SchemaVisitor();
var walker = new OpenApiWalker(visitor);
walker.Walk(document);
// Assert
Assert.Equal(2, visitor.Titles.Count);
}
[Fact]
public async Task SerializeSchemaWithUnrecognizedPropertiesWorks()
{
// Arrange
var schema = new OpenApiSchema
{
UnrecognizedKeywords = new Dictionary<string, JsonNode>()
{
["customKeyWord"] = "bar",
["anotherKeyword"] = 42
}
};
var expected = @"{
""unrecognizedKeywords"": {
""customKeyWord"": ""bar"",
""anotherKeyword"": 42
}
}";
// Act
var actual = await schema.SerializeAsJsonAsync(OpenApiSpecVersion.OpenApi3_1);
// Assert
Assert.Equal(expected.MakeLineBreaksEnvironmentNeutral(), actual.MakeLineBreaksEnvironmentNeutral());
}
[Fact]
public async Task WriteAsItemsPropertiesDoesNotWriteNull()
{
// Arrange
var schema = new OpenApiSchema
{
Type = JsonSchemaType.Number | JsonSchemaType.Null
};
var outputStringWriter = new StringWriter(CultureInfo.InvariantCulture);
var writer = new OpenApiJsonWriter(outputStringWriter, new() { Terse = false });
writer.WriteStartObject();
// Act
schema.WriteAsItemsProperties(writer);
writer.WriteEndObject();
await writer.FlushAsync();
// Assert
var actual = outputStringWriter.GetStringBuilder().ToString();
var expected =
"""
{
"type": "number"
}
""";
Assert.True(JsonNode.DeepEquals(JsonNode.Parse(expected), JsonNode.Parse(actual)));
}
internal class SchemaVisitor : OpenApiVisitorBase
{
public List<string> Titles = new();
public override void Visit(IOpenApiSchema schema)
{
Titles.Add(schema.Title);
}
}
}
}