@@ -22,36 +22,49 @@ public sealed class LinkInclusionTests
2222 [ InlineData ( LinkTypes . NotConfigured , LinkTypes . None , LinkTypes . None ) ]
2323 [ InlineData ( LinkTypes . NotConfigured , LinkTypes . Self , LinkTypes . Self ) ]
2424 [ InlineData ( LinkTypes . NotConfigured , LinkTypes . Related , LinkTypes . Related ) ]
25+ [ InlineData ( LinkTypes . NotConfigured , LinkTypes . DescribedBy , LinkTypes . DescribedBy ) ]
2526 [ InlineData ( LinkTypes . NotConfigured , LinkTypes . Pagination , LinkTypes . Pagination ) ]
2627 [ InlineData ( LinkTypes . NotConfigured , LinkTypes . All , LinkTypes . All ) ]
2728 [ InlineData ( LinkTypes . None , LinkTypes . NotConfigured , LinkTypes . None ) ]
2829 [ InlineData ( LinkTypes . None , LinkTypes . None , LinkTypes . None ) ]
2930 [ InlineData ( LinkTypes . None , LinkTypes . Self , LinkTypes . None ) ]
3031 [ InlineData ( LinkTypes . None , LinkTypes . Related , LinkTypes . None ) ]
32+ [ InlineData ( LinkTypes . None , LinkTypes . DescribedBy , LinkTypes . None ) ]
3133 [ InlineData ( LinkTypes . None , LinkTypes . Pagination , LinkTypes . None ) ]
3234 [ InlineData ( LinkTypes . None , LinkTypes . All , LinkTypes . None ) ]
3335 [ InlineData ( LinkTypes . Self , LinkTypes . NotConfigured , LinkTypes . Self ) ]
3436 [ InlineData ( LinkTypes . Self , LinkTypes . None , LinkTypes . Self ) ]
3537 [ InlineData ( LinkTypes . Self , LinkTypes . Self , LinkTypes . Self ) ]
3638 [ InlineData ( LinkTypes . Self , LinkTypes . Related , LinkTypes . Self ) ]
39+ [ InlineData ( LinkTypes . Self , LinkTypes . DescribedBy , LinkTypes . Self ) ]
3740 [ InlineData ( LinkTypes . Self , LinkTypes . Pagination , LinkTypes . Self ) ]
3841 [ InlineData ( LinkTypes . Self , LinkTypes . All , LinkTypes . Self ) ]
3942 [ InlineData ( LinkTypes . Related , LinkTypes . NotConfigured , LinkTypes . Related ) ]
4043 [ InlineData ( LinkTypes . Related , LinkTypes . None , LinkTypes . Related ) ]
4144 [ InlineData ( LinkTypes . Related , LinkTypes . Self , LinkTypes . Related ) ]
4245 [ InlineData ( LinkTypes . Related , LinkTypes . Related , LinkTypes . Related ) ]
46+ [ InlineData ( LinkTypes . Related , LinkTypes . DescribedBy , LinkTypes . Related ) ]
4347 [ InlineData ( LinkTypes . Related , LinkTypes . Pagination , LinkTypes . Related ) ]
4448 [ InlineData ( LinkTypes . Related , LinkTypes . All , LinkTypes . Related ) ]
49+ [ InlineData ( LinkTypes . DescribedBy , LinkTypes . NotConfigured , LinkTypes . DescribedBy ) ]
50+ [ InlineData ( LinkTypes . DescribedBy , LinkTypes . None , LinkTypes . DescribedBy ) ]
51+ [ InlineData ( LinkTypes . DescribedBy , LinkTypes . Self , LinkTypes . DescribedBy ) ]
52+ [ InlineData ( LinkTypes . DescribedBy , LinkTypes . Related , LinkTypes . DescribedBy ) ]
53+ [ InlineData ( LinkTypes . DescribedBy , LinkTypes . DescribedBy , LinkTypes . DescribedBy ) ]
54+ [ InlineData ( LinkTypes . DescribedBy , LinkTypes . Pagination , LinkTypes . DescribedBy ) ]
55+ [ InlineData ( LinkTypes . DescribedBy , LinkTypes . All , LinkTypes . DescribedBy ) ]
4556 [ InlineData ( LinkTypes . Pagination , LinkTypes . NotConfigured , LinkTypes . Pagination ) ]
4657 [ InlineData ( LinkTypes . Pagination , LinkTypes . None , LinkTypes . Pagination ) ]
4758 [ InlineData ( LinkTypes . Pagination , LinkTypes . Self , LinkTypes . Pagination ) ]
4859 [ InlineData ( LinkTypes . Pagination , LinkTypes . Related , LinkTypes . Pagination ) ]
60+ [ InlineData ( LinkTypes . Pagination , LinkTypes . DescribedBy , LinkTypes . Pagination ) ]
4961 [ InlineData ( LinkTypes . Pagination , LinkTypes . Pagination , LinkTypes . Pagination ) ]
5062 [ InlineData ( LinkTypes . Pagination , LinkTypes . All , LinkTypes . Pagination ) ]
5163 [ InlineData ( LinkTypes . All , LinkTypes . NotConfigured , LinkTypes . All ) ]
5264 [ InlineData ( LinkTypes . All , LinkTypes . None , LinkTypes . All ) ]
5365 [ InlineData ( LinkTypes . All , LinkTypes . Self , LinkTypes . All ) ]
5466 [ InlineData ( LinkTypes . All , LinkTypes . Related , LinkTypes . All ) ]
67+ [ InlineData ( LinkTypes . All , LinkTypes . DescribedBy , LinkTypes . All ) ]
5568 [ InlineData ( LinkTypes . All , LinkTypes . Pagination , LinkTypes . All ) ]
5669 [ InlineData ( LinkTypes . All , LinkTypes . All , LinkTypes . All ) ]
5770 public void Applies_cascading_settings_for_top_level_links ( LinkTypes linksInResourceType , LinkTypes linksInOptions , LinkTypes expected )
@@ -88,7 +101,7 @@ public void Applies_cascading_settings_for_top_level_links(LinkTypes linksInReso
88101 var linkGenerator = new FakeLinkGenerator ( ) ;
89102 var controllerResourceMapping = new FakeControllerResourceMapping ( ) ;
90103 var paginationParser = new PaginationParser ( ) ;
91- var documentDescriptionLinkProvider = new NoDocumentDescriptionLinkProvider ( ) ;
104+ var documentDescriptionLinkProvider = new NonEmptyDocumentDescriptionLinkProvider ( ) ;
92105
93106 var linkBuilder = new LinkBuilder ( options , request , paginationContext , httpContextAccessor , linkGenerator , controllerResourceMapping , paginationParser ,
94107 documentDescriptionLinkProvider ) ;
@@ -435,4 +448,12 @@ public override string GetUriByAddress<TAddress>(TAddress address, RouteValueDic
435448 throw new NotImplementedException ( ) ;
436449 }
437450 }
451+
452+ private sealed class NonEmptyDocumentDescriptionLinkProvider : IDocumentDescriptionLinkProvider
453+ {
454+ public string GetUrl ( )
455+ {
456+ return "openapi.yaml" ;
457+ }
458+ }
438459}
0 commit comments