-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathconnection.rb
More file actions
817 lines (632 loc) · 22.1 KB
/
connection.rb
File metadata and controls
817 lines (632 loc) · 22.1 KB
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
# frozen_string_literal: true
# Released under the MIT License.
# Copyright, 2019-2025, by Samuel Williams.
# Copyright, 2019, by Brian Morearty.
# Copyright, 2020, by Bruno Sutic.
# Copyright, 2024, by Thomas Morgan.
require "protocol/http1/connection"
require "protocol/http/body/buffered"
require "protocol/http/body/writable"
require "connection_context"
describe Protocol::HTTP1::Connection do
include_context ConnectionContext
with "#read_line?" do
it "reads a line from the stream" do
client.stream.write "GET / HTTP/1.1\r\nHost: localhost\r\n\r\n"
client.stream.close
expect(server.read_line?).to be == "GET / HTTP/1.1"
expect(server.read_line?).to be == "Host: localhost"
expect(server.read_line?).to be == ""
expect(server.read_line?).to be_nil
end
it "raises LineLengthError if line is too long" do
# We create a thread since the write is liable to block until we try to read:
thread = Thread.new do
client.stream.write "GET / HTTP/1.#{"1" * 10000}"
client.stream.close
end
expect do
server.read_line?
end.to raise_exception(Protocol::HTTP1::LineLengthError)
ensure
thread.join
end
it "raises ProtocolError if line is not terminated properly" do
client.stream.write "GET / HTTP/1.1\r"
client.stream.close
expect do
server.read_line?
end.to raise_exception(Protocol::HTTP1::ProtocolError)
end
it "returns nil on Errno::ECONNRESET" do
expect(server.stream).to receive(:gets).and_raise(Errno::ECONNRESET)
expect(server.read_line?).to be_nil
end
end
with "#read_request" do
it "reads request without body" do
client.stream.write "GET / HTTP/1.1\r\nHost: localhost\r\nContent-Length: 0\r\n\r\n"
client.stream.close
expect(server).to receive(:read_request_line)
authority, method, target, version, headers, body = server.read_request
expect(authority).to be == "localhost"
expect(method).to be == "GET"
expect(target).to be == "/"
expect(version).to be == "HTTP/1.1"
expect(headers).to be == {}
expect(body).to be_nil
expect(server).to be(:persistent)
end
it "reads request without body after closing connection" do
client.stream.write "GET / HTTP/1.1\r\nHost: localhost\r\nAccept: */*\r\nHeader-0: value 1\r\n\r\n"
client.stream.close
authority, method, target, version, headers, body = server.read_request
expect(authority).to be == "localhost"
expect(method).to be == "GET"
expect(target).to be == "/"
expect(version).to be == "HTTP/1.1"
expect(headers).to be == {"accept" => ["*/*"], "header-0" => ["value 1"]}
expect(body).to be_nil
expect(server).to be(:persistent)
end
it "reads request with fixed body" do
client.stream.write "GET / HTTP/1.1\r\nHost: localhost\r\nContent-Length: 11\r\n\r\nHello World"
client.stream.close
authority, method, target, version, headers, body = server.read_request
expect(authority).to be == "localhost"
expect(method).to be == "GET"
expect(target).to be == "/"
expect(version).to be == "HTTP/1.1"
expect(headers).to be == {}
expect(body.join).to be == "Hello World"
expect(server).to be(:persistent)
end
it "reads request with chunked body" do
client.stream.write "GET / HTTP/1.1\r\nHost: localhost\r\nTransfer-Encoding: chunked\r\n\r\nb\r\nHello World\r\n0\r\n\r\n"
client.stream.close
authority, method, target, version, headers, body = server.read_request
expect(authority).to be == "localhost"
expect(method).to be == "GET"
expect(target).to be == "/"
expect(version).to be == "HTTP/1.1"
expect(headers).to be == {}
expect(body.join).to be == "Hello World"
expect(server).to be(:persistent?, version, method, headers)
expect(server).to be(:persistent)
end
it "reads request with CONNECT method" do
client.stream.write "CONNECT localhost:443 HTTP/1.1\r\nHost: localhost\r\n\r\n"
client.stream.close
authority, method, target, version, headers, body = server.read_request
expect(authority).to be == "localhost"
expect(method).to be == "CONNECT"
expect(target).to be == "localhost:443"
expect(version).to be == "HTTP/1.1"
expect(headers).to be == {}
expect(body).to be_a(Protocol::HTTP1::Body::Remainder)
expect(server).not.to be(:persistent?, version, method, headers)
end
it "fails with broken request" do
client.stream.write "Accept: */*\r\nHost: localhost\r\nContent-Length: 0\r\n\r\n"
client.stream.close
expect do
server.read_request
end.to raise_exception(Protocol::HTTP1::InvalidRequest)
end
it "fails with missing version" do
client.stream.write "GET foo\r\n"
client.stream.close
expect do
server.read_request
end.to raise_exception(Protocol::HTTP1::InvalidRequest)
end
it "yields to block" do
client.stream.write "GET / HTTP/1.1\r\nHost: localhost\r\nContent-Length: 0\r\n\r\n"
client.stream.close
result = server.read_request do |authority, method, target, version, headers, body|
expect(authority).to be == "localhost"
expect(method).to be == "GET"
expect(target).to be == "/"
expect(version).to be == "HTTP/1.1"
expect(headers).to be == {}
expect(body).to be_nil
:yielded
end
expect(result).to be == :yielded
end
end
with "#write_response" do
it "fails to write a response with invalid header name" do
server.open!
invalid_header_names = [
"foo bar",
"foo:bar",
"foo: bar",
"foo bar:baz",
'foo\r\nbar',
'foo\nbar',
'foo\rbar',
]
invalid_header_names.each do |name|
expect(name).not.to be =~ Protocol::HTTP1::VALID_FIELD_NAME
expect do
server.write_response("HTTP/1.1", 200, {name => "baz"}, [])
end.to raise_exception(Protocol::HTTP1::BadHeader)
end
end
end
with "#write_interim_response" do
it "can write iterm response" do
server.open!
server.write_interim_response("HTTP/1.1", 100, {})
server.close
expect(client.stream.read).to be == "HTTP/1.1 100 Continue\r\n\r\n"
end
end
with "#persistent?" do
describe "HTTP 1.0" do
it "should not be persistent by default" do
expect(server).not.to be(:persistent?, "HTTP/1.0", "GET", {})
end
it "should be persistent if connection: keep-alive is set" do
headers = Protocol::HTTP::Headers[
"connection" => "keep-alive"
]
expect(server).to be(:persistent?, "HTTP/1.0", "GET", headers)
end
it "should allow case-insensitive 'connection' value" do
headers = Protocol::HTTP::Headers[
"connection" => "Keep-Alive"
]
expect(server).to be(:persistent?, "HTTP/1.0", "GET", headers)
end
end
describe "HTTP 1.1" do
it "should be persistent by default" do
expect(server).to be(:persistent?, "HTTP/1.1", "GET", {})
end
it "should not be persistent if connection: close is set" do
headers = Protocol::HTTP::Headers[
"connection" => "close"
]
expect(server).not.to be(:persistent?, "HTTP/1.1", "GET", headers)
end
it "should allow case-insensitive 'connection' value" do
headers = Protocol::HTTP::Headers[
"connection" => "Close"
]
expect(server).not.to be(:persistent?, "HTTP/1.1", "GET", headers)
end
end
end
with "#read_response" do
it "should read successful response" do
client.open!
server.stream.write("HTTP/1.1 200 Hello\r\nContent-Length: 0\r\n\r\n")
server.stream.close
expect(client).to receive(:read_response_line)
version, status, reason, headers, body = client.read_response("GET")
expect(version).to be == "HTTP/1.1"
expect(status).to be == 200
expect(reason).to be == "Hello"
expect(headers).to be == {}
expect(body).to be_nil
end
it "should yield to block" do
client.open!
server.stream.write("HTTP/1.1 200 Hello\r\nContent-Length: 0\r\n\r\n")
server.stream.close
result = client.read_response("GET") do |version, status, reason, headers, body|
expect(version).to be == "HTTP/1.1"
expect(status).to be == 200
expect(reason).to be == "Hello"
expect(headers).to be == {}
expect(body).to be_nil
:yielded
end
expect(result).to be == :yielded
end
end
with "#read_response_body" do
with "GET" do
it "should ignore body for informational responses" do
body = client.read_response_body("GET", 100, {"content-length" => "10"})
expect(body).to be_nil
expect(client.persistent).to be == true
end
it "should ignore body for no content responses" do
expect(client.read_response_body("GET", 204, {})).to be_nil
end
it "should handle non-chunked transfer-encoding" do
body = client.read_response_body("GET", 200, {"transfer-encoding" => ["identity"]})
expect(body).to be_a(::Protocol::HTTP1::Body::Remainder)
expect(client.persistent).to be == false
end
it "should be an error if both transfer-encoding and content-length is set" do
expect do
client.read_response_body("GET", 200, {"content-length" => "10", "transfer-encoding" => ["chunked"]})
end.to raise_exception(Protocol::HTTP1::BadRequest)
end
end
with "HEAD" do
it "can read length of head response" do
client.open!
body = client.read_response_body("HEAD", 200, {"content-length" => "3773"})
expect(body).to be_a ::Protocol::HTTP::Body::Head
expect(body.length).to be == 3773
expect(body.read).to be_nil
end
it "ignores zero length body" do
body = client.read_response_body("HEAD", 200, {"content-length" => "0"})
expect(body).to be_nil
end
it "raises error if content-length is invalid" do
expect do
client.read_response_body("HEAD", 200, {"content-length" => "foo"})
end.to raise_exception(Protocol::HTTP1::BadRequest)
end
end
with "CONNECT" do
it "should ignore body for informational responses" do
expect(client.read_response_body("CONNECT", 200, {})).to be_a(Protocol::HTTP1::Body::Remainder)
end
end
end
with "#write_chunked_body" do
let(:chunks) {["Hello", "World"]}
let(:body) {::Protocol::HTTP::Body::Buffered.wrap(chunks)}
before do
server.open!
client.open!
end
it "can generate and read chunked response" do
server.write_chunked_body(body, false)
server.close
headers = client.read_headers
expect(headers).to be == [["transfer-encoding", "chunked"]]
body = client.read_body(headers, false)
expect(body.join).to be == chunks.join
end
it "can generate and read trailer" do
chunks = ["Hello", "World"]
server.write_headers({"trailer" => "etag"})
server.write_chunked_body(body, false, {"etag" => "abcd"})
server.close
headers = client.read_headers
expect(headers).to be == [["trailer", "etag"], ["transfer-encoding", "chunked"]]
body = client.read_body(headers, false)
expect(body.join).to be == chunks.join
expect(headers).to have_keys("etag")
end
with "HEAD request" do
it "can generate and read chunked response" do
server.write_chunked_body(body, true)
server.close
headers = client.read_headers
expect(headers).to be == [["transfer-encoding", "chunked"]]
body = client.read_response_body("HEAD", 200, headers)
expect(body).to be_nil
end
end
end
with "#write_fixed_length_body" do
let(:chunks) {["Hello", "World"]}
let(:body) {::Protocol::HTTP::Body::Buffered.wrap(chunks)}
before do
server.open!
client.open!
end
it "can generate a valid response" do
server.write_fixed_length_body(body, 10, false)
server.close
headers = client.read_headers
expect(headers).to be == [["content-length", "10"]]
body = client.read_body(headers, false)
expect(body.join).to be == chunks.join
end
with "a length smaller than stream size" do
it "raises an error" do
expect do
server.write_fixed_length_body(body, 100, false)
end.to raise_exception(Protocol::HTTP1::ContentLengthError)
end
end
with "a length larger than stream size" do
it "raises an error" do
expect do
server.write_fixed_length_body(body, 1, false)
end.to raise_exception(Protocol::HTTP1::ContentLengthError)
end
end
with "HEAD request" do
it "can generate a valid response" do
server.write_fixed_length_body(body, 10, true)
server.close
headers = client.read_headers
expect(headers).to be == [["content-length", "10"]]
body = client.read_response_body("HEAD", 200, headers)
expect(body).to be_a(Protocol::HTTP::Body::Head)
expect(body.length).to be == 10
expect(body.read).to be_nil
end
end
end
with "#write_upgrade_body" do
let(:body) {::Protocol::HTTP::Body::Buffered.new(["Hello ", "World!"])}
before do
server.open!
client.open!
end
it "can generate and read upgrade response" do
server.write_upgrade_body("text", body)
server.close
headers = client.read_headers
expect(headers).to have_keys(
"connection" => be == ["upgrade"],
"upgrade" => be == ["text"]
)
body = client.read_body(headers, true)
expect(body.join).to be == "Hello World!"
end
end
with "#write_tunnel_body" do
let(:body) {::Protocol::HTTP::Body::Buffered.new(["Hello ", "World!"])}
before do
server.open!
client.open!
end
it "can generate and read tunnel response" do
server.write_tunnel_body("HTTP/1.1", body)
server.close
headers = client.read_headers
expect(headers).to have_keys(
"connection" => be == ["close"],
)
body = client.read_body(headers, true)
expect(body.join).to be == "Hello World!"
end
end
with "#write_body_and_close" do
let(:body) {::Protocol::HTTP::Body::Buffered.new(["Hello ", "World!"])}
before do
server.open!
client.open!
end
it "can generate and write response" do
server.write_body_and_close(body, false)
server.close
headers = client.read_headers
expect(headers).to be(:empty?)
body = client.read_body(headers, true)
expect(body.join).to be == "Hello World!"
end
with "HEAD request" do
it "can generate and write response" do
server.write_body_and_close(body, true)
server.close
headers = client.read_headers
expect(headers).to be(:empty?)
body = client.read_response_body("HEAD", 200, headers)
expect(body).to be_nil
end
end
end
with "#write_body" do
let(:body) {Protocol::HTTP::Body::Buffered.new}
before do
server.open!
end
it "can write empty body" do
expect(body).to receive(:empty?).and_return(true)
expect(body).to receive(:length).and_return(false)
expect(server).to receive(:write_empty_body)
server.write_body("HTTP/1.0", body)
headers = client.read_headers
expect(headers).to be == [["connection", "keep-alive"], ["content-length", "0"]]
body = client.read_body(headers, true)
expect(body).to be_nil
end
it "can write nil body" do
expect(server).to receive(:write_empty_body)
server.write_body("HTTP/1.0", nil)
server.close
headers = client.read_headers
expect(headers).to be == [["connection", "keep-alive"], ["content-length", "0"]]
body = client.read_body(headers, true)
expect(body).to be_nil
end
it "can write fixed length body" do
expect(body).to receive(:length).and_return(1024)
expect(server).to receive(:write_fixed_length_body).and_return(true)
server.write_body("HTTP/1.0", body)
end
it "can write chunked body" do
expect(server.persistent).to be == true
expect(body).to receive(:empty?).and_return(false)
expect(body).to receive(:length).and_return(nil)
expect(server).to receive(:write_chunked_body)
server.write_body("HTTP/1.1", body)
end
it "can write fixed length body for HTTP/1.1" do
expect(body).to receive(:length).and_return(1024)
expect(server).to receive(:write_fixed_length_body).and_return(true)
server.write_body("HTTP/1.1", body)
end
it "can write closed body" do
expect(server.persistent).to be == true
expect(body).to receive(:empty?).and_return(false)
expect(body).to receive(:length).and_return(nil)
expect(server).to receive(:write_body_and_close)
server.write_body("HTTP/1.0", body)
end
end
with "bad requests" do
it "should fail with negative content length" do
client.stream.write "GET / HTTP/1.1\r\nHost: localhost\r\nContent-Length: -1\r\n\r\nHello World"
client.stream.close
expect do
server.read_request
end.to raise_exception(Protocol::HTTP1::BadRequest)
end
it "should fail with invalid headers" do
client.stream.write "GET / HTTP/1.1\r\nHost: \000localhost\r\n\r\nHello World"
client.stream.close
expect do
server.read_request
end.to raise_exception(Protocol::HTTP1::BadHeader)
end
end
with "bad responses" do
it 'should fail if headers contain \r characters' do
expect do
server.write_headers(
[["id", "5\rSet-Cookie: foo-bar"]]
)
end.to raise_exception(Protocol::HTTP1::BadHeader)
end
it 'should fail if headers contain \n characters' do
expect do
server.write_headers(
[["id", "5\nSet-Cookie: foo-bar"]]
)
end.to raise_exception(Protocol::HTTP1::BadHeader)
end
end
it "enters half-closed (local) state after writing response body" do
expect(client).to be(:idle?)
client.write_request("localhost", "GET", "/", "HTTP/1.1", {})
expect(client).to be(:open?)
body = Protocol::HTTP::Body::Buffered.new(["Hello World"])
client.write_body("HTTP/1.1", body)
expect(client).to be(:half_closed_local?)
expect(server).to be(:idle?)
request = server.read_request
server.write_response("HTTP/1.1", 200, {}, nil)
server.write_body("HTTP/1.1", nil)
expect(server).to be(:half_closed_local?)
end
it "returns back to idle state" do
expect(client).to be(:idle?)
client.write_request("localhost", "GET", "/", "HTTP/1.1", {})
expect(client).to be(:open?)
client.write_body("HTTP/1.1", nil)
expect(client).to be(:half_closed_local?)
expect(server).to be(:idle?)
request = server.read_request
expect(request).to be == ["localhost", "GET", "/", "HTTP/1.1", {}, nil]
expect(server).to be(:half_closed_remote?)
server.write_response("HTTP/1.1", 200, {}, [])
server.write_body("HTTP/1.1", nil)
expect(server).to be(:idle?)
response = client.read_response("GET")
expect(client).to be(:idle?)
end
it "transitions to the closed state when using connection: close response body" do
expect(client).to be(:idle?)
client.write_request("localhost", "GET", "/", "HTTP/1.0", {})
expect(client).to be(:open?)
client.write_body("HTTP/1.0", nil)
expect(client).to be(:half_closed_local?)
expect(server).to be(:idle?)
request = server.read_request
expect(server).to be(:half_closed_remote?)
server.write_response("HTTP/1.0", 200, {}, [])
# Length is unknown, and HTTP/1.0 does not support chunked encoding, so this will close the connection:
body = Protocol::HTTP::Body::Writable.new
body.write "Hello World"
body.close_write
server.write_body("HTTP/1.0", body)
expect(server).not.to be(:persistent)
expect(server).to be(:closed?)
response = client.read_response("GET")
body = response.last
expect(body.join).to be == "Hello World"
expect(client).to be(:closed?)
end
it "can't write a request in the closed state" do
client.state = :closed
expect do
client.write_request("localhost", "GET", "/", "HTTP/1.0", {})
end.to raise_exception(Protocol::HTTP1::ProtocolError)
end
it "can't read a response in the closed state" do
client.state = :closed
expect do
client.read_response("GET")
end.to raise_exception(Protocol::HTTP1::ProtocolError)
end
it "can't write a response in the closed state" do
server.state = :closed
expect do
server.write_response("HTTP/1.0", 200, {}, nil)
end.to raise_exception(Protocol::HTTP1::ProtocolError)
end
it "can't read a request in the closed state" do
server.state = :closed
expect do
server.read_request
end.to raise_exception(Protocol::HTTP1::ProtocolError)
end
it "can't write response body without writing response" do
expect do
server.write_body("HTTP/1.0", nil)
end.to raise_exception(Protocol::HTTP1::ProtocolError)
end
it "can't write request body without writing request" do
expect do
client.write_body("HTTP/1.0", nil)
end.to raise_exception(Protocol::HTTP1::ProtocolError)
end
it "can't read request body without reading request" do
# Fake empty chunked encoded body:
client.stream.write("0\r\n\r\n")
body = server.read_request_body("POST", {"transfer-encoding" => ["chunked"]})
expect(body).to be_a(Protocol::HTTP1::Body::Chunked)
expect do
body.join
end.to raise_exception(Protocol::HTTP1::ProtocolError)
end
it "can't write interim response in the closed state" do
server.state = :closed
expect do
server.write_interim_response("HTTP/1.0", 100, {})
end.to raise_exception(Protocol::HTTP1::ProtocolError)
end
with "#close" do
it "enters closed state" do
server.close
expect(server).to be(:closed?)
end
it "enters closed state when given an error" do
expect(server).to be(:persistent)
error = Protocol::HTTP1::InvalidRequest.new("Invalid request")
expect(server).to receive(:closed).with(error)
server.close(error)
expect(server).to be(:closed?)
end
it "can close the body before client is closed" do
client.open!
# Simulate a CONNECT request, which yields a Body::Remainder:
server.stream.write("HTTP/1.1 200 Connection Established\r\n\r\n")
server.stream.close
version, status, reason, headers, body = client.read_response("CONNECT")
expect(body).to be_a(Protocol::HTTP1::Body::Remainder)
# Close the body before closing the client:
body.close
# Now, close the client:
client.close
end
it "allows closing remainder body after client is closed" do
client.open!
# Simulate a CONNECT request, which yields a Body::Remainder:
server.stream.write("HTTP/1.1 200 Connection Established\r\n\r\n")
server.stream.close
version, status, reason, headers, body = client.read_response("CONNECT")
expect(body).to be_a(Protocol::HTTP1::Body::Remainder)
# Close the client before reading/closing the body:
client.close
# Now, close the body, which should not raise:
body.close
end
end
end