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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
|
# frozen_string_literal: true
require_relative 'helper'
separate_testing do
require_relative '../lib/rack/files'
require_relative '../lib/rack/lint'
require_relative '../lib/rack/mock'
end
describe Rack::Files do
DOCROOT = File.expand_path(File.dirname(__FILE__)) unless defined? DOCROOT
def files(*args)
Rack::Lint.new Rack::Files.new(*args)
end
it "can be used without root" do
# https://github.com/rack/rack/issues/1464
app = Rack::Files.new(nil)
request = Rack::Request.new(
Rack::MockRequest.env_for("/cgi/test")
)
file_path = File.expand_path("cgi/test", __dir__)
assert_equal 200, app.serving(request, file_path)[0]
end
it 'serves files with + in the file name' do
Dir.mktmpdir do |dir|
File.write File.join(dir, "you+me.txt"), "hello world"
app = files(dir)
env = Rack::MockRequest.env_for("/you+me.txt")
status, _, body = app.call env
assert_equal 200, status
str = ''.dup
body.each { |x| str << x }
assert_match "hello world", str
end
end
it "serve files" do
res = Rack::MockRequest.new(files(DOCROOT)).get("/cgi/test")
res.must_be :ok?
assert_match(res, /ruby/)
end
it "does not serve directories" do
res = Rack::MockRequest.new(files(DOCROOT)).get("/cgi/assets")
res.status.must_equal 404
end
it "set last-modified header" do
res = Rack::MockRequest.new(files(DOCROOT)).get("/cgi/test")
path = File.join(DOCROOT, "/cgi/test")
res.must_be :ok?
res["last-modified"].must_equal File.mtime(path).httpdate
end
it "return 304 if file isn't modified since last serve" do
path = File.join(DOCROOT, "/cgi/test")
res = Rack::MockRequest.new(files(DOCROOT)).
get("/cgi/test", 'HTTP_IF_MODIFIED_SINCE' => File.mtime(path).httpdate)
res.status.must_equal 304
res.body.must_be :empty?
end
it "return the file if it's modified since last serve" do
path = File.join(DOCROOT, "/cgi/test")
res = Rack::MockRequest.new(files(DOCROOT)).
get("/cgi/test", 'HTTP_IF_MODIFIED_SINCE' => (File.mtime(path) - 100).httpdate)
res.must_be :ok?
end
it "serve files with URL encoded filenames" do
res = Rack::MockRequest.new(files(DOCROOT)).get("/cgi/%74%65%73%74") # "/cgi/test"
res.must_be :ok?
# res.must_match(/ruby/) # nope
# (/ruby/).must_match res # This is weird, but an oddity of minitest
# assert_match(/ruby/, res) # nope
assert_match(res, /ruby/)
end
it "serve uri with URL encoded null byte (%00) in filenames" do
res = Rack::MockRequest.new(files(DOCROOT)).get("/cgi/test%00")
res.must_be :bad_request?
end
it "allow safe directory traversal" do
req = Rack::MockRequest.new(files(DOCROOT))
res = req.get('/cgi/../cgi/test')
res.must_be :successful?
res = req.get('.')
res.must_be :not_found?
res = req.get("test/..")
res.must_be :not_found?
end
it "not allow unsafe directory traversal" do
req = Rack::MockRequest.new(files(DOCROOT))
res = req.get("/../README.rdoc")
res.must_be :client_error?
res = req.get("../test/spec_file.rb")
res.must_be :client_error?
res = req.get("../README.rdoc")
res.must_be :client_error?
res.must_be :not_found?
end
it "allow files with .. in their name" do
req = Rack::MockRequest.new(files(DOCROOT))
res = req.get("/cgi/..test")
res.must_be :not_found?
res = req.get("/cgi/test..")
res.must_be :not_found?
res = req.get("/cgi../test..")
res.must_be :not_found?
end
it "not allow unsafe directory traversal with encoded periods" do
res = Rack::MockRequest.new(files(DOCROOT)).get("/%2E%2E/README")
res.must_be :client_error?
res.must_be :not_found?
end
it "allow safe directory traversal with encoded periods" do
res = Rack::MockRequest.new(files(DOCROOT)).get("/cgi/%2E%2E/cgi/test")
res.must_be :successful?
end
it "404 if it can't find the file" do
res = Rack::MockRequest.new(files(DOCROOT)).get("/cgi/blubb")
res.must_be :not_found?
end
it "detect SystemCallErrors" do
res = Rack::MockRequest.new(files(DOCROOT)).get("/cgi")
res.must_be :not_found?
end
it "return bodies that respond to #to_path" do
env = Rack::MockRequest.env_for("/cgi/test")
status, _, body = Rack::Files.new(DOCROOT).call(env)
path = File.join(DOCROOT, "/cgi/test")
status.must_equal 200
body.must_respond_to :to_path
body.to_path.must_equal path
end
it "return bodies that do not respond to #to_path if a byte range is requested" do
env = Rack::MockRequest.env_for("/cgi/test")
env["HTTP_RANGE"] = "bytes=22-33"
status, _, body = Rack::Files.new(DOCROOT).call(env)
status.must_equal 206
body.wont_respond_to :to_path
end
it "return correct byte range in body" do
env = Rack::MockRequest.env_for("/cgi/test")
env["HTTP_RANGE"] = "bytes=22-33"
res = Rack::MockResponse.new(*files(DOCROOT).call(env))
res.status.must_equal 206
res["content-length"].must_equal "12"
res["content-range"].must_equal "bytes 22-33/209"
res.body.must_equal "IS FILE! ***"
end
it "handle case where file is truncated during request" do
env = Rack::MockRequest.env_for("/cgi/test")
env["HTTP_RANGE"] = "bytes=0-3300"
files = Class.new(Rack::Files) do
def filesize(_); 10000 end
end.new(DOCROOT)
res = Rack::MockResponse.new(*files.call(env))
res.status.must_equal 206
res["content-length"].must_equal "209"
res["content-range"].must_equal "bytes 0-3300/10000"
end
it "return correct multiple byte ranges in body" do
env = Rack::MockRequest.env_for("/cgi/test")
env["HTTP_RANGE"] = "bytes=22-33, 60-80"
res = Rack::MockResponse.new(*files(DOCROOT).call(env))
res.status.must_equal 206
res["content-length"].must_equal "191"
res["content-type"].must_equal "multipart/byteranges; boundary=AaB03x"
expected_body = <<-EOF
\r
--AaB03x\r
content-type: text/plain\r
content-range: bytes 22-33/209\r
\r
IS FILE! ***\r
--AaB03x\r
content-type: text/plain\r
content-range: bytes 60-80/209\r
\r
, tests will break!!!\r
--AaB03x--\r
EOF
res.body.must_equal expected_body
end
it "return error for unsatisfiable byte range" do
env = Rack::MockRequest.env_for("/cgi/test")
env["HTTP_RANGE"] = "bytes=1234-5678"
res = Rack::MockResponse.new(*files(DOCROOT).call(env))
res.status.must_equal 416
res["content-range"].must_equal "bytes */209"
end
it "support custom http headers" do
env = Rack::MockRequest.env_for("/cgi/test")
status, heads, _ = files(DOCROOT, 'cache-control' => 'public, max-age=38',
'access-control-allow-origin' => '*').call(env)
status.must_equal 200
heads['cache-control'].must_equal 'public, max-age=38'
heads['access-control-allow-origin'].must_equal '*'
end
it "support not add custom http headers if none are supplied" do
env = Rack::MockRequest.env_for("/cgi/test")
status, heads, _ = files(DOCROOT).call(env)
status.must_equal 200
heads['cache-control'].must_be_nil
heads['access-control-allow-origin'].must_be_nil
end
it "only support GET, HEAD, and OPTIONS requests" do
req = Rack::MockRequest.new(files(DOCROOT))
forbidden = %w[post put patch delete]
forbidden.each do |method|
res = req.send(method, "/cgi/test")
res.must_be :client_error?
res.must_be :method_not_allowed?
res.headers['allow'].split(/, */).sort.must_equal %w(GET HEAD OPTIONS)
end
allowed = %w[get head options]
allowed.each do |method|
res = req.send(method, "/cgi/test")
res.must_be :successful?
end
end
it "set Allow correctly for OPTIONS requests" do
req = Rack::MockRequest.new(files(DOCROOT))
res = req.options('/cgi/test')
res.must_be :successful?
res.headers['allow'].wont_equal nil
res.headers['allow'].split(/, */).sort.must_equal %w(GET HEAD OPTIONS)
end
it "set content-length correctly for HEAD requests" do
req = Rack::MockRequest.new(Rack::Lint.new(Rack::Files.new(DOCROOT)))
res = req.head "/cgi/test"
res.must_be :successful?
res['content-length'].must_equal "209"
end
it "default to a mime type of text/plain" do
req = Rack::MockRequest.new(Rack::Lint.new(Rack::Files.new(DOCROOT)))
res = req.get "/cgi/test"
res.must_be :successful?
res['content-type'].must_equal "text/plain"
end
it "allow the default mime type to be set" do
req = Rack::MockRequest.new(Rack::Lint.new(Rack::Files.new(DOCROOT, nil, 'application/octet-stream')))
res = req.get "/cgi/test"
res.must_be :successful?
res['content-type'].must_equal "application/octet-stream"
end
it "not set content-type if the mime type is not set" do
req = Rack::MockRequest.new(Rack::Lint.new(Rack::Files.new(DOCROOT, nil, nil)))
res = req.get "/cgi/test"
res.must_be :successful?
res['content-type'].must_be_nil
end
it "return error when file not found for head request" do
res = Rack::MockRequest.new(files(DOCROOT)).head("/cgi/missing")
res.must_be :not_found?
res.body.must_be :empty?
end
end
|