-
Notifications
You must be signed in to change notification settings - Fork 1
/
tests.py
199 lines (150 loc) · 6.17 KB
/
tests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
"""Main tests for zstd middleware.
Some of these tests are the same as the ones from starlette.tests.middleware.test_gzip
but using zstd instead.
"""
import functools
import gzip
import io
import pytest
from starlette.applications import Starlette
from starlette.responses import (
JSONResponse,
PlainTextResponse,
Response,
StreamingResponse,
)
from starlette.routing import Route
from starlette.testclient import TestClient
import zstandard
from zstd_asgi import ZstdMiddleware
@pytest.fixture
def test_client_factory(anyio_backend_name, anyio_backend_options):
return functools.partial(
TestClient,
backend=anyio_backend_name,
backend_options=anyio_backend_options,
)
def test_zstd_responses(test_client_factory):
def homepage(request):
return PlainTextResponse("x" * 4000, status_code=200)
app = Starlette(routes=[Route("/", homepage)])
app.add_middleware(ZstdMiddleware)
client = test_client_factory(app)
response = client.get("/", headers={"accept-encoding": "zstd"})
assert response.status_code == 200
assert response.headers["Content-Encoding"] == "zstd"
# no transparent zstd support in requests yet
assert zstandard.decompress(response.content, 5000) == b"x" * 4000
assert int(response.headers["Content-Length"]) < 4000
def test_zstd_not_in_accept_encoding(test_client_factory):
def homepage(request):
return PlainTextResponse("x" * 4000, status_code=200)
app = Starlette(routes=[Route("/", homepage)])
app.add_middleware(ZstdMiddleware)
client = test_client_factory(app)
response = client.get("/", headers={"accept-encoding": "identity"})
assert response.status_code == 200
assert response.text == "x" * 4000
assert "Content-Encoding" not in response.headers
assert int(response.headers["Content-Length"]) == 4000
def test_zstd_ignored_for_small_responses(test_client_factory):
def homepage(request):
return PlainTextResponse("OK", status_code=200)
app = Starlette(routes=[Route("/", homepage)])
app.add_middleware(ZstdMiddleware)
client = test_client_factory(app)
response = client.get("/", headers={"accept-encoding": "zstd"})
assert response.status_code == 200
assert response.text == "OK"
assert "Content-Encoding" not in response.headers
assert int(response.headers["Content-Length"]) == 2
def test_zstd_streaming_response(test_client_factory):
def homepage(request):
async def generator(bytes, count):
for index in range(count):
yield bytes
streaming = generator(bytes=b"x" * 400, count=10)
return StreamingResponse(streaming, status_code=200)
app = Starlette(routes=[Route("/", homepage)])
app.add_middleware(ZstdMiddleware)
client = test_client_factory(app)
response = client.get("/", headers={"accept-encoding": "zstd"})
assert response.status_code == 200
assert response.headers["Content-Encoding"] == "zstd"
assert zstandard.decompress(response.content, 5000) == b"x" * 4000
assert "Content-Length" not in response.headers
def test_zstd_api_options(test_client_factory):
def homepage(request):
return JSONResponse({"data": "a" * 4000}, status_code=200)
app = Starlette(routes=[Route("/", homepage)])
app.add_middleware(
ZstdMiddleware,
level=19,
write_checksum=True,
threads=2,
)
client = TestClient(app)
response = client.get("/", headers={"accept-encoding": "zstd"})
assert response.status_code == 200
def test_gzip_fallback(test_client_factory):
def homepage(request):
return PlainTextResponse("x" * 4000, status_code=200)
app = Starlette(routes=[Route("/", homepage)])
app.add_middleware(ZstdMiddleware, gzip_fallback=True)
client = TestClient(app)
response = client.get("/", headers={"accept-encoding": "gzip"})
assert response.status_code == 200
assert response.text == "x" * 4000
assert response.headers["Content-Encoding"] == "gzip"
assert int(response.headers["Content-Length"]) < 4000
def test_gzip_fallback_false(test_client_factory):
def homepage(request):
return PlainTextResponse("x" * 4000, status_code=200)
app = Starlette(routes=[Route("/", homepage)])
app.add_middleware(ZstdMiddleware, gzip_fallback=False)
client = test_client_factory(app)
response = client.get("/", headers={"accept-encoding": "gzip"})
assert response.status_code == 200
assert response.text == "x" * 4000
assert "Content-Encoding" not in response.headers
assert int(response.headers["Content-Length"]) == 4000
def test_excluded_handlers(test_client_factory):
def homepage(request):
return PlainTextResponse("x" * 4000, status_code=200)
app = Starlette(routes=[Route("/excluded", homepage)])
app.add_middleware(
ZstdMiddleware,
excluded_handlers=["/excluded"],
)
client = test_client_factory(app)
response = client.get("/excluded", headers={"accept-encoding": "zstd"})
assert response.status_code == 200
assert response.text == "x" * 4000
assert "Content-Encoding" not in response.headers
assert int(response.headers["Content-Length"]) == 4000
def test_zstd_avoids_double_encoding(test_client_factory):
# See https://github.com/encode/starlette/pull/1901
def homepage(request):
gzip_buffer = io.BytesIO()
gzip_file = gzip.GzipFile(mode="wb", fileobj=gzip_buffer)
gzip_file.write(b"hello world" * 200)
gzip_file.close()
body = gzip_buffer.getvalue()
return Response(
body,
headers={
"content-encoding": "gzip",
"x-gzipped-content-length": str(len(body)),
},
)
app = Starlette(routes=[Route("/", homepage)])
app.add_middleware(ZstdMiddleware, minimum_size=1)
client = test_client_factory(app)
response = client.get("/", headers={"accept-encoding": "zstd"})
assert response.status_code == 200
assert response.text == "hello world" * 200
assert response.headers["Content-Encoding"] == "gzip"
assert (
response.headers["Content-Length"]
== response.headers["x-gzipped-content-length"]
)