File: test_spec.rb

package info (click to toggle)
ruby-rack-test 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 308 kB
  • sloc: ruby: 2,269; makefile: 6
file content (830 lines) | stat: -rw-r--r-- 23,819 bytes parent folder | download
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
# frozen-string-literal: true

require_relative '../spec_helper'

describe 'Rack::Test::Session' do
  it 'has alias of Rack::MockSession for backwards compatibility' do
    Rack::MockSession.must_be_same_as Rack::Test::Session
  end

  it 'supports being initialized with a Rack::MockSession app' do
    Rack::Test::Session.new(Rack::MockSession.new(app)).request('/').must_be :ok?
  end

  it 'supports being initialized with an app' do
    Rack::Test::Session.new(app).request('/').must_be :ok?
  end
end

describe 'Rack::Test::Session#request' do
  it 'requests the URI using GET by default' do
    request '/'
    last_request.env['REQUEST_METHOD'].must_equal 'GET'
    last_response.must_be :ok?
  end

  it 'returns last response' do
    request('/').must_be :ok?
  end

  it 'uses the provided env' do
    request '/', 'X-Foo' => 'bar'
    last_request.env['X-Foo'].must_equal 'bar'
  end

  it 'allows HTTP_HOST to be set' do
    request '/', 'HTTP_HOST' => 'www.example.ua'
    last_request.env['HTTP_HOST'].must_equal 'www.example.ua'
  end

  it 'sets HTTP_HOST with port for non-default ports' do
    request 'http://foo.com:8080'
    last_request.env['HTTP_HOST'].must_equal 'foo.com:8080'
    request 'https://foo.com:8443'
    last_request.env['HTTP_HOST'].must_equal 'foo.com:8443'
  end

  it 'sets HTTP_HOST without port for default ports' do
    request 'http://foo.com'
    last_request.env['HTTP_HOST'].must_equal 'foo.com'
    request 'http://foo.com:80'
    last_request.env['HTTP_HOST'].must_equal 'foo.com'
    request 'https://foo.com:443'
    last_request.env['HTTP_HOST'].must_equal 'foo.com'
  end

  it 'defaults the REMOTE_ADDR to 127.0.0.1' do
    request '/'
    last_request.env['REMOTE_ADDR'].must_equal '127.0.0.1'
  end

  it 'sets rack.test to true in the env' do
    request '/'
    last_request.env['rack.test'].must_equal true
  end

  it 'defaults to port 80' do
    request '/'
    last_request.env['SERVER_PORT'].must_equal '80'
  end

  it 'defaults to example.org' do
    request '/'
    last_request.env['SERVER_NAME'].must_equal 'example.org'
  end

  it 'yields the response to a given block' do
    request '/' do |response|
      response.must_be :ok?
    end
  end

  it 'supports sending :params for GET' do
    request '/', params: { 'foo' => 'bar' }
    last_request.GET['foo'].must_equal 'bar'
  end

  it 'supports sending :query_params for GET' do
    request '/', query_params: { 'foo' => 'bar' }
    last_request.GET['foo'].must_equal 'bar'
  end

  it 'supports sending both :params and :query_params for GET' do
    request '/', query_params: { 'foo' => 'bar' }, params: { 'foo2' => 'bar2' }
    last_request.GET['foo'].must_equal 'bar'
    last_request.GET['foo2'].must_equal 'bar2'
  end

  it 'supports sending :params for POST' do
    request '/', method: :post, params: { 'foo' => 'bar' }
    last_request.POST['foo'].must_equal 'bar'
  end

  it 'does not use multipart input for :params for POST by default' do
    request '/', method: :post, params: { 'foo' => 'bar' }
    last_request.POST['foo'].must_equal 'bar'
    last_request.env['rack.input'].rewind
    last_request.env['rack.input'].read.must_equal 'foo=bar'
  end

  it 'supports :multipart when using :params for POST to force multipart input' do
    request '/', method: :post, params: { 'foo' => 'bar' }, multipart: true
    last_request.POST['foo'].must_equal 'bar'
    last_request.env['rack.input'].rewind
    last_request.env['rack.input'].read.must_include 'content-disposition: form-data; name="foo"'
  end

  it 'supports multipart CONTENT_TYPE when using :params for POST to force multipart input' do
    request '/', method: :post, params: { 'foo' => 'bar' }, 'CONTENT_TYPE'=>'multipart/form-data'
    last_request.POST['foo'].must_equal 'bar'
    last_request.env['rack.input'].rewind
    last_request.env['rack.input'].read.must_include 'content-disposition: form-data; name="foo"'
  end

  it 'supports multipart CONTENT_TYPE when using empty :params for POST to be empty body' do
    request '/', method: :post, params: {}, 'CONTENT_TYPE'=>'multipart/form-data'
    last_request.POST.must_be_empty
    last_request.env['rack.input'].rewind
    last_request.env['rack.input'].read.must_be_empty
  end

  it 'supports sending :query_params for POST' do
    request '/', method: :post, query_params: { 'foo' => 'bar' }
    last_request.GET['foo'].must_equal 'bar'
  end

  it 'supports sending both :params and :query_params for POST' do
    request '/', method: :post, query_params: { 'foo' => 'bar' }, params: { 'foo2' => 'bar2' }
    last_request.GET['foo'].must_equal 'bar'
    last_request.POST['foo2'].must_equal 'bar2'
  end

  it "doesn't follow redirects by default" do
    request '/redirect'
    last_response.must_be :redirect?
    last_response.body.must_be_empty
  end

  it 'allows passing :input in for POSTs' do
    request '/', method: :post, input: 'foo'
    last_request.env['rack.input'].read.must_equal 'foo'
  end

  it 'converts method names to a uppercase strings' do
    request '/', method: :put
    last_request.env['REQUEST_METHOD'].must_equal 'PUT'
  end

  it 'prepends a slash to the URI path' do
    request 'foo'
    last_request.env['PATH_INFO'].must_equal '/foo'
  end

  it 'accepts params and builds query strings for GET requests' do
    request '/foo?baz=2', params: { foo: { bar: '1' } }
    last_request.GET.must_equal 'baz' => '2', 'foo' => { 'bar' => '1' }
  end

  it 'parses query strings with repeated variable names correctly' do
    request '/foo?bar=2&bar=3'
    last_request.GET.must_equal 'bar' => '3'
  end

  it 'accepts raw input in params for GET requests' do
    request '/foo?baz=2', params: 'foo[bar]=1'
    last_request.GET.must_equal 'baz' => '2', 'foo' => { 'bar' => '1' }
  end

  it 'does not rewrite a GET query string when :params is not supplied' do
    request '/foo?a=1&b=2&c=3&e=4&d=5+%20'
    last_request.query_string.must_equal 'a=1&b=2&c=3&e=4&d=5+%20'
  end

  it 'does not rewrite a GET query string when :params is empty' do
    request '/foo?a=1&b=2&c=3&e=4&d=5', params: {}
    last_request.query_string.must_equal 'a=1&b=2&c=3&e=4&d=5'
  end

  it 'does not overwrite multiple query string keys' do
    request '/foo?a=1&a=2', params: { bar: 1 }
    last_request.query_string.must_equal 'a=1&a=2&bar=1'
  end

  it 'accepts params and builds url encoded params for POST requests' do
    request '/foo', method: :post, params: { foo: { bar: '1' } }
    last_request.env['rack.input'].read.must_equal 'foo[bar]=1'
  end

  it 'accepts raw input in params for POST requests' do
    request '/foo', method: :post, params: 'foo[bar]=1'
    last_request.env['rack.input'].read.must_equal 'foo[bar]=1'
  end

  it 'supports a Rack::Response' do
    app = lambda do |_env|
      Rack::Response.new('', 200, {})
    end

    session = Rack::Test::Session.new(Rack::MockSession.new(app))
    session.request('/').must_be :ok?
  end

  closeable_body = Class.new do
    def initialize
      @closed = false
    end

    def each
      return if @closed
      yield 'Hello, World!'
    end

    def close
      @closed = true
    end

    def closed?
      @closed
    end
  end

  it "closes response's body when body responds_to?(:close)" do
    body = closeable_body.new

    app = lambda do |_env|
      [200, { 'content-type' => 'text/html', 'content-length' => '13' }, body]
    end

    session = Rack::Test::Session.new(Rack::MockSession.new(app))
    body.closed?.must_equal false
    session.request('/')
    body.closed?.must_equal true
  end

  it "closes response's body after iteration when body responds_to?(:close)" do
    body = nil
    app = lambda do |_env|
      [200, { 'content-type' => 'text/html', 'content-length' => '13' }, body = closeable_body.new]
    end

    session = Rack::Test::Session.new(Rack::MockSession.new(app))
    session.request('/')
    session.last_response.body.must_equal 'Hello, World!'
    body.closed?.must_equal true
  end

  it 'sends the input when input is given' do
    request '/', method: 'POST', input: 'foo'
    last_request.env['rack.input'].read.must_equal 'foo'
  end

  it 'does not send a multipart request when input is given' do
    request '/', method: 'POST', input: 'foo'
    last_request.env['CONTENT_TYPE'].wont_equal 'application/x-www-form-urlencoded'
  end

  it 'uses application/x-www-form-urlencoded as the CONTENT_TYPE for a POST specified with :method' do
    request '/', method: 'POST'
    last_request.env['CONTENT_TYPE'].must_equal 'application/x-www-form-urlencoded'
  end

  it 'uses application/x-www-form-urlencoded as the CONTENT_TYPE for a POST specified with REQUEST_METHOD' do
    request '/', 'REQUEST_METHOD' => 'POST'
    last_request.env['CONTENT_TYPE'].must_equal 'application/x-www-form-urlencoded'
  end

  it 'does not overwrite the CONTENT_TYPE when CONTENT_TYPE is specified in the env' do
    request '/', 'CONTENT_TYPE' => 'application/xml'
    last_request.env['CONTENT_TYPE'].must_equal 'application/xml'
  end

  it 'sets rack.url_scheme to https when the URL is https://' do
    request 'https://example.org/'
    last_request.env['rack.url_scheme'].must_equal 'https'
  end

  it 'sets SERVER_PORT to 443 when the URL is https://' do
    request 'https://example.org/'
    last_request.env['SERVER_PORT'].must_equal '443'
  end

  it 'sets HTTPS to on when the URL is https://' do
    request 'https://example.org/'
    last_request.env['HTTPS'].must_equal 'on'
  end

  it 'sends XMLHttpRequest for the X-Requested-With header if :xhr option is given' do
    request '/', xhr: true
    last_request.env['HTTP_X_REQUESTED_WITH'].must_equal 'XMLHttpRequest'
    last_request.must_be :xhr?
  end
