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 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871
|
require 'helper'
describe EventMachine::HttpRequest do
def failed(http=nil)
EventMachine.stop
http ? fail(http.error) : fail
end
it "should perform successful GET" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/').get
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should match(/Hello/)
EventMachine.stop
}
}
end
it "should perform successful GET with a URI passed as argument" do
EventMachine.run {
uri = URI.parse('http://127.0.0.1:8090/')
http = EventMachine::HttpRequest.new(uri).get
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should match(/Hello/)
EventMachine.stop
}
}
end
it "should succeed GET on missing path" do
EventMachine.run {
lambda {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090').get
http.callback {
http.response.should match(/Hello/)
EventMachine.stop
}
}.should_not raise_error
}
end
it "should raise error on invalid URL" do
EventMachine.run {
lambda {
EventMachine::HttpRequest.new('random?text').get
}.should raise_error
EM.stop
}
end
it "should perform successful HEAD with a URI passed as argument" do
EventMachine.run {
uri = URI.parse('http://127.0.0.1:8090/')
http = EventMachine::HttpRequest.new(uri).head
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should == ""
EventMachine.stop
}
}
end
it "should perform successful DELETE with a URI passed as argument" do
EventMachine.run {
uri = URI.parse('http://127.0.0.1:8090/')
http = EventMachine::HttpRequest.new(uri).delete
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should == ""
EventMachine.stop
}
}
end
it "should return 404 on invalid path" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/fail').get
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 404
EventMachine.stop
}
}
end
it "should return HTTP reason" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/fail').get
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 404
http.response_header.http_reason.should == 'Not Found'
EventMachine.stop
}
}
end
it "should return HTTP reason 'unknown' on a non-standard status code" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/fail_with_nonstandard_response').get
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 420
http.response_header.http_reason.should == 'unknown'
EventMachine.stop
}
}
end
it "should build query parameters from Hash" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/').get :query => {:q => 'test'}
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should match(/test/)
EventMachine.stop
}
}
end
it "should pass query parameters string" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/').get :query => "q=test"
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should match(/test/)
EventMachine.stop
}
}
end
it "should encode an array of query parameters" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo_query').get :query => {:hash =>['value1','value2']}
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should match(/hash\[\]=value1&hash\[\]=value2/)
EventMachine.stop
}
}
end
it "should perform successful PUT" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/').put :body => "data"
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should match(/data/)
EventMachine.stop
}
}
end
it "should perform successful POST" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/').post :body => "data"
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should match(/data/)
EventMachine.stop
}
}
end
it "should perform successful PATCH" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/').patch :body => "data"
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should match(/data/)
EventMachine.stop
}
}
end
it "should escape body on POST" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/').post :body => {:stuff => 'string&string'}
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should == "stuff=string%26string"
EventMachine.stop
}
}
end
it "should perform successful POST with Ruby Hash/Array as params" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/').post :body => {"key1" => 1, "key2" => [2,3]}
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should match(/key1=1&key2\[0\]=2&key2\[1\]=3/)
EventMachine.stop
}
}
end
it "should set content-length to 0 on posts with empty bodies" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo_content_length_from_header').post
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.strip.split(':')[1].should == nil
EventMachine.stop
}
}
end
it "should perform successful POST with Ruby Hash/Array as params and with the correct content length" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo_content_length').post :body => {"key1" => "data1"}
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.to_i.should == 10
EventMachine.stop
}
}
end
it "should perform successful GET with custom header" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/').get :head => {'if-none-match' => 'evar!'}
http.errback { p http; failed(http) }
http.callback {
http.response_header.status.should == 304
EventMachine.stop
}
}
end
it "should perform basic auth" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/authtest').get :head => {'authorization' => ['user', 'pass']}
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
EventMachine.stop
}
}
end
it "should perform basic auth via the URL" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://user:pass@127.0.0.1:8090/authtest').get
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
EventMachine.stop
}
}
end
it "should return peer's IP address" do
EventMachine.run {
conn = EventMachine::HttpRequest.new('http://127.0.0.1:8090/')
conn.peer.should be_nil
http = conn.get
http.peer.should be_nil
http.errback { failed(http) }
http.callback {
conn.peer.should == '127.0.0.1'
http.peer.should == '127.0.0.1'
EventMachine.stop
}
}
end
it "should remove all newlines from long basic auth header" do
EventMachine.run {
auth = {'authorization' => ['aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa', 'zzzzzzzzzzzzzzzzzzzzzzzzzzzzzz']}
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/auth').get :head => auth
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should == "Basic YWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhOnp6enp6enp6enp6enp6enp6enp6enp6enp6enp6eg=="
EventMachine.stop
}
}
end
it "should send proper OAuth auth header" do
EventMachine.run {
oauth_header = 'OAuth oauth_nonce="oqwgSYFUD87MHmJJDv7bQqOF2EPnVus7Wkqj5duNByU", b=c, d=e'
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/auth').get :head => {
'authorization' => oauth_header
}
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should == oauth_header
EventMachine.stop
}
}
end
it "should return ETag and Last-Modified headers" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo_query').get
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response_header.etag.should match('abcdefg')
http.response_header.last_modified.should match('Fri, 13 Aug 2010 17:31:21 GMT')
EventMachine.stop
}
}
end
it "should return raw headers in a hash" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo_headers').get
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response_header.raw['Set-Cookie'].should match('test=yes')
http.response_header.raw['X-Forward-Host'].should match('proxy.local')
EventMachine.stop
}
}
end
it "should detect deflate encoding" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/deflate').get :head => {"accept-encoding" => "deflate"}
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response_header["CONTENT_ENCODING"].should == "deflate"
http.response.should == "compressed"
EventMachine.stop
}
}
end
it "should detect gzip encoding" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/gzip').get :head => {"accept-encoding" => "gzip, compressed"}
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response_header["CONTENT_ENCODING"].should == "gzip"
http.response.should == "compressed"
EventMachine.stop
}
}
end
it "should stream gzip responses" do
expected_response = Zlib::GzipReader.open(File.dirname(__FILE__) + "/fixtures/gzip-sample.gz") { |f| f.read }
actual_response = ''
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/gzip-large').get :head => {"accept-encoding" => "gzip, compressed"}
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response_header["CONTENT_ENCODING"].should == "gzip"
http.response.should == ''
actual_response.should == expected_response
EventMachine.stop
}
http.stream do |chunk|
actual_response << chunk
end
}
end
it "should not decode the response when configured so" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/gzip').get :head => {
"accept-encoding" => "gzip, compressed"
}, :decoding => false
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response_header["CONTENT_ENCODING"].should == "gzip"
raw = http.response
Zlib::GzipReader.new(StringIO.new(raw)).read.should == "compressed"
EventMachine.stop
}
}
end
it "should timeout after 0.1 seconds of inactivity" do
EventMachine.run {
t = Time.now.to_i
EventMachine.heartbeat_interval = 0.1
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/timeout', :inactivity_timeout => 0.1).get
http.errback {
http.error.should == Errno::ETIMEDOUT
(Time.now.to_i - t).should <= 1
EventMachine.stop
}
http.callback { failed(http) }
}
end
it "should complete a Location: with a relative path" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/relative-location').get
http.errback { failed(http) }
http.callback {
http.response_header['LOCATION'].should == 'http://127.0.0.1:8090/forwarded'
EventMachine.stop
}
}
end
context "body content-type encoding" do
it "should not set content type on string in body" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo_content_type').post :body => "data"
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should be_empty
EventMachine.stop
}
}
end
it "should set content-type automatically when passed a ruby hash/array for body" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo_content_type').post :body => {:a => :b}
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response.should match("application/x-www-form-urlencoded")
EventMachine.stop
}
}
end
it "should not override content-type when passing in ruby hash/array for body" do
EventMachine.run {
ct = 'text; charset=utf-8'
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo_content_type').post({
:body => {:a => :b}, :head => {'content-type' => ct}})
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.content_charset.should == Encoding.find('utf-8') if defined? Encoding
http.response_header["CONTENT_TYPE"].should == ct
EventMachine.stop
}
}
end
it "should default to external encoding on invalid encoding" do
EventMachine.run {
ct = 'text/html; charset=utf-8lias'
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo_content_type').post({
:body => {:a => :b}, :head => {'content-type' => ct}})
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.content_charset.should == Encoding.find('utf-8') if defined? Encoding
http.response_header["CONTENT_TYPE"].should == ct
EventMachine.stop
}
}
end
it "should processed escaped content-type" do
EventMachine.run {
ct = "text/html; charset=\"ISO-8859-4\""
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo_content_type').post({
:body => {:a => :b}, :head => {'content-type' => ct}})
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.content_charset.should == Encoding.find('ISO-8859-4') if defined? Encoding
http.response_header["CONTENT_TYPE"].should == ct
EventMachine.stop
}
}
end
end
context "optional header callback" do
it "should optionally pass the response headers" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/').get
http.errback { failed(http) }
http.headers { |hash|
hash.should be_an_kind_of Hash
hash.should include 'CONNECTION'
hash.should include 'CONTENT_LENGTH'
}
http.callback {
http.response_header.status.should == 200
http.response.should match(/Hello/)
EventMachine.stop
}
}
end
it "should allow to terminate current connection from header callback" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/').get
http.callback { failed(http) }
http.headers { |hash|
hash.should be_an_kind_of Hash
hash.should include 'CONNECTION'
hash.should include 'CONTENT_LENGTH'
http.close('header callback terminated connection')
}
http.errback { |e|
http.response_header.status.should == 200
http.error.should == 'header callback terminated connection'
http.response.should == ''
EventMachine.stop
}
}
end
end
it "should optionally pass the response body progressively" do
EventMachine.run {
body = ''
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/').get
http.errback { failed(http) }
http.stream { |chunk| body += chunk }
http.callback {
http.response_header.status.should == 200
http.response.should == ''
body.should match(/Hello/)
EventMachine.stop
}
}
end
it "should optionally pass the deflate-encoded response body progressively" do
EventMachine.run {
body = ''
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/deflate').get :head => {
"accept-encoding" => "deflate, compressed"
}
http.errback { failed(http) }
http.stream { |chunk| body += chunk }
http.callback {
http.response_header.status.should == 200
http.response_header["CONTENT_ENCODING"].should == "deflate"
http.response.should == ''
body.should == "compressed"
EventMachine.stop
}
}
end
it "should accept & return cookie header to user" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/set_cookie').get
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response_header.cookie.should == "id=1; expires=Sat, 09 Aug 2031 17:53:39 GMT; path=/;"
EventMachine.stop
}
}
end
it "should return array of cookies on multiple Set-Cookie headers" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/set_multiple_cookies').get
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response_header.cookie.size.should == 2
http.response_header.cookie.first.should == "id=1; expires=Sat, 09 Aug 2031 17:53:39 GMT; path=/;"
http.response_header.cookie.last.should == "id=2;"
EventMachine.stop
}
}
end
it "should pass cookie header to server from string" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo_cookie').get :head => {'cookie' => 'id=2;'}
http.errback { failed(http) }
http.callback {
http.response.should == "id=2;"
EventMachine.stop
}
}
end
it "should pass cookie header to server from Hash" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo_cookie').get :head => {'cookie' => {'id' => 2}}
http.errback { failed(http) }
http.callback {
http.response.should == "id=2;"
EventMachine.stop
}
}
end
it "should get the body without Content-Length" do
EventMachine.run {
@s = StubServer.new("HTTP/1.1 200 OK\r\n\r\nFoo")
http = EventMachine::HttpRequest.new('http://127.0.0.1:8081/').get
http.errback { failed(http) }
http.callback {
http.response.should match(/Foo/)
http.response_header['CONTENT_LENGTH'].should be_nil
@s.stop
EventMachine.stop
}
}
end
context "when talking to a stub HTTP/1.0 server" do
it "should get the body without Content-Length" do
EventMachine.run {
@s = StubServer.new("HTTP/1.0 200 OK\r\nConnection: close\r\n\r\nFoo")
http = EventMachine::HttpRequest.new('http://127.0.0.1:8081/').get
http.errback { failed(http) }
http.callback {
http.response.should match(/Foo/)
http.response_header['CONTENT_LENGTH'].should be_nil
@s.stop
EventMachine.stop
}
}
end
it "should work with \\n instead of \\r\\n" do
EventMachine.run {
@s = StubServer.new("HTTP/1.0 200 OK\nContent-Type: text/plain\nContent-Length: 3\nConnection: close\n\nFoo")
http = EventMachine::HttpRequest.new('http://127.0.0.1:8081/').get
http.errback { failed(http) }
http.callback {
http.response_header.status.should == 200
http.response_header['CONTENT_TYPE'].should == 'text/plain'
http.response.should match(/Foo/)
@s.stop
EventMachine.stop
}
}
end
it "should handle invalid HTTP response" do
EventMachine.run {
@s = StubServer.new("<html></html>")
http = EventMachine::HttpRequest.new('http://127.0.0.1:8081/').get
http.callback { failed(http) }
http.errback {
http.error.should_not be_nil
EM.stop
}
}
end
end
it "should stream a file off disk" do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/').post :file => 'spec/fixtures/google.ca'
http.errback { failed(http) }
http.callback {
http.response.should match('google')
EventMachine.stop
}
}
end
it "should reconnect if connection was closed between requests" do
EventMachine.run {
conn = EM::HttpRequest.new('http://127.0.0.1:8090/')
req = conn.get
req.callback do
conn.close('client closing connection')
EM.next_tick do
req = conn.get :path => "/gzip"
req.callback do
req.response_header.status.should == 200
req.response.should match('compressed')
EventMachine.stop
end
end
end
}
end
it 'should handle malformed Content-Type header repetitions' do
EventMachine.run {
response =<<-HTTP.gsub(/^ +/, '').strip
HTTP/1.0 200 OK
Content-Type: text/plain; charset=iso-8859-1
Content-Type: text/plain; charset=utf-8
Content-Length: 5
Connection: close
Hello
HTTP
@s = StubServer.new(response)
http = EventMachine::HttpRequest.new('http://127.0.0.1:8081/').get
http.errback { failed(http) }
http.callback {
http.content_charset.should == Encoding::ISO_8859_1 if defined? Encoding
EventMachine.stop
}
}
end
it "should allow indifferent access to headers" do
EventMachine.run {
response =<<-HTTP.gsub(/^ +/, '').strip
HTTP/1.0 200 OK
Content-Type: text/plain; charset=utf-8
X-Custom-Header: foo
Content-Length: 5
Connection: close
Hello
HTTP
@s = StubServer.new(response)
http = EventMachine::HttpRequest.new('http://127.0.0.1:8081/').get
http.errback { failed(http) }
http.callback {
http.response_header["Content-Type"].should == "text/plain; charset=utf-8"
http.response_header["CONTENT_TYPE"].should == "text/plain; charset=utf-8"
http.response_header["Content-Length"].should == "5"
http.response_header["CONTENT_LENGTH"].should == "5"
http.response_header["X-Custom-Header"].should == "foo"
http.response_header["X_CUSTOM_HEADER"].should == "foo"
EventMachine.stop
}
}
end
context "User-Agent" do
it 'should default to "EventMachine HttpClient"' do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo-user-agent').get
http.errback { failed(http) }
http.callback {
http.response.should == '"EventMachine HttpClient"'
EventMachine.stop
}
}
end
it 'should keep header if given empty string' do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo-user-agent').get(:head => { 'user-agent'=>'' })
http.errback { failed(http) }
http.callback {
http.response.should == '""'
EventMachine.stop
}
}
end
it 'should ommit header if given nil' do
EventMachine.run {
http = EventMachine::HttpRequest.new('http://127.0.0.1:8090/echo-user-agent').get(:head => { 'user-agent'=>nil })
http.errback { failed(http) }
http.callback {
http.response.should == 'nil'
EventMachine.stop
}
}
end
end
end
|