-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathinside_route_spec.rb
406 lines (332 loc) · 10.5 KB
/
inside_route_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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
# frozen_string_literal: true
describe Grape::DSL::InsideRoute do
subject { dummy_class.new }
let(:dummy_class) do
Class.new do
include Grape::DSL::InsideRoute
attr_reader :env, :request, :new_settings
def initialize
@env = {}
@header = {}
@new_settings = { namespace_inheritable: {}, namespace_stackable: {} }
end
end
end
describe '#version' do
it 'defaults to nil' do
expect(subject.version).to be_nil
end
it 'returns env[api.version]' do
subject.env[Grape::Env::API_VERSION] = 'dummy'
expect(subject.version).to eq 'dummy'
end
end
describe '#error!' do
it 'throws :error' do
expect { subject.error! 'Not Found', 404 }.to throw_symbol(:error)
end
describe 'thrown' do
before do
catch(:error) { subject.error! 'Not Found', 404 }
end
it 'sets status' do
expect(subject.status).to eq 404
end
end
describe 'default_error_status' do
before do
subject.namespace_inheritable(:default_error_status, 500)
catch(:error) { subject.error! 'Unknown' }
end
it 'sets status to default_error_status' do
expect(subject.status).to eq 500
end
end
# self.status(status || settings[:default_error_status])
# throw :error, message: message, status: self.status, headers: headers
end
describe '#redirect' do
describe 'default' do
before do
subject.redirect '/'
end
it 'sets status to 302' do
expect(subject.status).to eq 302
end
it 'sets location header' do
expect(subject.header['Location']).to eq '/'
end
end
describe 'permanent' do
before do
subject.redirect '/', permanent: true
end
it 'sets status to 301' do
expect(subject.status).to eq 301
end
it 'sets location header' do
expect(subject.header['Location']).to eq '/'
end
end
end
describe '#status' do
%w[GET PUT OPTIONS].each do |method|
it 'defaults to 200 on GET' do
request = Grape::Request.new(Rack::MockRequest.env_for('/', method: method))
expect(subject).to receive(:request).and_return(request).twice
expect(subject.status).to eq 200
end
end
it 'defaults to 201 on POST' do
request = Grape::Request.new(Rack::MockRequest.env_for('/', method: Rack::POST))
expect(subject).to receive(:request).and_return(request)
expect(subject.status).to eq 201
end
it 'defaults to 204 on DELETE' do
request = Grape::Request.new(Rack::MockRequest.env_for('/', method: Rack::DELETE))
expect(subject).to receive(:request).and_return(request).twice
expect(subject.status).to eq 204
end
it 'defaults to 200 on DELETE with a body present' do
request = Grape::Request.new(Rack::MockRequest.env_for('/', method: Rack::DELETE))
subject.body 'content here'
expect(subject).to receive(:request).and_return(request).twice
expect(subject.status).to eq 200
end
it 'returns status set' do
subject.status 501
expect(subject.status).to eq 501
end
it 'accepts symbol for status' do
subject.status :see_other
expect(subject.status).to eq 303
end
it 'raises error if unknow symbol is passed' do
expect { subject.status :foo_bar }
.to raise_error(ArgumentError, 'Status code :foo_bar is invalid.')
end
it 'accepts unknown Integer status codes' do
expect { subject.status 210 }.not_to raise_error
end
it 'raises error if status is not a integer or symbol' do
expect { subject.status Object.new }
.to raise_error(ArgumentError, 'Status code must be Integer or Symbol.')
end
end
describe '#return_no_content' do
it 'sets the status code and body' do
subject.return_no_content
expect(subject.status).to eq 204
expect(subject.body).to eq ''
end
end
describe '#content_type' do
describe 'set' do
before do
subject.content_type 'text/plain'
end
it 'returns value' do
expect(subject.content_type).to eq 'text/plain'
end
end
it 'returns default' do
expect(subject.content_type).to be_nil
end
end
describe '#body' do
describe 'set' do
before do
subject.body 'body'
end
it 'returns value' do
expect(subject.body).to eq 'body'
end
end
describe 'false' do
before do
subject.body false
end
it 'sets status to 204' do
expect(subject.body).to eq ''
expect(subject.status).to eq 204
end
end
it 'returns default' do
expect(subject.body).to be_nil
end
end
describe '#sendfile' do
describe 'set' do
context 'as file path' do
let(:file_path) { '/some/file/path' }
let(:file_response) do
file_body = Grape::ServeStream::FileBody.new(file_path)
Grape::ServeStream::StreamResponse.new(file_body)
end
before do
subject.header Rack::CACHE_CONTROL, 'cache'
subject.header Rack::CONTENT_LENGTH, 123
subject.header 'Transfer-Encoding', 'base64'
subject.sendfile file_path
end
it 'returns value wrapped in StreamResponse' do
expect(subject.sendfile).to eq file_response
end
it 'set the correct headers' do
expect(subject.header).to match(
Rack::CACHE_CONTROL => 'cache',
Rack::CONTENT_LENGTH => 123,
'Transfer-Encoding' => 'base64'
)
end
end
context 'as object' do
let(:file_object) { double('StreamerObject', each: nil) }
it 'raises an error that only a file path is supported' do
expect { subject.sendfile file_object }.to raise_error(ArgumentError, /Argument must be a file path/)
end
end
end
it 'returns default' do
expect(subject.sendfile).to be_nil
end
end
describe '#stream' do
describe 'set' do
context 'as a file path' do
let(:file_path) { '/some/file/path' }
let(:file_response) do
file_body = Grape::ServeStream::FileBody.new(file_path)
Grape::ServeStream::StreamResponse.new(file_body)
end
before do
subject.header Rack::CACHE_CONTROL, 'cache'
subject.header Rack::CONTENT_LENGTH, 123
subject.header 'Transfer-Encoding', 'base64'
subject.stream file_path
end
it 'returns file body wrapped in StreamResponse' do
expect(subject.stream).to eq file_response
end
it 'sets only the cache-control header' do
expect(subject.header).to match(Rack::CACHE_CONTROL => 'no-cache')
end
end
context 'as a stream object' do
let(:stream_object) { double('StreamerObject', each: nil) }
let(:stream_response) do
Grape::ServeStream::StreamResponse.new(stream_object)
end
before do
subject.header Rack::CACHE_CONTROL, 'cache'
subject.header Rack::CONTENT_LENGTH, 123
subject.header 'Transfer-Encoding', 'base64'
subject.stream stream_object
end
it 'returns value wrapped in StreamResponse' do
expect(subject.stream).to eq stream_response
end
it 'set only the cache-control header' do
expect(subject.header).to match(Rack::CACHE_CONTROL => 'no-cache')
end
end
context 'as a non-stream object' do
let(:non_stream_object) { double('NonStreamerObject') }
it 'raises an error that the object must implement :each' do
expect { subject.stream non_stream_object }.to raise_error(ArgumentError, /:each/)
end
end
end
it 'returns default' do
expect(subject.stream).to be_nil
expect(subject.header).to be_empty
end
end
describe '#route' do
before do
subject.env[Grape::Env::GRAPE_ROUTING_ARGS] = {}
subject.env[Grape::Env::GRAPE_ROUTING_ARGS][:route_info] = 'dummy'
end
it 'returns route_info' do
expect(subject.route).to eq 'dummy'
end
end
describe '#present' do
# see entity_spec.rb for entity representation spec coverage
describe 'dummy' do
before do
subject.present 'dummy'
end
it 'presents dummy object' do
expect(subject.body).to eq 'dummy'
end
end
describe 'with' do
describe 'entity' do
let(:entity_mock) do
entity_mock = Object.new
allow(entity_mock).to receive(:represent).and_return('dummy')
entity_mock
end
describe 'instance' do
before do
subject.present 'dummy', with: entity_mock
end
it 'presents dummy object' do
expect(subject.body).to eq 'dummy'
end
end
end
end
describe 'multiple entities' do
let(:entity_mock_one) do
entity_mock_one = Object.new
allow(entity_mock_one).to receive(:represent).and_return(dummy1: 'dummy1')
entity_mock_one
end
let(:entity_mock_two) do
entity_mock_two = Object.new
allow(entity_mock_two).to receive(:represent).and_return(dummy2: 'dummy2')
entity_mock_two
end
describe 'instance' do
before do
subject.present 'dummy1', with: entity_mock_one
subject.present 'dummy2', with: entity_mock_two
end
it 'presents both dummy objects' do
expect(subject.body[:dummy1]).to eq 'dummy1'
expect(subject.body[:dummy2]).to eq 'dummy2'
end
end
end
describe 'non mergeable entity' do
let(:entity_mock_one) do
entity_mock_one = Object.new
allow(entity_mock_one).to receive(:represent).and_return(dummy1: 'dummy1')
entity_mock_one
end
let(:entity_mock_two) do
entity_mock_two = Object.new
allow(entity_mock_two).to receive(:represent).and_return('not a hash')
entity_mock_two
end
describe 'instance' do
it 'fails' do
subject.present 'dummy1', with: entity_mock_one
expect do
subject.present 'dummy2', with: entity_mock_two
end.to raise_error ArgumentError, 'Representation of type String cannot be merged.'
end
end
end
end
describe '#declared' do
# see endpoint_spec.rb#declared for spec coverage
it 'is not available by default' do
expect { subject.declared({}) }.to raise_error(
Grape::DSL::InsideRoute::MethodNotYetAvailable
)
end
end
end