From 57df0c6921723b4758c17b5dd6d029c54816dfa6 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sun, 3 Jul 2016 11:58:01 -1000 Subject: [PATCH] unzip bodies before comparing. Fixes #261 --- tests/integration/test_stubs.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/integration/test_stubs.py b/tests/integration/test_stubs.py index b0607c2..71c7f3b 100644 --- a/tests/integration/test_stubs.py +++ b/tests/integration/test_stubs.py @@ -1,4 +1,5 @@ import vcr +import zlib import six.moves.http_client as httplib from assertions import assert_is_json @@ -69,7 +70,9 @@ def test_original_decoded_response_is_not_modified(tmpdir, httpbin): inside_headers = (h for h in inside.headers.items() if h[0] != 'Date') outside_headers = (h for h in outside.getheaders() if h[0] != 'Date') assert set(inside_headers) == set(outside_headers) - assert inside.read() == outside.read() + inside = zlib.decompress(inside.read(), 16+zlib.MAX_WBITS) + outside = zlib.decompress(outside.read(), 16+zlib.MAX_WBITS) + assert inside == outside # Even though the above are raw bytes, the JSON data should have been # decoded and saved to the cassette.