2015-03-13 21:00:51 -04:00
|
|
|
require_relative '_lib'
|
2009-03-16 18:28:20 -04:00
|
|
|
|
2016-05-01 16:57:54 -04:00
|
|
|
describe RestClient::AbstractResponse, :include_helpers do
|
2010-03-29 13:38:23 -04:00
|
|
|
|
|
|
|
class MyAbstractResponse
|
|
|
|
|
|
|
|
include RestClient::AbstractResponse
|
|
|
|
|
2010-04-23 13:40:49 -04:00
|
|
|
attr_accessor :size
|
|
|
|
|
2016-05-01 16:57:54 -04:00
|
|
|
def initialize net_http_res, request
|
2010-03-29 13:38:23 -04:00
|
|
|
@net_http_res = net_http_res
|
2015-03-21 22:08:21 -04:00
|
|
|
@request = request
|
2010-03-29 13:38:23 -04:00
|
|
|
end
|
2010-04-23 13:40:49 -04:00
|
|
|
|
2010-03-29 13:38:23 -04:00
|
|
|
end
|
|
|
|
|
2009-12-29 12:27:39 -05:00
|
|
|
before do
|
2013-07-26 23:09:42 -04:00
|
|
|
@net_http_res = double('net http response')
|
2016-05-15 22:44:52 -04:00
|
|
|
@request = request_double(url: 'http://example.com', method: 'get')
|
2016-05-01 16:57:54 -04:00
|
|
|
@response = MyAbstractResponse.new(@net_http_res, @request)
|
2009-12-29 12:27:39 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "fetches the numeric response code" do
|
|
|
|
@net_http_res.should_receive(:code).and_return('200')
|
2013-08-11 16:16:02 -04:00
|
|
|
@response.code.should eq 200
|
2009-12-29 12:27:39 -05:00
|
|
|
end
|
|
|
|
|
2010-04-23 13:40:49 -04:00
|
|
|
it "has a nice description" do
|
2010-04-23 16:37:02 -04:00
|
|
|
@net_http_res.should_receive(:to_hash).and_return({'Content-Type' => ['application/pdf']})
|
2010-04-23 13:40:49 -04:00
|
|
|
@net_http_res.should_receive(:code).and_return('200')
|
2013-07-31 07:57:31 -04:00
|
|
|
@response.description.should eq "200 OK | application/pdf bytes\n"
|
2010-04-23 13:40:49 -04:00
|
|
|
end
|
|
|
|
|
2015-03-24 00:55:40 -04:00
|
|
|
describe '.beautify_headers' do
|
|
|
|
it "beautifies the headers by turning the keys to symbols" do
|
|
|
|
h = RestClient::AbstractResponse.beautify_headers('content-type' => [ 'x' ])
|
|
|
|
h.keys.first.should eq :content_type
|
|
|
|
end
|
|
|
|
|
|
|
|
it "beautifies the headers by turning the values to strings instead of one-element arrays" do
|
|
|
|
h = RestClient::AbstractResponse.beautify_headers('x' => [ 'text/html' ] )
|
|
|
|
h.values.first.should eq 'text/html'
|
|
|
|
end
|
2009-12-29 12:27:39 -05:00
|
|
|
|
2015-03-24 00:55:40 -04:00
|
|
|
it 'joins multiple header values by comma' do
|
|
|
|
RestClient::AbstractResponse.beautify_headers(
|
|
|
|
{'My-Header' => ['one', 'two']}
|
|
|
|
).should eq({:my_header => 'one, two'})
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'leaves set-cookie headers as array' do
|
|
|
|
RestClient::AbstractResponse.beautify_headers(
|
|
|
|
{'Set-Cookie' => ['cookie1=foo', 'cookie2=bar']}
|
|
|
|
).should eq({:set_cookie => ['cookie1=foo', 'cookie2=bar']})
|
|
|
|
end
|
2009-12-29 12:27:39 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "fetches the headers" do
|
|
|
|
@net_http_res.should_receive(:to_hash).and_return('content-type' => [ 'text/html' ])
|
2013-08-11 16:16:02 -04:00
|
|
|
@response.headers.should eq({ :content_type => 'text/html' })
|
2009-12-29 12:27:39 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "extracts cookies from response headers" do
|
|
|
|
@net_http_res.should_receive(:to_hash).and_return('set-cookie' => ['session_id=1; path=/'])
|
2013-08-11 16:16:02 -04:00
|
|
|
@response.cookies.should eq({ 'session_id' => '1' })
|
2009-12-29 12:27:39 -05:00
|
|
|
end
|
|
|
|
|
2010-04-30 14:31:24 -04:00
|
|
|
it "extract strange cookies" do
|
|
|
|
@net_http_res.should_receive(:to_hash).and_return('set-cookie' => ['session_id=ZJ/HQVH6YE+rVkTpn0zvTQ==; path=/'])
|
2015-03-21 22:08:21 -04:00
|
|
|
@response.headers.should eq({:set_cookie => ['session_id=ZJ/HQVH6YE+rVkTpn0zvTQ==; path=/']})
|
|
|
|
@response.cookies.should eq({ 'session_id' => 'ZJ/HQVH6YE+rVkTpn0zvTQ==' })
|
2010-06-03 15:18:48 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't escape cookies" do
|
|
|
|
@net_http_res.should_receive(:to_hash).and_return('set-cookie' => ['session_id=BAh7BzoNYXBwX25hbWUiEGFwcGxpY2F0aW9uOgpsb2dpbiIKYWRtaW4%3D%0A--08114ba654f17c04d20dcc5228ec672508f738ca; path=/'])
|
2013-08-11 16:16:02 -04:00
|
|
|
@response.cookies.should eq({ 'session_id' => 'BAh7BzoNYXBwX25hbWUiEGFwcGxpY2F0aW9uOgpsb2dpbiIKYWRtaW4%3D%0A--08114ba654f17c04d20dcc5228ec672508f738ca' })
|
2010-04-30 14:31:24 -04:00
|
|
|
end
|
|
|
|
|
2016-05-15 23:04:56 -04:00
|
|
|
describe '.cookie_jar' do
|
|
|
|
it 'extracts cookies into cookie jar' do
|
|
|
|
@net_http_res.should_receive(:to_hash).and_return('set-cookie' => ['session_id=1; path=/'])
|
|
|
|
@response.cookie_jar.should be_a HTTP::CookieJar
|
|
|
|
|
|
|
|
cookie = @response.cookie_jar.cookies.first
|
|
|
|
cookie.domain.should eq 'example.com'
|
|
|
|
cookie.name.should eq 'session_id'
|
|
|
|
cookie.value.should eq '1'
|
|
|
|
cookie.path.should eq '/'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'handles cookies when URI scheme is implicit' do
|
|
|
|
net_http_res = double('net http response')
|
|
|
|
net_http_res.should_receive(:to_hash).and_return('set-cookie' => ['session_id=1; path=/'])
|
2016-06-05 19:03:20 -04:00
|
|
|
request = double(url: 'example.com', uri: URI.parse('http://example.com'),
|
|
|
|
method: 'get', cookie_jar: HTTP::CookieJar.new)
|
2016-05-15 23:04:56 -04:00
|
|
|
response = MyAbstractResponse.new(net_http_res, request)
|
|
|
|
response.cookie_jar.should be_a HTTP::CookieJar
|
|
|
|
|
|
|
|
cookie = response.cookie_jar.cookies.first
|
|
|
|
cookie.domain.should eq 'example.com'
|
|
|
|
cookie.name.should eq 'session_id'
|
|
|
|
cookie.value.should eq '1'
|
|
|
|
cookie.path.should eq '/'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-12-29 12:27:39 -05:00
|
|
|
it "can access the net http result directly" do
|
2013-08-11 16:16:02 -04:00
|
|
|
@response.net_http_res.should eq @net_http_res
|
2009-12-29 12:27:39 -05:00
|
|
|
end
|
2013-07-31 22:24:18 -04:00
|
|
|
|
2010-12-10 18:11:57 -05:00
|
|
|
describe "#return!" do
|
|
|
|
it "should return the response itself on 200-codes" do
|
|
|
|
@net_http_res.should_receive(:code).and_return('200')
|
|
|
|
@response.return!.should be_equal(@response)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should raise RequestFailed on unknown codes" do
|
|
|
|
@net_http_res.should_receive(:code).and_return('1000')
|
|
|
|
lambda { @response.return! }.should raise_error RestClient::RequestFailed
|
|
|
|
end
|
2013-07-31 22:24:18 -04:00
|
|
|
|
2010-12-10 18:11:57 -05:00
|
|
|
it "should raise an error on a redirection after non-GET/HEAD requests" do
|
|
|
|
@net_http_res.should_receive(:code).and_return('301')
|
2016-05-01 16:57:54 -04:00
|
|
|
@request.should_receive(:method).and_return('put')
|
|
|
|
@response.should_not_receive(:follow_redirection)
|
2010-12-10 18:11:57 -05:00
|
|
|
lambda { @response.return! }.should raise_error RestClient::RequestFailed
|
|
|
|
end
|
2016-05-01 16:57:54 -04:00
|
|
|
|
|
|
|
it "should follow 302 redirect" do
|
|
|
|
@net_http_res.should_receive(:code).and_return('302')
|
2016-06-05 18:39:31 -04:00
|
|
|
@response.should_receive(:check_max_redirects).and_return('fake-check')
|
2016-05-01 16:57:54 -04:00
|
|
|
@response.should_receive(:follow_redirection).and_return('fake-redirection')
|
|
|
|
@response.return!.should eq 'fake-redirection'
|
|
|
|
end
|
2016-05-01 17:07:41 -04:00
|
|
|
|
|
|
|
it "should gracefully handle 302 redirect with no location header" do
|
2016-05-15 23:04:56 -04:00
|
|
|
@net_http_res = response_double(code: 302, location: nil)
|
|
|
|
@request = request_double()
|
|
|
|
@response = MyAbstractResponse.new(@net_http_res, @request)
|
2016-06-05 18:39:31 -04:00
|
|
|
@response.should_receive(:check_max_redirects).and_return('fake-check')
|
2016-05-01 17:07:41 -04:00
|
|
|
lambda { @response.return! }.should raise_error RestClient::Found
|
|
|
|
end
|
2010-12-10 18:11:57 -05:00
|
|
|
end
|
2009-03-16 18:28:20 -04:00
|
|
|
end
|