Skip to content

Commit 4fb9775

Browse files
expobraindbanty
andauthored
fix: Parsing endpoint content types with semicolon separator (#727). Thanks @expobrain!
Co-authored-by: Dylan Anthony <[email protected]>
1 parent f79bccb commit 4fb9775

File tree

4 files changed

+36
-2
lines changed

4 files changed

+36
-2
lines changed

openapi_python_client/parser/openapi.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from .. import schema as oai
1212
from .. import utils
1313
from ..config import Config
14-
from ..utils import PythonIdentifier
14+
from ..utils import PythonIdentifier, get_content_type
1515
from .errors import GeneratorError, ParseError, PropertyError
1616
from .properties import (
1717
Class,
@@ -178,6 +178,8 @@ def parse_request_json_body(
178178
"""Return json_body"""
179179
json_body = None
180180
for content_type, schema in body.content.items():
181+
content_type = get_content_type(content_type)
182+
181183
if content_type == "application/json" or content_type.endswith("+json"):
182184
json_body = schema
183185
break

openapi_python_client/utils.py

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import builtins
22
import re
3+
from email.message import Message
34
from keyword import iskeyword
45
from typing import Any, List
56

@@ -94,3 +95,15 @@ def remove_string_escapes(value: str) -> str:
9495
- https://github.com/openapi-generators/openapi-python-client/security/advisories/GHSA-9x4c-63pf-525f
9596
"""
9697
return value.replace('"', r"\"")
98+
99+
100+
def get_content_type(content_type: str) -> str:
101+
"""
102+
Given a string representing a content type with optional parameters, returns the content type only
103+
"""
104+
message = Message()
105+
message.add_header("Content-Type", content_type)
106+
107+
content_type = message.get_content_type()
108+
109+
return content_type

tests/test_parser/test_openapi.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,13 @@ def test_parse_multipart_body_no_data(self):
247247
assert prop is None
248248

249249
@pytest.mark.parametrize(
250-
"content_type", ("application/json", "application/vnd.api+json", "application/yang-data+json")
250+
"content_type",
251+
(
252+
"application/json",
253+
"application/vnd.api+json",
254+
"application/yang-data+json",
255+
"application/json;charset=utf-8",
256+
),
251257
)
252258
def test_parse_request_json_body(self, mocker, content_type):
253259
from openapi_python_client.parser.openapi import Endpoint, Schemas

tests/test_utils.py

+13
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,16 @@ def test__fix_reserved_words(reserved_word: str, expected: str):
121121
)
122122
def test_pascalcase(before, after):
123123
assert utils.pascal_case(before) == after
124+
125+
126+
@pytest.mark.parametrize(
127+
"content_type, expected",
128+
[
129+
pytest.param("application/json", "application/json"),
130+
pytest.param("application/vnd.api+json", "application/vnd.api+json"),
131+
pytest.param("application/json;charset=utf-8", "application/json"),
132+
pytest.param("application/vnd.api+json;charset=utf-8", "application/vnd.api+json"),
133+
],
134+
)
135+
def test_get_content_type(content_type: str, expected: str) -> None:
136+
assert utils.get_content_type(content_type) == expected

0 commit comments

Comments
 (0)