Skip to content

Commit 9df51a4

Browse files
committed
Don't throw exception for parameters with custom binding source (#59035)
* Don't through exception for parameters with custom binding source * Default to ParameterLocation.Query for ambiguous source
1 parent 4122326 commit 9df51a4

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

src/OpenApi/src/Services/OpenApiDocumentService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ private async Task<OpenApiResponse> GetResponseAsync(
410410
"Query" => ParameterLocation.Query,
411411
"Header" => ParameterLocation.Header,
412412
"Path" => ParameterLocation.Path,
413-
_ => throw new InvalidOperationException($"Unsupported parameter source: {parameter.Source.Id}")
413+
_ => ParameterLocation.Query
414414
},
415415
Required = IsRequired(parameter),
416416
Schema = await _componentService.GetOrCreateSchemaAsync(GetTargetType(description, parameter), scopedServiceProvider, schemaTransformers, parameter, cancellationToken: cancellationToken),

src/OpenApi/test/Microsoft.AspNetCore.OpenApi.Tests/Services/OpenApiDocumentService/OpenApiDocumentServiceTests.Parameters.cs

+26
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using Microsoft.AspNetCore.Builder;
55
using Microsoft.AspNetCore.Http;
66
using Microsoft.AspNetCore.Mvc;
7+
using Microsoft.AspNetCore.Mvc.ModelBinding;
78
using Microsoft.OpenApi.Models;
89

910
public partial class OpenApiDocumentServiceTests : OpenApiDocumentServiceTestBase
@@ -190,4 +191,29 @@ await VerifyOpenApiDocument(builder, document =>
190191
Assert.Null(document.Paths["/api/content-type-lower"].Operations[OperationType.Get].Parameters);
191192
});
192193
}
194+
195+
[Fact]
196+
public async Task GetOpenApiParameters_ToleratesCustomBindingSource()
197+
{
198+
var action = CreateActionDescriptor(nameof(ActionWithCustomBinder));
199+
200+
await VerifyOpenApiDocument(action, document =>
201+
{
202+
var operation = document.Paths["/custom-binding"].Operations[OperationType.Get];
203+
var parameter = Assert.Single(operation.Parameters);
204+
Assert.Equal("model", parameter.Name);
205+
Assert.Equal(ParameterLocation.Query, parameter.In);
206+
});
207+
}
208+
209+
[Route("/custom-binding")]
210+
private void ActionWithCustomBinder([ModelBinder(BinderType = typeof(CustomBinder))] Todo model) { }
211+
212+
public class CustomBinder : IModelBinder
213+
{
214+
public Task BindModelAsync(ModelBindingContext bindingContext)
215+
{
216+
return Task.CompletedTask;
217+
}
218+
}
193219
}

0 commit comments

Comments
 (0)