end

describe 'Rack::Test::Session#header' do
  it 'sets a header to be sent with requests' do
    header 'User-Agent', 'Firefox'
    request '/'

    last_request.env['HTTP_USER_AGENT'].must_equal 'Firefox'
  end

  it 'sets a content-type to be sent with requests' do
    header 'content-type', 'application/json'
    request '/'

    last_request.env['CONTENT_TYPE'].must_equal 'application/json'
  end

  it 'sets a Host to be sent with requests' do
    header 'Host', 'www.example.ua'
    request '/'

    last_request.env['HTTP_HOST'].must_equal 'www.example.ua'
  end

  it 'persists across multiple requests' do
    header 'User-Agent', 'Firefox'
    request '/'
    request '/'

    last_request.env['HTTP_USER_AGENT'].must_equal 'Firefox'
  end

  it 'overwrites previously set headers' do
    header 'User-Agent', 'Firefox'
    header 'User-Agent', 'Safari'
    request '/'

    last_request.env['HTTP_USER_AGENT'].must_equal 'Safari'
  end

  it 'can be used to clear a header' do
    header 'User-Agent', 'Firefox'
    header 'User-Agent', nil
    request '/'

    last_request.env.wont_include 'HTTP_USER_AGENT'
  end

  it 'is overridden by headers sent during the request' do
    header 'User-Agent', 'Firefox'
    request '/', 'HTTP_USER_AGENT' => 'Safari'

    last_request.env['HTTP_USER_AGENT'].must_equal 'Safari'
  end
