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
|
Shindo.tests('Excon Response Parsing') do
env_init
with_server('good_ipv4') do
tests('responses with chunked transfer-encoding') do
tests('simple response').returns('hello world') do
Excon.get('http://127.0.0.1:9292/chunked/simple').body
end
tests('with :response_block') do
tests('simple response').
returns([['hello ', nil, nil], ['world', nil, nil]]) do
capture_response_block do |block|
Excon.get('http://127.0.0.1:9292/chunked/simple',
:response_block => block,
:chunk_size => 5) # not used
end
end
tests('simple response has empty body').returns('') do
response_block = lambda { |_, _, _| }
Excon.get('http://127.0.0.1:9292/chunked/simple', :response_block => response_block).body
end
tests('with expected response status').
returns([['hello ', nil, nil], ['world', nil, nil]]) do
capture_response_block do |block|
Excon.get('http://127.0.0.1:9292/chunked/simple',
:response_block => block,
:expects => 200)
end
end
tests('with unexpected response status').returns('hello world') do
begin
Excon.get('http://127.0.0.1:9292/chunked/simple',
:response_block => Proc.new { raise 'test failed' },
:expects => 500)
rescue Excon::Errors::HTTPStatusError => err
err.response[:body]
end
end
end
tests('merges trailers into headers').
returns('one, two, three, four, five, six') do
Excon.get('http://127.0.0.1:9292/chunked/trailers').headers['Test-Header']
end
tests("removes 'chunked' from Transfer-Encoding").returns(nil) do
Excon.get('http://127.0.0.1:9292/chunked/simple').headers['Transfer-Encoding']
end
end
tests('responses with content-length') do
tests('simple response').returns('hello world') do
Excon.get('http://127.0.0.1:9292/content-length/simple').body
end
tests('with :response_block') do
tests('simple response').
returns([['hello', 6, 11], [' worl', 1, 11], ['d', 0, 11]]) do
capture_response_block do |block|
Excon.get('http://127.0.0.1:9292/content-length/simple',
:response_block => block,
:chunk_size => 5)
end
end
tests('simple response has empty body').returns('') do
response_block = lambda { |_, _, _| }
Excon.get('http://127.0.0.1:9292/content-length/simple', :response_block => response_block).body
end
tests('with expected response status').
returns([['hello', 6, 11], [' worl', 1, 11], ['d', 0, 11]]) do
capture_response_block do |block|
Excon.get('http://127.0.0.1:9292/content-length/simple',
:response_block => block,
:chunk_size => 5,
:expects => 200)
end
end
tests('with unexpected response status').returns('hello world') do
begin
Excon.get('http://127.0.0.1:9292/content-length/simple',
:response_block => Proc.new { raise 'test failed' },
:chunk_size => 5,
:expects => 500)
rescue Excon::Errors::HTTPStatusError => err
err.response[:body]
end
end
end
end
tests('responses with unknown length') do
tests('simple response').returns('hello world') do
Excon.get('http://127.0.0.1:9292/unknown/simple').body
end
tests('with :response_block') do
tests('simple response').
returns([['hello', nil, nil], [' worl', nil, nil], ['d', nil, nil]]) do
capture_response_block do |block|
Excon.get('http://127.0.0.1:9292/unknown/simple',
:response_block => block,
:chunk_size => 5)
end
end
tests('simple response has empty body').returns('') do
response_block = lambda { |_, _, _| }
Excon.get('http://127.0.0.1:9292/unknown/simple', :response_block => response_block).body
end
tests('with expected response status').
returns([['hello', nil, nil], [' worl', nil, nil], ['d', nil, nil]]) do
capture_response_block do |block|
Excon.get('http://127.0.0.1:9292/unknown/simple',
:response_block => block,
:chunk_size => 5,
:expects => 200)
end
end
tests('with unexpected response status').returns('hello world') do
begin
Excon.get('http://127.0.0.1:9292/unknown/simple',
:response_block => Proc.new { raise 'test failed' },
:chunk_size => 5,
:expects => 500)
rescue Excon::Errors::HTTPStatusError => err
err.response[:body]
end
end
end
end
tests('cookies') do
tests('parses cookies into array').returns(['one, two', 'three, four']) do
resp = Excon.get('http://127.0.0.1:9292/unknown/cookies')
resp[:cookies]
end
end
tests('header continuation') do
tests('proper continuation').returns('one, two, three, four, five, six') do
resp = Excon.get('http://127.0.0.1:9292/unknown/header_continuation')
resp.headers['Test-Header']
end
tests('malformed header').raises(Excon::Errors::SocketError) do
Excon.get('http://127.0.0.1:9292/bad/malformed_header')
end
tests('malformed header continuation').raises(Excon::Errors::SocketError) do
Excon.get('http://127.0.0.1:9292/bad/malformed_header_continuation')
end
end
tests('status line parsing') do
tests('proper status code').returns(404) do
resp = Excon.get('http://127.0.0.1:9292/not-found')
resp.status
end
tests('proper reason phrase').returns("Not Found") do
resp = Excon.get('http://127.0.0.1:9292/not-found')
resp.reason_phrase
end
end
end
env_restore
end
|