Skip to content

Commit 651fddc

Browse files
committed
test: Add end2end test for multipart objects with arrays of files
1 parent f60deda commit 651fddc

24 files changed

+406
-52
lines changed

end_to_end_tests/baseline_openapi_3.0.json

+49
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,55 @@
450450
}
451451
}
452452
},
453+
"/tests/upload/multiple-files-in-object": {
454+
"post": {
455+
"tags": [
456+
"tests"
457+
],
458+
"summary": "Array of files in object",
459+
"description": "Upload an array of files as part of an object",
460+
"operationId": "upload_array_of_files_in_object_tests_upload_post",
461+
"parameters": [],
462+
"requestBody": {
463+
"content": {
464+
"multipart/form-data": {
465+
"schema": {
466+
"type" : "object",
467+
"files" : {
468+
"type" : "array",
469+
"items" : {
470+
"type" : "string",
471+
"description" : "attachments content",
472+
"format" : "binary"
473+
}
474+
}
475+
}
476+
}
477+
},
478+
"required": true
479+
},
480+
"responses": {
481+
"200": {
482+
"description": "Successful Response",
483+
"content": {
484+
"application/json": {
485+
"schema": {}
486+
}
487+
}
488+
},
489+
"422": {
490+
"description": "Validation Error",
491+
"content": {
492+
"application/json": {
493+
"schema": {
494+
"$ref": "#/components/schemas/HTTPValidationError"
495+
}
496+
}
497+
}
498+
}
499+
}
500+
}
501+
},
453502
"/tests/json_body": {
454503
"post": {
455504
"tags": [

end_to_end_tests/baseline_openapi_3.1.yaml

+49
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,55 @@ info:
446446
}
447447
}
448448
},
449+
"/tests/upload/multiple-files-in-object": {
450+
"post": {
451+
"tags": [
452+
"tests"
453+
],
454+
"summary": "Array of files in object",
455+
"description": "Upload an array of files as part of an object",
456+
"operationId": "upload_array_of_files_in_object_tests_upload_post",
457+
"parameters": [ ],
458+
"requestBody": {
459+
"content": {
460+
"multipart/form-data": {
461+
"schema": {
462+
"type": "object",
463+
"files": {
464+
"type": "array",
465+
"items": {
466+
"type": "string",
467+
"description": "attachments content",
468+
"format": "binary"
469+
}
470+
}
471+
}
472+
}
473+
},
474+
"required": true
475+
},
476+
"responses": {
477+
"200": {
478+
"description": "Successful Response",
479+
"content": {
480+
"application/json": {
481+
"schema": { }
482+
}
483+
}
484+
},
485+
"422": {
486+
"description": "Validation Error",
487+
"content": {
488+
"application/json": {
489+
"schema": {
490+
"$ref": "#/components/schemas/HTTPValidationError"
491+
}
492+
}
493+
}
494+
}
495+
}
496+
}
497+
},
449498
"/tests/json_body": {
450499
"post": {
451500
"tags": [

end_to_end_tests/custom-templates-golden-record/my_test_api_client/api/tests/__init__.py

+8
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
test_inline_objects,
2121
token_with_cookie_auth_token_with_cookie_get,
2222
unsupported_content_tests_unsupported_content_get,
23+
upload_array_of_files_in_object_tests_upload_post,
2324
upload_file_tests_upload_post,
2425
upload_multiple_files_tests_upload_post,
2526
)
@@ -89,6 +90,13 @@ def upload_multiple_files_tests_upload_post(cls) -> types.ModuleType:
8990
"""
9091
return upload_multiple_files_tests_upload_post
9192

93+
@classmethod
94+
def upload_array_of_files_in_object_tests_upload_post(cls) -> types.ModuleType:
95+
"""
96+
Upload an array of files as part of an object
97+
"""
98+
return upload_array_of_files_in_object_tests_upload_post
99+
92100
@classmethod
93101
def json_body_tests_json_body_post(cls) -> types.ModuleType:
94102
"""
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,172 @@
1+
from http import HTTPStatus
2+
from typing import Any, Dict, Optional, Union
3+
4+
import httpx
5+
6+
from ... import errors
7+
from ...client import AuthenticatedClient, Client
8+
from ...models.http_validation_error import HTTPValidationError
9+
from ...models.upload_array_of_files_in_object_tests_upload_post_body import (
10+
UploadArrayOfFilesInObjectTestsUploadPostBody,
11+
)
12+
from ...types import Response
13+
14+
15+
def _get_kwargs(
16+
*,
17+
body: UploadArrayOfFilesInObjectTestsUploadPostBody,
18+
) -> Dict[str, Any]:
19+
headers: Dict[str, Any] = {}
20+
21+
_kwargs: Dict[str, Any] = {
22+
"method": "post",
23+
"url": "/tests/upload/multiple-files-in-object",
24+
}
25+
26+
_body = body.to_multipart()
27+
28+
_kwargs["files"] = _body
29+
30+
_kwargs["headers"] = headers
31+
return _kwargs
32+
33+
34+
def _parse_response(
35+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
36+
) -> Optional[Union[Any, HTTPValidationError]]:
37+
if response.status_code == HTTPStatus.OK:
38+
response_200 = response.json()
39+
return response_200
40+
if response.status_code == HTTPStatus.UNPROCESSABLE_ENTITY:
41+
response_422 = HTTPValidationError.from_dict(response.json())
42+
43+
return response_422
44+
if client.raise_on_unexpected_status:
45+
raise errors.UnexpectedStatus(response.status_code, response.content)
46+
else:
47+
return None
48+
49+
50+
def _build_response(
51+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
52+
) -> Response[Union[Any, HTTPValidationError]]:
53+
return Response(
54+
status_code=HTTPStatus(response.status_code),
55+
content=response.content,
56+
headers=response.headers,
57+
parsed=_parse_response(client=client, response=response),
58+
)
59+
60+
61+
def sync_detailed(
62+
*,
63+
client: Union[AuthenticatedClient, Client],
64+
body: UploadArrayOfFilesInObjectTestsUploadPostBody,
65+
) -> Response[Union[Any, HTTPValidationError]]:
66+
"""Array of files in object
67+
68+
Upload an array of files as part of an object
69+
70+
Args:
71+
body (UploadArrayOfFilesInObjectTestsUploadPostBody):
72+
73+
Raises:
74+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
75+
httpx.TimeoutException: If the request takes longer than Client.timeout.
76+
77+
Returns:
78+
Response[Union[Any, HTTPValidationError]]
79+
"""
80+
81+
kwargs = _get_kwargs(
82+
body=body,
83+
)
84+
85+
response = client.get_httpx_client().request(
86+
**kwargs,
87+
)
88+
89+
return _build_response(client=client, response=response)
90+
91+
92+
def sync(
93+
*,
94+
client: Union[AuthenticatedClient, Client],
95+
body: UploadArrayOfFilesInObjectTestsUploadPostBody,
96+
) -> Optional[Union[Any, HTTPValidationError]]:
97+
"""Array of files in object
98+
99+
Upload an array of files as part of an object
100+
101+
Args:
102+
body (UploadArrayOfFilesInObjectTestsUploadPostBody):
103+
104+
Raises:
105+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
106+
httpx.TimeoutException: If the request takes longer than Client.timeout.
107+
108+
Returns:
109+
Union[Any, HTTPValidationError]
110+
"""
111+
112+
return sync_detailed(
113+
client=client,
114+
body=body,
115+
).parsed
116+
117+
118+
async def asyncio_detailed(
119+
*,
120+
client: Union[AuthenticatedClient, Client],
121+
body: UploadArrayOfFilesInObjectTestsUploadPostBody,
122+
) -> Response[Union[Any, HTTPValidationError]]:
123+
"""Array of files in object
124+
125+
Upload an array of files as part of an object
126+
127+
Args:
128+
body (UploadArrayOfFilesInObjectTestsUploadPostBody):
129+
130+
Raises:
131+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
132+
httpx.TimeoutException: If the request takes longer than Client.timeout.
133+
134+
Returns:
135+
Response[Union[Any, HTTPValidationError]]
136+
"""
137+
138+
kwargs = _get_kwargs(
139+
body=body,
140+
)
141+
142+
response = await client.get_async_httpx_client().request(**kwargs)
143+
144+
return _build_response(client=client, response=response)
145+
146+
147+
async def asyncio(
148+
*,
149+
client: Union[AuthenticatedClient, Client],
150+
body: UploadArrayOfFilesInObjectTestsUploadPostBody,
151+
) -> Optional[Union[Any, HTTPValidationError]]:
152+
"""Array of files in object
153+
154+
Upload an array of files as part of an object
155+
156+
Args:
157+
body (UploadArrayOfFilesInObjectTestsUploadPostBody):
158+
159+
Raises:
160+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
161+
httpx.TimeoutException: If the request takes longer than Client.timeout.
162+
163+
Returns:
164+
Union[Any, HTTPValidationError]
165+
"""
166+
167+
return (
168+
await asyncio_detailed(
169+
client=client,
170+
body=body,
171+
)
172+
).parsed

end_to_end_tests/golden-record/my_test_api_client/models/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
)
7777
from .test_inline_objects_body import TestInlineObjectsBody
7878
from .test_inline_objects_response_200 import TestInlineObjectsResponse200
79+
from .upload_array_of_files_in_object_tests_upload_post_body import UploadArrayOfFilesInObjectTestsUploadPostBody
7980
from .validation_error import ValidationError
8081

8182
__all__ = (
@@ -145,5 +146,6 @@
145146
"PostResponsesUnionsSimpleBeforeComplexResponse200AType1",
146147
"TestInlineObjectsBody",
147148
"TestInlineObjectsResponse200",
149+
"UploadArrayOfFilesInObjectTestsUploadPostBody",
148150
"ValidationError",
149151
)

end_to_end_tests/golden-record/my_test_api_client/models/a_model.py

+1
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ def to_dict(self) -> Dict[str, Any]:
186186
not_required_nullable_model = self.not_required_nullable_model
187187

188188
field_dict: Dict[str, Any] = {}
189+
189190
field_dict.update(
190191
{
191192
"an_enum_value": an_enum_value,

0 commit comments

Comments
 (0)