Skip to content

Commit a481e48

Browse files
committed
fix httpx _to_serialized_response to support decoded responses
1 parent eb03f9e commit a481e48

File tree

1 file changed

+27
-19
lines changed

1 file changed

+27
-19
lines changed

vcr/stubs/httpx_stubs.py

+27-19
Original file line numberDiff line numberDiff line change
@@ -38,25 +38,33 @@ def _transform_headers(httpx_response):
3838

3939
async def _to_serialized_response(resp, aread):
4040
# The content shouldn't already have been read in by HTTPX.
41-
assert not hasattr(resp, "_decoder")
42-
43-
# Retrieve the content, but without decoding it.
44-
with patch.dict(resp.headers, {"Content-Encoding": ""}):
45-
if aread:
46-
await resp.aread()
47-
else:
48-
resp.read()
49-
50-
result = {
51-
"status": {"code": resp.status_code, "message": resp.reason_phrase},
52-
"headers": _transform_headers(resp),
53-
"body": {"string": resp.content},
54-
}
55-
56-
# As the content wasn't decoded, we restore the response to a state which
57-
# will be capable of decoding the content for the consumer.
58-
del resp._decoder
59-
resp._content = resp._get_content_decoder().decode(resp.content)
41+
# assert not hasattr(resp, "_decoder")
42+
if not hasattr(resp, "_decoder"):
43+
# Retrieve the content, but without decoding it.
44+
with patch.dict(resp.headers, {"Content-Encoding": ""}):
45+
if aread:
46+
await resp.aread()
47+
else:
48+
resp.read()
49+
50+
result = {
51+
"status": {"code": resp.status_code, "message": resp.reason_phrase},
52+
"headers": _transform_headers(resp),
53+
"body": {"string": resp.content},
54+
}
55+
56+
# As the content wasn't decoded, we restore the response to a state which
57+
# will be capable of decoding the content for the consumer.
58+
del resp._decoder
59+
resp._content = resp._get_content_decoder().decode(resp.content)
60+
else:
61+
with patch.dict(resp.headers, {"Content-Encoding": ""}):
62+
result = {
63+
"status": {"code": resp.status_code, "message": resp.reason_phrase},
64+
"headers": _transform_headers(resp),
65+
"body": {"string": resp.content},
66+
}
67+
6068
return result
6169

6270

0 commit comments

Comments
 (0)