end

describe 'Rack::Test::Session#env' do
  it 'sets the env to be sent with requests' do
    env 'rack.session', csrf: 'token'
    request '/'

    last_request.env['rack.session'].must_equal csrf: 'token'
  end

  it 'persists across multiple requests' do
    env 'rack.session', csrf: 'token'
    request '/'
    request '/'

    last_request.env['rack.session'].must_equal csrf: 'token'
  end

  it 'overwrites previously set envs' do
    env 'rack.session', csrf: 'token'
    env 'rack.session', some: :thing
    request '/'

    last_request.env['rack.session'].must_equal some: :thing
  end

  it 'can be used to clear a env' do
    env 'rack.session', csrf: 'token'
    env 'rack.session', nil
    request '/'

    last_request.env.wont_include 'X_CSRF_TOKEN'
  end

  it 'is overridden by envs sent during the request' do
    env 'rack.session', csrf: 'token'
    request '/', 'rack.session' => { some: :thing }

    last_request.env['rack.session'].must_equal some: :thing
  end
end

describe 'Rack::Test::Session#basic_authorize' do
  it 'sets the HTTP_AUTHORIZATION header' do
    basic_authorize 'bryan', 'secret'
    request '/'

    last_request.env['HTTP_AUTHORIZATION'].must_equal 'Basic YnJ5YW46c2VjcmV0'
  end

  it 'includes the header for subsequent requests' do
    basic_authorize 'bryan', 'secret'
    request '/'
    request '/'

    last_request.env['HTTP_AUTHORIZATION'].must_equal 'Basic YnJ5YW46c2VjcmV0'
  end
end

describe 'Rack::Test::Session#follow_redirect!' do
  it 'follows redirects' do
    get '/redirect'
    follow_redirect!

    last_response.wont_be :redirect?
    last_response.body.must_equal "You've been redirected, session {} with options {}"
    last_request.env['HTTP_REFERER'].must_equal 'http://example.org/redirect'
  end

  it 'follows absolute redirects' do
    get '/absolute/redirect'
    last_response.headers['location'].must_equal 'https://www.google.com'
    follow_redirect!
    last_request.env['PATH_INFO'].must_equal '/'
    last_request.env['HTTP_HOST'].must_equal 'www.google.com'
    last_request.env['HTTPS'].must_equal 'on'
  end

  it 'follows nested redirects' do
    get '/nested/redirect'

    last_response.headers['location'].must_equal 'redirected'
    follow_redirect!

    last_response.must_be :ok?
    last_request.env['PATH_INFO'].must_equal '/nested/redirected'
  end

  it 'does not include params when following the redirect' do
    get '/redirect', 'foo' => 'bar'
    follow_redirect!

    last_request.GET.must_be_empty
  end

  it 'includes session when following the redirect' do
    get '/redirect', {}, 'rack.session' => { 'foo' => 'bar' }
    follow_redirect!

    last_response.body.must_match(/session \{"foo" ?=> ?"bar"\}/)
  end

  it 'includes session options when following the redirect' do
    get '/redirect', {}, 'rack.session.options' => { 'foo' => 'bar' }
    follow_redirect!

    last_response.body.must_match(/session \{\} with options \{"foo" ?=> ?"bar"\}/)
  end

  it 'raises an error if the last_response is not set' do
    proc do
      follow_redirect!
    end.must_raise(Rack::Test::Error)
  end

  it 'raises an error if the last_response is not a redirect' do
    get '/'

    proc do
      follow_redirect!
    end.must_raise(Rack::Test::Error)
  end

  it 'keeps the original method and params for HTTP 307' do
    post '/redirect?status=307', foo: 'bar'
    follow_redirect!
    last_response.body.must_include 'post'
    last_response.body.must_include 'foo'
    last_response.body.must_include 'bar'
  end
end

describe 'Rack::Test::Session#last_request' do
  it 'returns the most recent request' do
    request '/'
    last_request.env['PATH_INFO'].must_equal '/'
  end

  it 'raises an error if no requests have been issued' do
    proc do
      last_request
    end.must_raise(Rack::Test::Error)
  end
end

describe 'Rack::Test::Session#last_response' do
  it 'returns the most recent response' do
    request '/'
    last_response['content-type'].must_equal 'text/html;charset=utf-8'
  end

  it 'raises an error if no requests have been issued' do
    proc do
      last_response
    end.must_raise(Rack::Test::Error)
  end
end

describe 'Rack::Test::Session#after_request' do
  it 'runs callbacks after each request' do
    ran = false

    rack_mock_session.after_request do
      ran = true
    end

    get '/'
    ran.must_equal true
  end

  it 'runs multiple callbacks' do
    count = 0

    2.times do
      rack_mock_session.after_request do
        count += 1
      end
    end

    get '/'
    count.must_equal 2
  end
end

verb_examples = Module.new do
  extend Minitest::Spec::DSL

  it 'requests the URL using VERB' do
    public_send(verb, '/')

    last_request.env['REQUEST_METHOD'].must_equal verb.to_s.upcase
    last_response.must_be :ok?
  end

  it 'uses the provided env' do
    public_send(verb, '/', {}, 'HTTP_USER_AGENT' => 'Rack::Test')
    last_request.env['HTTP_USER_AGENT'].must_equal 'Rack::Test'
  end

  it 'yields the response to a given block' do
    yielded = false

    public_send(verb, '/') do |response|
      response.must_be :ok?
      yielded = true
    end

    yielded.must_equal true
  end

  it 'sets the HTTP_HOST header with port' do
    public_send(verb, 'http://example.org:8080/uri')
    last_request.env['HTTP_HOST'].must_equal 'example.org:8080'
  end

  it 'sets the HTTP_HOST header without port' do
    public_send(verb, '/uri')
    last_request.env['HTTP_HOST'].must_equal 'example.org'
  end

  it 'sends XMLHttpRequest for the X-Requested-With header' do
    public_send(verb, '/', {}, xhr: true)
    last_request.env['HTTP_X_REQUESTED_WITH'].must_equal 'XMLHttpRequest'
    last_request.must_be :xhr?
  end
end

non_get_verb_examples = Module.new do
  extend Minitest::Spec::DSL

  it 'sets CONTENT_TYPE to application/x-www-form-urlencoded when params are not provided' do
    public_send(verb, '/')
    last_request.env['CONTENT_TYPE'].must_equal 'application/x-www-form-urlencoded'
  end

  it 'sets CONTENT_LENGTH to zero when params are not provided' do
    public_send(verb, '/')
    last_request.env['CONTENT_LENGTH'].must_equal '0'
  end

  it 'sets CONTENT_TYPE to application/x-www-form-urlencoded when params are explicitly set to nil' do
    public_send(verb, '/', nil)
    last_request.env['CONTENT_TYPE'].must_equal 'application/x-www-form-urlencoded'
  end

  it 'sets CONTENT_LENGTH to 0 when params are explicitly set to nil' do
    public_send(verb, '/', nil)
    last_request.env['CONTENT_LENGTH'].must_equal '0'
  end
end

describe 'Rack::Test::Session#get' do
  def verb; :get; end
  include verb_examples

  # This is not actually explicitly stated in the relevant RFCs;
  # https://tools.ietf.org/html/rfc7231#section-3.1.1.5
  # ...but e.g. curl do not set it for GET requests.
  it 'does not set CONTENT_TYPE when params are not provided' do
    get '/'
    last_request.env.wont_include 'CONTENT_TYPE'
  end

  it 'sets CONTENT_LENGTH to zero or does not set it when params are not provided' do
    get '/'
    ['0', nil].must_include last_request.env['CONTENT_LENGTH']
  end

  it 'does not set CONTENT_TYPE twhen params are explicitly set to nil' do
    get '/', nil
    last_request.env.wont_include 'CONTENT_TYPE'
  end

  it 'sets CONTENT_LENGTH to zero or does not set it when params are explicitly set to nil' do
    get '/', nil
    ['0', nil].must_include last_request.env['CONTENT_LENGTH']
  end

  it 'uses the provided params hash' do
    get '/', foo: 'bar'
    last_request.GET.must_equal 'foo' => 'bar'
  end

  it 'sends params with parens in names' do
    get '/', 'foo(1i)' => 'bar'
    last_request.GET['foo(1i)'].must_equal 'bar'
  end

  it 'supports params with encoding sensitive names' do
    get '/', 'foo bar' => 'baz'
    last_request.GET['foo bar'].must_equal 'baz'
  end

  it 'supports params with nested encoding sensitive names' do
    get '/', 'boo' => { 'foo bar' => 'baz' }
    last_request.GET.must_equal 'boo' => { 'foo bar' => 'baz' }
  end

  it 'accepts params in the path' do
    get '/?foo=bar'
    last_request.GET.must_equal 'foo' => 'bar'
  end
end

describe 'Rack::Test::Session#head' do
  def verb; :head; end
  include verb_examples
  include non_get_verb_examples
end

describe 'Rack::Test::Session#post' do
  def verb; :post; end
  include verb_examples
  include non_get_verb_examples

  it 'uses the provided params hash' do
    post '/', foo: 'bar'
    last_request.POST.must_equal 'foo' => 'bar'
  end

  it 'supports params with encoding sensitive names' do
    post '/', 'foo bar' => 'baz'
    last_request.POST['foo bar'].must_equal 'baz'
  end

  it 'uses application/x-www-form-urlencoded as the default CONTENT_TYPE' do
    post '/'
    last_request.env['CONTENT_TYPE'].must_equal 'application/x-www-form-urlencoded'
  end

  it 'sets the CONTENT_LENGTH' do
    post '/', foo: 'bar'
    last_request.env['CONTENT_LENGTH'].must_equal '7'
  end

  it 'accepts a body' do
    post '/', 'Lobsterlicious!'
    last_request.body.read.must_equal 'Lobsterlicious!'
  end

  it 'does not overwrite the CONTENT_TYPE when CONTENT_TYPE is specified in the env' do
    post '/', {}, 'CONTENT_TYPE' => 'application/xml'
    last_request.env['CONTENT_TYPE'].must_equal 'application/xml'
  end
end

describe 'Rack::Test::Session#put' do
  def verb; :put; end
  include verb_examples
  include non_get_verb_examples

  it 'accepts a body' do
    put '/', 'Lobsterlicious!'
    last_request.body.read.must_equal 'Lobsterlicious!'
  end
end

describe 'Rack::Test::Session#patch' do
  def verb; :patch; end
  include verb_examples
  include non_get_verb_examples

  it 'accepts a body' do
    patch '/', 'Lobsterlicious!'
    last_request.body.read.must_equal 'Lobsterlicious!'
  end
end

describe 'Rack::Test::Session#delete' do
  def verb; :delete; end
  include verb_examples
  include non_get_verb_examples

  it 'accepts a body' do
    patch '/', 'Lobsterlicious!'
    last_request.body.read.must_equal 'Lobsterlicious!'
  end

  it 'uses the provided params hash' do
    delete '/', foo: 'bar'
    last_request.GET.must_equal({})
    last_request.POST.must_equal 'foo' => 'bar'
    last_request.body.rewind
    last_request.body.read.must_equal 'foo=bar'
  end

  it 'accepts params in the path' do
    delete '/?foo=bar'
    last_request.GET.must_equal 'foo' => 'bar'
    last_request.POST.must_equal({})
    last_request.body.read.must_equal ''
  end

  it 'accepts a body' do
    delete '/', 'Lobsterlicious!'
    last_request.GET.must_equal({})
    last_request.body.read.must_equal 'Lobsterlicious!'
  end
end

describe 'Rack::Test::Session#options' do
  def verb; :options; end
  include verb_examples
  include non_get_verb_examples
end

describe 'Rack::Test::Session#custom_request' do
  it 'requests the URL using the given' do
    custom_request('link', '/')

    last_request.env['REQUEST_METHOD'].must_equal 'LINK'
    last_response.must_be :ok?
  end

  it 'uses the provided env' do
    custom_request('link', '/', {}, 'HTTP_USER_AGENT' => 'Rack::Test')
    last_request.env['HTTP_USER_AGENT'].must_equal 'Rack::Test'
  end

  it 'yields the response to a given block' do
    yielded = false

    custom_request('link', '/') do |response|
      response.must_be :ok?
      yielded = true
    end

    yielded.must_equal true
  end

  it 'sets the HTTP_HOST header with port' do
    custom_request('link', 'http://example.org:8080/uri')
    last_request.env['HTTP_HOST'].must_equal 'example.org:8080'
  end

  it 'sets the HTTP_HOST header without port' do
    custom_request('link', '/uri')
    last_request.env['HTTP_HOST'].must_equal 'example.org'
  end

  it 'sends XMLHttpRequest for the X-Requested-With header for an XHR' do
    custom_request('link', '/', {}, xhr: true)
    last_request.env['HTTP_X_REQUESTED_WITH'].must_equal 'XMLHttpRequest'
    last_request.must_be :xhr?
  end
end

describe 'Rack::Test::Session#restore_state' do
  it 'restores last request, last response, cookies, and hooks after block' do
    after_request = []
    current_session.after_request{after_request << 1}

    get('/')
    request = last_request
    response = last_response
    current_session.cookie_jar['simple'].must_be_nil
    after_request.must_equal [1]

    current_session.restore_state do
      current_session.after_request{after_request << 2}
      get('/cookies/set-simple?value=foo')
      current_session.cookie_jar['simple'].must_equal 'foo'

      last_request.wont_be_same_as request
      last_response.wont_be_same_as response
      after_request.must_equal [1, 1, 2]
    end

    last_request.must_be_same_as request
    last_response.must_be_same_as response
    current_session.cookie_jar['simple'].must_be_nil

    get('/')
    after_request.must_equal [1, 1, 2, 1]
  end
end