-
Notifications
You must be signed in to change notification settings - Fork 193
/
Copy pathtest_static.py
261 lines (201 loc) · 8.8 KB
/
test_static.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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
from io import BytesIO
import os
from os.path import getmtime
import shutil
import tempfile
from time import gmtime
import pytest
from webob import static
from webob.request import Request, environ_from_url
from webob.response import Response
from webob.util import bytes_
def get_response(app, path="/", **req_kw):
"""Convenient function to query an application"""
req = Request(environ_from_url(path), **req_kw)
return req.get_response(app)
def create_file(content, *paths):
"""Convenient function to create a new file with some content"""
path = os.path.join(*paths)
with open(path, "wb") as fp:
fp.write(bytes_(content))
return path
class TestFileApp:
def setup_method(self, method):
fp = tempfile.NamedTemporaryFile(suffix=".py", delete=False)
self.tempfile = fp.name
fp.write(b"import this\n")
fp.close()
def tearDown(self):
os.unlink(self.tempfile)
def test_fileapp(self):
app = static.FileApp(self.tempfile)
resp1 = get_response(app)
assert resp1.content_type in ("text/x-python", "text/plain")
assert resp1.charset == "UTF-8"
assert resp1.last_modified.timetuple() == gmtime(getmtime(self.tempfile))
assert resp1.body == b"import this\n"
resp2 = get_response(app)
assert resp2.content_type in ("text/x-python", "text/plain")
assert resp2.last_modified.timetuple() == gmtime(getmtime(self.tempfile))
assert resp2.body == b"import this\n"
resp3 = get_response(app, range=(7, 11))
assert resp3.status_code == 206
assert tuple(resp3.content_range)[:2] == (7, 11)
assert resp3.last_modified.timetuple() == gmtime(getmtime(self.tempfile))
assert resp3.body == bytes_("this")
def test_unexisting_file(self):
app = static.FileApp("/tmp/this/doesnt/exist")
assert 404 == get_response(app).status_code
def test_allowed_methods(self):
app = static.FileApp(self.tempfile)
# Alias
def resp(method):
return get_response(app, method=method)
assert 200 == resp(method="GET").status_code
assert 200 == resp(method="HEAD").status_code
assert 405 == resp(method="POST").status_code
# Actually any other method is not allowed
assert 405 == resp(method="xxx").status_code
def test_exception_while_opening_file(self):
# Mock the built-in ``open()`` function to allow finner control about
# what we are testing.
def open_ioerror(*args, **kwargs):
raise OSError()
def open_oserror(*args, **kwargs):
raise OSError()
app = static.FileApp(self.tempfile)
app._open = open_ioerror
assert 403 == get_response(app).status_code
app._open = open_oserror
assert 403 == get_response(app).status_code
def test_use_wsgi_filewrapper(self):
class TestWrapper:
__slots__ = ("file", "block_size")
def __init__(self, file, block_size):
self.file = file
self.block_size = block_size
environ = environ_from_url("/")
environ["wsgi.file_wrapper"] = TestWrapper
app = static.FileApp(self.tempfile)
app_iter = Request(environ).get_response(app).app_iter
assert isinstance(app_iter, TestWrapper)
assert bytes_("import this\n") == app_iter.file.read()
assert static.BLOCK_SIZE == app_iter.block_size
class TestFileIter:
def test_empty_file(self):
fp = BytesIO()
fi = static.FileIter(fp)
pytest.raises(StopIteration, next, iter(fi))
def test_seek(self):
fp = BytesIO(bytes_("0123456789"))
i = static.FileIter(fp).app_iter_range(seek=4)
assert bytes_("456789") == next(i)
pytest.raises(StopIteration, next, i)
def test_limit(self):
fp = BytesIO(bytes_("0123456789"))
i = static.FileIter(fp).app_iter_range(limit=4)
assert bytes_("0123") == next(i)
pytest.raises(StopIteration, next, i)
def test_limit_and_seek(self):
fp = BytesIO(bytes_("0123456789"))
i = static.FileIter(fp).app_iter_range(limit=4, seek=1)
assert bytes_("123") == next(i)
pytest.raises(StopIteration, next, i)
def test_multiple_reads(self):
fp = BytesIO(bytes_("012"))
i = static.FileIter(fp).app_iter_range(block_size=1)
assert bytes_("0") == next(i)
assert bytes_("1") == next(i)
assert bytes_("2") == next(i)
pytest.raises(StopIteration, next, i)
def test_seek_bigger_than_limit(self):
fp = BytesIO(bytes_("0123456789"))
i = static.FileIter(fp).app_iter_range(limit=1, seek=2)
# XXX: this should not return anything actually, since we are starting
# to read after the place we wanted to stop.
assert bytes_("23456789") == next(i)
pytest.raises(StopIteration, next, i)
def test_limit_is_zero(self):
fp = BytesIO(bytes_("0123456789"))
i = static.FileIter(fp).app_iter_range(limit=0)
pytest.raises(StopIteration, next, i)
class TestDirectoryApp:
def setup_method(self, method):
self.test_dir = tempfile.mkdtemp()
def tearDown(self):
shutil.rmtree(self.test_dir)
def test_empty_directory(self):
app = static.DirectoryApp(self.test_dir)
assert 404 == get_response(app).status_code
assert 404 == get_response(app, "/foo").status_code
def test_serve_file(self):
app = static.DirectoryApp(self.test_dir)
create_file("abcde", self.test_dir, "bar")
assert 404 == get_response(app).status_code
assert 404 == get_response(app, "/foo").status_code
resp = get_response(app, "/bar")
assert 200 == resp.status_code
assert bytes_("abcde") == resp.body
def test_dont_serve_file_in_parent_directory(self):
# We'll have:
# /TEST_DIR/
# /TEST_DIR/bar
# /TEST_DIR/foo/ <- serve this directory
create_file("abcde", self.test_dir, "bar")
serve_path = os.path.join(self.test_dir, "foo")
os.mkdir(serve_path)
app = static.DirectoryApp(serve_path)
# The file exists, but is outside the served dir.
assert 403 == get_response(app, "/../bar").status_code
def test_dont_leak_parent_directory_file_existance(self):
# We'll have:
# /TEST_DIR/
# /TEST_DIR/foo/ <- serve this directory
serve_path = os.path.join(self.test_dir, "foo")
os.mkdir(serve_path)
app = static.DirectoryApp(serve_path)
# The file exists, but is outside the served dir.
assert 403 == get_response(app, "/../bar2").status_code
def test_file_app_arguments(self):
app = static.DirectoryApp(self.test_dir, content_type="xxx/yyy")
create_file("abcde", self.test_dir, "bar")
resp = get_response(app, "/bar")
assert 200 == resp.status_code
assert "xxx/yyy" == resp.content_type
def test_file_app_factory(self):
def make_fileapp(*args, **kwargs):
make_fileapp.called = True
return Response()
make_fileapp.called = False
app = static.DirectoryApp(self.test_dir)
app.make_fileapp = make_fileapp
create_file("abcde", self.test_dir, "bar")
get_response(app, "/bar")
assert make_fileapp.called
def test_must_serve_directory(self):
serve_path = create_file("abcde", self.test_dir, "bar")
pytest.raises(IOError, static.DirectoryApp, serve_path)
def test_index_page(self):
os.mkdir(os.path.join(self.test_dir, "index-test"))
create_file(bytes_("index"), self.test_dir, "index-test", "index.html")
app = static.DirectoryApp(self.test_dir)
resp = get_response(app, "/index-test")
assert resp.status_code == 301
assert resp.location.endswith("/index-test/")
resp = get_response(app, "/index-test?test")
assert resp.location.endswith("/index-test/?test")
resp = get_response(app, "/index-test/")
assert resp.status_code == 200
assert resp.body == bytes_("index")
assert resp.content_type == "text/html"
resp = get_response(app, "/index-test/index.html")
assert resp.status_code == 200
assert resp.body == bytes_("index")
redir_app = static.DirectoryApp(self.test_dir, hide_index_with_redirect=True)
resp = get_response(redir_app, "/index-test/index.html")
assert resp.status_code == 301
assert resp.location.endswith("/index-test/")
resp = get_response(redir_app, "/index-test/index.html?test")
assert resp.location.endswith("/index-test/?test")
page_app = static.DirectoryApp(self.test_dir, index_page="something-else.html")
assert get_response(page_app, "/index-test/").status_code == 404