Skip to content
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

Closed
m-nash opened this issue Aug 19, 2024 · 7 comments
Closed

Operation BodyMediaType is not set correctly. #4208

m-nash opened this issue Aug 19, 2024 · 7 comments
Assignees
Labels
emitter:client:csharp Issue for the C# client emitter: @typespec/http-client-csharp

Comments

@m-nash
Copy link
Member

m-nash commented Aug 19, 2024

For this cadl ranch spec we can see that operation sendAsJson is marked with application/json yet the RequestBodyMediaType comes out as Text instead of Json.

@m-nash m-nash added the emitter:client:csharp Issue for the C# client emitter: @typespec/http-client-csharp label Aug 19, 2024
@m-nash
Copy link
Member Author

m-nash commented Aug 20, 2024

from @archerzz

Looks like it's a legacy problem. I search the codes, and we have two properties regarding media types in
InputOperation
:

RequestBodyMediaType: It's determined by the request body parameter type

RequestBodyMediaType: getBodyMediaType(method.operation.bodyParam?.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
RequestMediaTypes: getRequestMediaTypes(method.operation),

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.

@m-nash
Copy link
Member Author

m-nash commented Aug 20, 2024

#4215 follow up to remove dupe

@m-nash m-nash self-assigned this Aug 20, 2024
@m-nash
Copy link
Member Author

m-nash commented Aug 20, 2024

@archerzz this fixed it partially, but for this operation, the RequestMediaTypes is null so we fail that check that looks for text/plain.

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

@archerzz
Copy link
Member

archerzz commented Aug 21, 2024

@archerzz this fixed it partially, but for this operation, the RequestMediaTypes is null so we fail that check that looks for text/plain.

You can repro by running this test Azure/cadl-ranch@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 InputOperation.RequestBodyMediaType, but the BodyMediaType enum and corresponding reference as well.


I filed #4225 to track that.

github-merge-queue bot pushed a commit that referenced this issue Aug 21, 2024
archerzz pushed a commit to archerzz/typespec that referenced this issue Aug 21, 2024
- 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
sarangan12 pushed a commit to sarangan12/typespec that referenced this issue Sep 16, 2024
archerzz pushed a commit to archerzz/typespec that referenced this issue Jan 9, 2025
Cadl-ranch test `media-type/string-body/getAsText` should not be blocked anymore, so we restore it

part of microsoft#4208
archerzz pushed a commit to archerzz/typespec that referenced this issue Jan 9, 2025
…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
@archerzz
Copy link
Member

archerzz commented Jan 9, 2025

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:

  1. Clean up duplicated properties
  2. Remove hard coded values
  3. Figure out an extensible way to support various media types

That will generate substantial impact on our current codes both in MGC and autorest.csharp.

github-merge-queue bot pushed a commit that referenced this issue Jan 9, 2025
…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]>
@JoshLove-msft
Copy link
Contributor

@archerzz do you have an idea of a timeline for when you will work on this?

@ArcturusZhang
Copy link
Member

So in our latest update, this property and related logic have been removed: #6119
Therefore I think this should have been fixed.
Closing this issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
emitter:client:csharp Issue for the C# client emitter: @typespec/http-client-csharp
Projects
None yet
Development

No branches or pull requests

4 participants