-
Notifications
You must be signed in to change notification settings - Fork 264
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Operation BodyMediaType is not set correctly. #4208
Comments
from @archerzz Looks like it's a legacy problem. I search the codes, and we have two properties regarding media types in RequestBodyMediaType: It's determined by the request body parameter type
It's not used in MGC. In autorest.csharp, it's used by CmcRestClientBuilder and RestClientBuilder RequestMediaTypes: it's determined by scanning the operation, which I think is more accurate
It's not used in MGC either (probably MGC hasn't implement the various media type support?) In autoest.csharp: it's used by OperationMethodChainBuilder when setting the request Content-Type header: https://github.com/Azure/autorest.csharp/blob/a19bafb7ff7418930deb75b1df40ccbf55825228/src/AutoRest.CSharp/LowLevel/Output/OperationMethodChainBuilder.cs#L557 it's used by ConvenienceMethod when determine how to serialize the input body: https://github.com/Azure/autorest.csharp/blob/a19bafb7ff7418930deb75b1df40ccbf55825228/src/AutoRest.CSharp/LowLevel/Output/ConvenienceMethod.cs#L36 So that's why DPG is not impacted. It correctly consumes only RequestMediaTypes. All others are using RequestBodyMediaType. |
#4215 follow up to remove dupe |
@archerzz this fixed it partially, but for this operation, the RequestMediaTypes is null so we fail that check that looks for You can repro by running this test https://github.com/Azure/cadl-ranch/blob/main/packages/cadl-ranch-specs/http/payload/media-type/main.tsp#L32-L35 |
@m-nash That's another legacy issue. We always hard-code the response media type to json, see
I traced back to the original autorest.csharp emitter, and I think the hard-coded value has existed for quite a long time: https://github.com/Azure/autorest.csharp/blob/0fb10e0dec33253e9db8b7fae05d311abf9f76ed/src/TypeSpec.Extension/Emitter.Csharp/src/lib/operation.ts#L390
So, I think we need to remove not only I filed #4225 to track that. |
- replace hard-coded value for `BodyMediaType` - fix an bug in deducing media type from type, array should be `json` part of microsoft#4208 work around microsoft#4225
Fixes microsoft#3994 Contributes to microsoft#4208
Cadl-ranch test `media-type/string-body/getAsText` should not be blocked anymore, so we restore it part of microsoft#4208
…nation logic We're using `Operation.RequestMediaType` to help determine the result conversion statement, which is apparently wrong. This commit includes: - use `Operation.Responses.ContentTypes` to determine the result conversion statment for `string` return type - enable a previously disabled cadl ranch test `Payload/MediaType/getAsText` part of microsoft#4208
Update on Jan 9, 2025. Last time when we discussed about this issue, it's decided that we should come up with an overall solution on how we're going to deal with media types. Right now, there are duplicated properties and hard coded values. We need to:
That will generate substantial impact on our current codes both in MGC and |
…nation logic (#5550) We're using `Operation.RequestMediaType` to help determine the result conversion statement, which is apparently wrong. This commit includes: - use `Operation.Responses.ContentTypes` to determine the result conversion statment for `string` return type - enable a previously disabled cadl ranch test `Payload/MediaType/getAsText` part of #4208 Co-authored-by: Mingzhe Huang (from Dev Box) <[email protected]>
@archerzz do you have an idea of a timeline for when you will work on this? |
So in our latest update, this property and related logic have been removed: #6119 |
For this cadl ranch spec we can see that operation sendAsJson is marked with
application/json
yet the RequestBodyMediaType comes out asText
instead ofJson
.The text was updated successfully, but these errors were encountered: