forked from pdfkit/pdfkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware_spec.rb
373 lines (315 loc) · 12.4 KB
/
middleware_spec.rb
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
require 'spec_helper'
def app; Rack::Lint.new(@app); end
def mock_app(options = {}, conditions = {}, custom_headers = {})
main_app = lambda { |env|
@env = env
full_headers = headers.merge custom_headers
[200, full_headers, @body || ['Hello world!']]
}
builder = Rack::Builder.new
builder.use PDFKit::Middleware, options, conditions
builder.run main_app
@app = builder.to_app
end
describe PDFKit::Middleware do
let(:headers) do
{'Content-Type' => "text/html"}
end
describe "#call" do
describe "caching" do
let(:headers) do
{
'Content-Type' => "text/html",
'ETag' => 'foo',
'Cache-Control' => 'max-age=2592000, public'
}
end
context "by default" do
before { mock_app }
it "deletes ETag" do
get 'http://www.example.org/public/test.pdf'
expect(last_response.headers["ETag"]).to be_nil
end
it "deletes Cache-Control" do
get 'http://www.example.org/public/test.pdf'
expect(last_response.headers["Cache-Control"]).to be_nil
end
end
context "when on" do
before { mock_app({}, :caching => true) }
it "preserves ETag" do
get 'http://www.example.org/public/test.pdf'
expect(last_response.headers["ETag"]).not_to be_nil
end
it "preserves Cache-Control" do
get 'http://www.example.org/public/test.pdf'
expect(last_response.headers["Cache-Control"]).not_to be_nil
end
end
end
describe "conditions" do
describe ":only" do
describe "regex" do
describe "one" do
before { mock_app({}, :only => %r[^/public]) }
context "matching" do
specify do
get 'http://www.example.org/public/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("application/pdf")
expect(last_response.body.bytesize).to eq(PDFKit.new("Hello world!").to_pdf.bytesize)
end
end
context "not matching" do
specify do
get 'http://www.example.org/secret/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("text/html")
expect(last_response.body).to eq("Hello world!")
end
end
end # one regex
describe "multiple" do
before { mock_app({}, :only => [%r[^/invoice], %r[^/public]]) }
context "matching" do
specify do
get 'http://www.example.org/public/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("application/pdf")
expect(last_response.body.bytesize).to eq(PDFKit.new("Hello world!").to_pdf.bytesize)
end
end
context "not matching" do
specify do
get 'http://www.example.org/secret/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("text/html")
expect(last_response.body).to eq("Hello world!")
end
end
end # multiple regex
end # regex
describe "string" do
describe "one" do
before { mock_app({}, :only => '/public') }
context "matching" do
specify do
get 'http://www.example.org/public/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("application/pdf")
expect(last_response.body.bytesize).to eq(PDFKit.new("Hello world!").to_pdf.bytesize)
end
end
context "not matching" do
specify do
get 'http://www.example.org/secret/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("text/html")
expect(last_response.body).to eq("Hello world!")
end
end
end # one string
describe "multiple" do
before { mock_app({}, :only => ['/invoice', '/public']) }
context "matching" do
specify do
get 'http://www.example.org/public/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("application/pdf")
expect(last_response.body.bytesize).to eq(PDFKit.new("Hello world!").to_pdf.bytesize)
end
end
context "not matching" do
specify do
get 'http://www.example.org/secret/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("text/html")
expect(last_response.body).to eq("Hello world!")
end
end
end # multiple string
end # string
end
describe ":except" do
describe "regex" do
describe "one" do
before { mock_app({}, :except => %r[^/secret]) }
context "matching" do
specify do
get 'http://www.example.org/public/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("application/pdf")
expect(last_response.body.bytesize).to eq(PDFKit.new("Hello world!").to_pdf.bytesize)
end
end
context "not matching" do
specify do
get 'http://www.example.org/secret/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("text/html")
expect(last_response.body).to eq("Hello world!")
end
end
end # one regex
describe "multiple" do
before { mock_app({}, :except => [%r[^/prawn], %r[^/secret]]) }
context "matching" do
specify do
get 'http://www.example.org/public/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("application/pdf")
expect(last_response.body.bytesize).to eq(PDFKit.new("Hello world!").to_pdf.bytesize)
end
end
context "not matching" do
specify do
get 'http://www.example.org/secret/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("text/html")
expect(last_response.body).to eq("Hello world!")
end
end
end # multiple regex
end # regex
describe "string" do
describe "one" do
before { mock_app({}, :except => '/secret') }
context "matching" do
specify do
get 'http://www.example.org/public/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("application/pdf")
expect(last_response.body.bytesize).to eq(PDFKit.new("Hello world!").to_pdf.bytesize)
end
end
context "not matching" do
specify do
get 'http://www.example.org/secret/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("text/html")
expect(last_response.body).to eq("Hello world!")
end
end
end # one string
describe "multiple" do
before { mock_app({}, :except => ['/prawn', '/secret']) }
context "matching" do
specify do
get 'http://www.example.org/public/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("application/pdf")
expect(last_response.body.bytesize).to eq(PDFKit.new("Hello world!").to_pdf.bytesize)
end
end
context "not matching" do
specify do
get 'http://www.example.org/secret/test.pdf'
expect(last_response.headers["Content-Type"]).to eq("text/html")
expect(last_response.body).to eq("Hello world!")
end
end
end # multiple string
end # string
end
describe "saving generated pdf to disk" do
before do
#make sure tests don't find an old test_save.pdf
File.delete('spec/test_save.pdf') if File.exists?('spec/test_save.pdf')
expect(File.exists?('spec/test_save.pdf')).to eq(false)
end
context "when header PDFKit-save-pdf is present" do
it "saves the .pdf to disk" do
headers = { 'PDFKit-save-pdf' => 'spec/test_save.pdf' }
mock_app({}, {only: '/public'}, headers)
get 'http://www.example.org/public/test_save.pdf'
expect(File.exists?('spec/test_save.pdf')).to eq(true)
end
it "does not raise when target directory does not exist" do
headers = { 'PDFKit-save-pdf' => '/this/dir/does/not/exist/spec/test_save.pdf' }
mock_app({}, {only: '/public'}, headers)
expect {
get 'http://www.example.com/public/test_save.pdf'
}.not_to raise_error
end
end
context "when header PDFKit-save-pdf is not present" do
it "does not saved the .pdf to disk" do
mock_app({}, {only: '/public'}, {} )
get 'http://www.example.org/public/test_save.pdf'
expect(File.exists?('spec/test_save.pdf')).to eq(false)
end
end
end
end
describe "remove .pdf from PATH_INFO and REQUEST_URI" do
before { mock_app }
context "matching" do
specify do
get 'http://www.example.org/public/file.pdf'
expect(@env["PATH_INFO"]).to eq("/public/file")
expect(@env["REQUEST_URI"]).to eq("/public/file")
expect(@env["SCRIPT_NAME"]).to be_empty
end
specify do
get 'http://www.example.org/public/file.txt'
expect(@env["PATH_INFO"]).to eq("/public/file.txt")
expect(@env["REQUEST_URI"]).to be_nil
expect(@env["SCRIPT_NAME"]).to be_empty
end
end
context "subdomain matching" do
before do
main_app = lambda { |env|
@env = env
@env['SCRIPT_NAME'] = '/example.org'
headers = {'Content-Type' => "text/html"}
[200, headers, @body || ['Hello world!']]
}
builder = Rack::Builder.new
builder.use PDFKit::Middleware
builder.run main_app
@app = builder.to_app
end
specify do
get 'http://example.org/sub/public/file.pdf'
expect(@env["PATH_INFO"]).to eq("/sub/public/file")
expect(@env["REQUEST_URI"]).to eq("/sub/public/file")
expect(@env["SCRIPT_NAME"]).to eq("/example.org")
end
specify do
get 'http://example.org/sub/public/file.txt'
expect(@env["PATH_INFO"]).to eq("/sub/public/file.txt")
expect(@env["REQUEST_URI"]).to be_nil
expect(@env["SCRIPT_NAME"]).to eq("/example.org")
end
end
end
end
describe "#root_url and #protocol" do
before do
@pdf = PDFKit::Middleware.new({})
@env = { 'REQUEST_URI' => 'http://example.com/document.pdf', 'rack.url_scheme' => 'http', 'HTTP_HOST' => 'example.com' }
end
context 'when root_url is not configured' do
it "infers the root_url and protocol from the environment" do
root_url = @pdf.send(:root_url, @env)
protocol = @pdf.send(:protocol, @env)
expect(root_url).to eq('http://example.com/')
expect(protocol).to eq('http')
end
end
context 'when root_url is configured' do
before do
PDFKit.configuration.root_url = 'http://example.net/'
end
after do
PDFKit.configuration.root_url = nil
end
it "takes the root_url from the configuration, and infers the protocol from the environment" do
root_url = @pdf.send(:root_url, @env)
protocol = @pdf.send(:protocol, @env)
expect(root_url).to eq('http://example.net/')
expect(protocol).to eq('http')
end
end
end
it "does not get stuck rendering each request as pdf" do
mock_app
# false by default. No requests.
expect(@app.send(:rendering_pdf?)).to eq(false)
# Remain false on a normal request
get 'http://www.example.org/public/file'
expect(@app.send(:rendering_pdf?)).to eq(false)
# Return true on a pdf request.
get 'http://www.example.org/public/file.pdf'
expect(@app.send(:rendering_pdf?)).to eq(true)
# Restore to false on any non-pdf request.
get 'http://www.example.org/public/file'
expect(@app.send(:rendering_pdf?)).to eq(false)
end
end