Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion sdk/core/azure-core/tests/test_streaming.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import pytest
from azure.core.pipeline.transport import RequestsTransport
from azure.core import PipelineClient
from azure.core.exceptions import DecodeError
from azure.core.exceptions import DecodeError, HttpResponseError
from azure.core.pipeline.transport import RequestsTransport
from utils import HTTP_REQUESTS

Expand Down Expand Up @@ -92,6 +92,19 @@ def test_decompress_compressed_no_header(http_request):
except UnicodeDecodeError:
pass

@pytest.mark.parametrize("http_request", HTTP_REQUESTS)
def test_compress_compressed_no_header_offline(port, http_request):
# expect compressed text
client = PipelineClient("")
request = http_request(method="GET", url="http://localhost:{}/streams/compressed_no_header".format(port))
pipeline_response = client._pipeline.run(request, stream=True)
response = pipeline_response.http_response
data = response.stream_download(client._pipeline, decompress=False)
content = b"".join(list(data))
with pytest.raises(UnicodeDecodeError):
decoded = content.decode('utf-8')

@pytest.mark.live_test_only
@pytest.mark.parametrize("http_request", HTTP_REQUESTS)
def test_compress_compressed_no_header(http_request):
# expect compressed text
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
# Licensed under the MIT License. See LICENSE.txt in the project root for
# license information.
# -------------------------------------------------------------------------
import os
import gzip
from flask import (
Response,
Blueprint,
Expand Down Expand Up @@ -31,6 +33,15 @@ def streaming_test():
def stream_compressed_header_error():
yield b'test'

def stream_compressed_no_header():
with gzip.open('test.tar.gz', 'wb') as f:
f.write(b"test")

with open(os.path.join(os.path.abspath('test.tar.gz')), "rb") as fd:
yield fd.read()

os.remove("test.tar.gz")

@streams_api.route('/basic', methods=['GET'])
def basic():
return Response(streaming_body(), status=200)
Expand All @@ -48,7 +59,11 @@ def string():
return Response(
streaming_test(), status=200, mimetype="text/plain"
)


@streams_api.route('/compressed_no_header', methods=['GET'])
def compressed_no_header():
return Response(stream_compressed_no_header(), status=300)

@streams_api.route('/compressed', methods=['GET'])
def compressed():
return Response(stream_compressed_header_error(), status=300, headers={"Content-Encoding": "gzip"})
Expand Down