mirror of
https://github.com/zulip/zulip.git
synced 2025-11-07 07:23:22 +00:00
test_classes: Default client_post to application/x-www-form-urlencoded.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Anders Kaseorg
parent
d9f2f23c6a
commit
a356ec7011
@@ -532,12 +532,28 @@ Output:
|
|||||||
secure: bool = False,
|
secure: bool = False,
|
||||||
headers: Optional[Mapping[str, Any]] = None,
|
headers: Optional[Mapping[str, Any]] = None,
|
||||||
intentionally_undocumented: bool = False,
|
intentionally_undocumented: bool = False,
|
||||||
|
content_type: Optional[str] = None,
|
||||||
**extra: str,
|
**extra: str,
|
||||||
) -> "TestHttpResponse":
|
) -> "TestHttpResponse":
|
||||||
django_client = self.client # see WRAPPER_COMMENT
|
django_client = self.client # see WRAPPER_COMMENT
|
||||||
self.set_http_headers(extra, skip_user_agent)
|
self.set_http_headers(extra, skip_user_agent)
|
||||||
|
encoded = info
|
||||||
|
if content_type is None:
|
||||||
|
if isinstance(info, dict) and not any(
|
||||||
|
hasattr(value, "read") and callable(value.read) for value in info.values()
|
||||||
|
):
|
||||||
|
content_type = "application/x-www-form-urlencoded"
|
||||||
|
encoded = urlencode(info, doseq=True)
|
||||||
|
else:
|
||||||
|
content_type = MULTIPART_CONTENT
|
||||||
result = django_client.post(
|
result = django_client.post(
|
||||||
url, info, follow=follow, secure=secure, headers=headers, **extra
|
url,
|
||||||
|
encoded,
|
||||||
|
follow=follow,
|
||||||
|
secure=secure,
|
||||||
|
headers=headers,
|
||||||
|
content_type=content_type,
|
||||||
|
**extra,
|
||||||
)
|
)
|
||||||
self.validate_api_response_openapi(
|
self.validate_api_response_openapi(
|
||||||
url,
|
url,
|
||||||
|
|||||||
Reference in New Issue
Block a user