-
Notifications
You must be signed in to change notification settings - Fork 253
/
Copy pathOpenApiUrlTreeNodeTests.cs
503 lines (435 loc) · 18.6 KB
/
OpenApiUrlTreeNodeTests.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using Microsoft.OpenApi.Models;
using Microsoft.OpenApi.Services;
using VerifyXunit;
using Xunit;
namespace Microsoft.OpenApi.Tests.Services
{
public class OpenApiUrlTreeNodeTests
{
private OpenApiDocument OpenApiDocumentSample_1 => new()
{
Paths = new()
{
["/"] = new()
{
Operations = new Dictionary<OperationType, OpenApiOperation>
{
[OperationType.Get] = new(),
}
},
["/houses"] = new()
{
Operations = new Dictionary<OperationType, OpenApiOperation>
{
[OperationType.Get] = new(),
[OperationType.Post] = new()
}
},
["/cars"] = new()
{
Operations = new Dictionary<OperationType, OpenApiOperation>
{
[OperationType.Post] = new()
}
}
}
};
private OpenApiDocument OpenApiDocumentSample_2 => new()
{
Paths = new()
{
["/"] = new(),
["/hotels"] = new(),
["/offices"] = new()
}
};
[Fact]
public void CreateUrlSpaceWithoutOpenApiDocument()
{
var rootNode = OpenApiUrlTreeNode.Create();
Assert.NotNull(rootNode);
}
[Fact]
public void CreateSingleRootWorks()
{
var doc = new OpenApiDocument
{
Paths = new()
{
["/"] = new()
}
};
var label = "v1.0";
var rootNode = OpenApiUrlTreeNode.Create(doc, label);
Assert.NotNull(rootNode);
Assert.NotNull(rootNode.PathItems);
Assert.False(rootNode.HasOperations(label));
Assert.Empty(rootNode.Children);
}
[Fact]
public void CreatePathWithoutRootWorks()
{
var doc = new OpenApiDocument
{
Paths = new()
{
["/houses"] = new()
}
};
var label = "cabin";
var rootNode = OpenApiUrlTreeNode.Create(doc, label);
Assert.NotNull(rootNode);
Assert.NotNull(rootNode.PathItems);
Assert.Single(rootNode.Children);
Assert.Equal("houses", rootNode.Children["houses"].Segment);
Assert.NotNull(rootNode.Children["houses"].PathItems);
Assert.False(rootNode.Children["houses"].HasOperations("cabin"));
}
[Fact]
public void CreateMultiplePathsWorks()
{
var doc = OpenApiDocumentSample_1;
var label = "assets";
var rootNode = OpenApiUrlTreeNode.Create(doc, label);
Assert.NotNull(rootNode);
Assert.Equal(2, rootNode.Children.Count);
Assert.Equal("houses", rootNode.Children["houses"].Segment);
Assert.Equal("cars", rootNode.Children["cars"].Segment);
Assert.True(rootNode.PathItems.ContainsKey(label));
Assert.True(rootNode.Children["houses"].PathItems.ContainsKey(label));
Assert.True(rootNode.Children["cars"].PathItems.ContainsKey(label));
}
[Fact]
public void AttachDocumentWorks()
{
var doc1 = OpenApiDocumentSample_1;
var doc2 = OpenApiDocumentSample_2;
var label1 = "personal";
var label2 = "business";
var rootNode = OpenApiUrlTreeNode.Create(doc1, label1);
rootNode.Attach(doc2, label2);
Assert.NotNull(rootNode);
Assert.Equal(4, rootNode.Children.Count);
Assert.True(rootNode.Children["houses"].PathItems.ContainsKey(label1));
Assert.True(rootNode.Children["offices"].PathItems.ContainsKey(label2));
}
[Fact]
public void AttachPathWorks()
{
var doc = OpenApiDocumentSample_1;
var label1 = "personal";
var rootNode = OpenApiUrlTreeNode.Create(doc, label1);
var pathItem1 = new OpenApiPathItem
{
Operations = new Dictionary<OperationType, OpenApiOperation>
{
{
OperationType.Get, new OpenApiOperation
{
OperationId = "motorcycles.ListMotorcycle",
Responses = new()
{
{
"200", new()
{
Description = "Retrieved entities"
}
}
}
}
}
}
};
var path1 = "/motorcycles";
rootNode.Attach(path1, pathItem1, label1);
var pathItem2 = new OpenApiPathItem
{
Operations = new Dictionary<OperationType, OpenApiOperation>
{
{
OperationType.Get, new OpenApiOperation
{
OperationId = "computers.ListComputer",
Responses = new()
{
{
"200", new()
{
Description = "Retrieved entities"
}
}
}
}
}
}
};
var path2 = "/computers";
var label2 = "business";
rootNode.Attach(path2, pathItem2, label2);
Assert.Equal(4, rootNode.Children.Count);
Assert.True(rootNode.Children.ContainsKey(path1[1..]));
Assert.True(rootNode.Children.ContainsKey(path2[1..]));
Assert.True(rootNode.Children[path1[1..]].PathItems.ContainsKey(label1));
Assert.True(rootNode.Children[path2[1..]].PathItems.ContainsKey(label2));
}
[Fact]
public void CreatePathsWithMultipleSegmentsWorks()
{
var doc = new OpenApiDocument
{
Paths = new()
{
["/"] = new(),
["/houses/apartments/{apartment-id}"] = new(),
["/cars/coupes"] = new()
}
};
var label = "assets";
var rootNode = OpenApiUrlTreeNode.Create(doc, label);
Assert.NotNull(rootNode);
Assert.Equal(2, rootNode.Children.Count);
Assert.NotNull(rootNode.Children["houses"].Children["apartments"].Children["{apartment-id}"].PathItems);
Assert.True(rootNode.Children["houses"].Children["apartments"].Children["{apartment-id}"].PathItems.ContainsKey(label));
Assert.True(rootNode.Children["cars"].Children["coupes"].PathItems.ContainsKey(label));
Assert.True(rootNode.PathItems.ContainsKey(label));
Assert.Equal("coupes", rootNode.Children["cars"].Children["coupes"].Segment);
}
[Fact]
public void HasOperationsWorks()
{
var doc1 = new OpenApiDocument
{
Paths = new()
{
["/"] = new(),
["/houses"] = new(),
["/cars/{car-id}"] = new()
{
Operations = new Dictionary<OperationType, OpenApiOperation>
{
{
OperationType.Get, new OpenApiOperation
{
OperationId = "cars.GetCar",
Responses = new()
{
{
"200", new()
{
Description = "Retrieved entity"
}
}
}
}
}
}
}
}
};
var doc2 = new OpenApiDocument
{
Paths = new()
{
["/cars/{car-id}"] = new()
{
Operations = new Dictionary<OperationType, OpenApiOperation>
{
{
OperationType.Get, new OpenApiOperation
{
OperationId = "cars.GetCar",
Responses = new()
{
{
"200", new()
{
Description = "Retrieved entity"
}
}
}
}
},
{
OperationType.Put, new OpenApiOperation
{
OperationId = "cars.UpdateCar",
Responses = new()
{
{
"204", new()
{
Description = "Success."
}
}
}
}
}
}
}
}
};
var label1 = "personal";
var label2 = "business";
var rootNode = OpenApiUrlTreeNode.Create(doc1, label1);
rootNode.Attach(doc2, label2);
Assert.NotNull(rootNode);
Assert.Equal(2, rootNode.Children["cars"].Children["{car-id}"].PathItems.Count);
Assert.True(rootNode.Children["cars"].Children["{car-id}"].PathItems.ContainsKey(label1));
Assert.True(rootNode.Children["cars"].Children["{car-id}"].PathItems.ContainsKey(label2));
Assert.False(rootNode.Children["houses"].HasOperations(label1));
Assert.True(rootNode.Children["cars"].Children["{car-id}"].HasOperations(label1));
Assert.True(rootNode.Children["cars"].Children["{car-id}"].HasOperations(label2));
Assert.Single(rootNode.Children["cars"].Children["{car-id}"].PathItems[label1].Operations);
Assert.Equal(2, rootNode.Children["cars"].Children["{car-id}"].PathItems[label2].Operations.Count);
}
[Fact]
public void SegmentIsParameterWorks()
{
var doc = new OpenApiDocument
{
Paths = new()
{
["/"] = new(),
["/houses/apartments/{apartment-id}"] = new()
}
};
var label = "properties";
var rootNode = OpenApiUrlTreeNode.Create(doc, label);
Assert.NotNull(rootNode);
Assert.Single(rootNode.Children);
Assert.NotNull(rootNode.Children["houses"].Children["apartments"].Children["{apartment-id}"].PathItems);
Assert.True(rootNode.Children["houses"].Children["apartments"].Children["{apartment-id}"].IsParameter);
Assert.Equal("{apartment-id}", rootNode.Children["houses"].Children["apartments"].Children["{apartment-id}"].Segment);
}
[Fact]
public void AdditionalDataWorks()
{
var doc = OpenApiDocumentSample_1;
var label = "personal";
var rootNode = OpenApiUrlTreeNode.Create(doc, label);
var additionalData1 = new Dictionary<string, List<string>>
{
{"DatePurchased", new List<string> { "21st April 2021" } },
{"Location", new List<string> { "Seattle, WA" } },
{"TotalEstimateValue", new List<string> { "USD 2 Million" } },
{"Owner", new List<string> { "John Doe, Mr" } }
};
rootNode.AddAdditionalData(additionalData1);
var additionalData2 = new Dictionary<string, List<string>>
{
{"Bedrooms", new List<string> { "Five" } }
};
rootNode.Children["houses"].AddAdditionalData(additionalData2);
var additionalData3 = new Dictionary<string, List<string>>
{
{"Categories", new List<string> { "Coupe", "Sedan", "Convertible" } }
};
rootNode.Children["cars"].AddAdditionalData(additionalData3);
Assert.Equal(4, rootNode.AdditionalData.Count);
Assert.True(rootNode.AdditionalData.ContainsKey("DatePurchased"));
Assert.Collection(rootNode.AdditionalData["Location"],
item => Assert.Equal("Seattle, WA", item));
Assert.Collection(rootNode.Children["houses"].AdditionalData["Bedrooms"],
item => Assert.Equal("Five", item));
Assert.Collection(rootNode.Children["cars"].AdditionalData["Categories"],
item => Assert.Equal("Coupe", item),
item => Assert.Equal("Sedan", item),
item => Assert.Equal("Convertible", item));
}
[Fact]
public void ThrowsArgumentExceptionForDuplicateLabels()
{
var doc1 = OpenApiDocumentSample_1;
var doc2 = OpenApiDocumentSample_2;
var label1 = "personal";
var rootNode = OpenApiUrlTreeNode.Create(doc1, label1);
Assert.Throws<ArgumentException>(() => rootNode.Attach(doc2, label1));
}
[Fact]
public void ThrowsArgumentNullExceptionForNullOrEmptyArgumentsInCreateMethod()
{
var doc = OpenApiDocumentSample_1;
Assert.Throws<ArgumentNullException>(() => OpenApiUrlTreeNode.Create(doc, ""));
Assert.Throws<ArgumentNullException>(() => OpenApiUrlTreeNode.Create(doc, null));
Assert.Throws<ArgumentNullException>(() => OpenApiUrlTreeNode.Create(null, "beta"));
Assert.Throws<ArgumentNullException>(() => OpenApiUrlTreeNode.Create(null, null));
Assert.Throws<ArgumentNullException>(() => OpenApiUrlTreeNode.Create(null, ""));
}
[Fact]
public void ThrowsArgumentNullExceptionForNullOrEmptyArgumentsInAttachMethod()
{
var doc1 = OpenApiDocumentSample_1;
var doc2 = OpenApiDocumentSample_2;
var label1 = "personal";
var rootNode = OpenApiUrlTreeNode.Create(doc1, label1);
Assert.Throws<ArgumentNullException>(() => rootNode.Attach(doc2, ""));
Assert.Throws<ArgumentNullException>(() => rootNode.Attach(doc2, null));
Assert.Throws<ArgumentNullException>(() => rootNode.Attach(null, "beta"));
Assert.Throws<ArgumentNullException>(() => rootNode.Attach(null, null));
Assert.Throws<ArgumentNullException>(() => rootNode.Attach(null, ""));
}
[Fact]
public void ThrowsArgumentNullExceptionForNullOrEmptyArgumentInHasOperationsMethod()
{
var doc = OpenApiDocumentSample_1;
var label = "personal";
var rootNode = OpenApiUrlTreeNode.Create(doc, label);
Assert.Throws<ArgumentNullException>(() => rootNode.HasOperations(null));
Assert.Throws<ArgumentNullException>(() => rootNode.HasOperations(""));
}
[Fact]
public void ThrowsArgumentNullExceptionForNullArgumentInAddAdditionalDataMethod()
{
var doc = OpenApiDocumentSample_1;
var label = "personal";
var rootNode = OpenApiUrlTreeNode.Create(doc, label);
Assert.Throws<ArgumentNullException>(() => rootNode.AddAdditionalData(null));
}
[Fact]
public async Task VerifyDiagramFromSampleOpenAPIAsync()
{
var doc1 = OpenApiDocumentSample_1;
var label1 = "personal";
var rootNode = OpenApiUrlTreeNode.Create(doc1, label1);
var writer = new StringWriter();
rootNode.WriteMermaid(writer);
await writer.FlushAsync();
var diagram = writer.GetStringBuilder().ToString();
await Verifier.Verify(diagram);
}
public static TheoryData<string, string[], string, string> SupportsTrailingSlashesInPathData => new TheoryData<string, string[], string, string>
{
// Path, children up to second to leaf, last expected leaf node name, expected leaf node path
{ "/cars/{car-id}/build/", ["cars", "{car-id}"], @"build\", @"\cars\{car-id}\build\" },
{ "/cars/", [], @"cars\", @"\cars\" },
};
[Theory]
[MemberData(nameof(SupportsTrailingSlashesInPathData))]
public void SupportsTrailingSlashesInPath(string path, string[] childrenBeforeLastNode, string expectedLeafNodeName, string expectedLeafNodePath)
{
var openApiDocument = new OpenApiDocument
{
Paths = new()
{
[path] = new()
}
};
var label = "trailing-slash";
var rootNode = OpenApiUrlTreeNode.Create(openApiDocument, label);
var secondToLeafNode = rootNode;
foreach (var childName in childrenBeforeLastNode)
{
secondToLeafNode = secondToLeafNode.Children[childName];
}
Assert.True(secondToLeafNode.Children.TryGetValue(expectedLeafNodeName, out var leafNode));
Assert.Equal(expectedLeafNodePath, leafNode.Path);
Assert.Empty(leafNode.Children);
}
}
}