class MyException < StandardError; end; shared_context "declared responses" do |*adapter_info| describe "when request stub declares that request should raise exception" do it "should raise exception" do stub_request(:get, "www.example.com").to_raise(MyException) lambda { http_request(:get, "http://www.example.com/") }.should raise_error(MyException, "Exception from WebMock") end it "should raise exception if declared as and exception instance" do stub_request(:get, "www.example.com").to_raise(MyException.new("hello world")) lambda { http_request(:get, "http://www.example.com/") }.should raise_error(MyException, "hello world") end it "should raise exception if declared as an exception instance" do stub_request(:get, "www.example.com").to_raise("hello world") lambda { http_request(:get, "http://www.example.com/") }.should raise_error("hello world") end it "should raise exception after returning declared successful response first" do stub_request(:get, "www.example.com").to_return(:body => "abc").then.to_raise(MyException) http_request(:get, "http://www.example.com/").body.should == "abc" lambda { http_request(:get, "http://www.example.com/") }.should raise_error(MyException, "Exception from WebMock") end end describe "when request stub declares that request should timeout" do it "should timeout" do stub_request(:get, "www.example.com").to_timeout lambda { http_request(:get, "http://www.example.com/") }.should raise_error(client_timeout_exception_class) end it "should timeout after returning declared successful response" do stub_request(:get, "www.example.com").to_return(:body => "abc").then.to_timeout http_request(:get, "http://www.example.com/").body.should == "abc" lambda { http_request(:get, "http://www.example.com/") }.should raise_error(client_timeout_exception_class) end end describe "when request stub declares that request should return a response" do it "should return response with declared body" do stub_request(:get, "www.example.com").to_return(:body => "abc") http_request(:get, "http://www.example.com/").body.should == "abc" end it "should return response with declared headers" do stub_request(:get, "www.example.com").to_return(:headers => SAMPLE_HEADERS) response = http_request(:get, "http://www.example.com/") response.headers["Content-Length"].should == "8888" end it "should return response with declared headers even if there are multiple headers with the same key" do stub_request(:get, "www.example.com").to_return(:headers => {"a" => ["b", "c"]}) response = http_request(:get, "http://www.example.com/") response.headers["A"].should == "b, c" end it "should return response with declared status code" do stub_request(:get, "www.example.com").to_return(:status => 500) http_request(:get, "http://www.example.com/").status.should == "500" end it "should return response with declared status message", :unless => (adapter_info.include?(:no_status_message)) do stub_request(:get, "www.example.com").to_return(:status => [500, "Internal Server Error"]) response = http_request(:get, "http://www.example.com/") response.message.should == "Internal Server Error" end it "should return response with a default status code" do stub_request(:get, "www.example.com") http_request(:get, "http://www.example.com/").status.should == "200" end it "should return default response with empty message if response was not declared", :unless => (adapter_info.include?(:no_status_message)) do stub_request(:get, "www.example.com") response = http_request(:get, "http://www.example.com/") response.message.should == "" end describe "when response body was declared as IO" do it "should return response body" do stub_request(:get, "www.example.com").to_return(:body => File.new(__FILE__)) http_request(:get, "http://www.example.com/").body.should == File.new(__FILE__).read end it "should return response body if requested many times" do stub_request(:get, "www.example.com").to_return(:body => File.new(__FILE__)) 2.times do http_request(:get, "http://www.example.com/").body.should == File.new(__FILE__).read end end it "should close IO after request" do stub_request(:get, "www.example.com").to_return(:body => @file = File.new(__FILE__)) @file.should be_closed end end describe "when response parts were declared as lambdas" do it "should return evaluated response body" do stub_request(:post, "www.example.com").to_return(:body => lambda { |request| request.body }) http_request(:post, "http://www.example.com/", :body => "echo").body.should == "echo" end it "should return evaluated response headers" do stub_request(:post, "www.example.com").to_return(:headers => lambda { |request| request.headers }) http_request(:post, "http://www.example.com/", :body => "abc", :headers => {'A' => 'B'}).headers['A'].should == 'B' end end describe "when response was declared as lambda" do class Responder def call(request) {:body => request.body} end end it "should return evaluated response body" do stub_request(:post, "www.example.com").to_return(lambda {|request| {:body => request.body} }) http_request(:post, "http://www.example.com/", :body => "echo").body.should == "echo" end it "should return evaluated response headers" do stub_request(:get, "www.example.com").to_return(lambda { |request| {:headers => request.headers} }) http_request(:get, "http://www.example.com/", :headers => {'A' => 'B'}).headers['A'].should == 'B' end it "should return dynamic response declared as a block" do stub_request(:post, "www.example.com").to_return do |request| {:body => request.body} end http_request(:post, "http://www.example.com/", :body => "echo").body.should == "echo" end it "should return dynamic response declared as an object responding to call" do stub_request(:post, "www.example.com").to_return(Responder.new) http_request(:post, "http://www.example.com/", :body => "echo").body.should == "echo" end end describe "when response was declared as a file with a raw response" do before(:each) do @file = File.new(CURL_EXAMPLE_OUTPUT_PATH) stub_request(:get, "www.example.com").to_return(@file) @response = http_request(:get, "http://www.example.com/") end it "should return recorded headers" do @response.headers.should == { "Date"=>"Sat, 23 Jan 2010 01:01:05 GMT", "Content-Type"=>"text/html; charset=UTF-8", "Content-Length"=>"419", "Connection"=>"Keep-Alive", "Accept"=>"image/jpeg, image/png" } end it "should return recorded body" do @response.body.size.should == 419 end it "should return recorded status" do @response.status.should == "202" end it "should return recorded status message", :unless => (adapter_info.include?(:no_status_message)) do @response.message.should == "OK" end it "should ensure file is closed" do @file.should be_closed end end describe "when response was declared as a string with a raw response" do before(:each) do @input = File.new(CURL_EXAMPLE_OUTPUT_PATH).read stub_request(:get, "www.example.com").to_return(@input) @response = http_request(:get, "http://www.example.com/") end it "should return recorded headers" do @response.headers.should == { "Date"=>"Sat, 23 Jan 2010 01:01:05 GMT", "Content-Type"=>"text/html; charset=UTF-8", "Content-Length"=>"419", "Connection"=>"Keep-Alive", "Accept"=>"image/jpeg, image/png" } end it "should return recorded body" do @response.body.size.should == 419 end it "should return recorded status" do @response.status.should == "202" end it "should return recorded status message", :unless => (adapter_info.include?(:no_status_message)) do @response.message.should == "OK" end end describe "when response was declared as lambda evaluating to a string with a raw response" do before(:each) do @files = { "www.example.com" => File.new(CURL_EXAMPLE_OUTPUT_PATH) } end it "should return response from evaluated file" do stub_request(:get, "www.example.com").to_return(lambda {|request| @files[request.uri.host.to_s] }) http_request(:get, "http://www.example.com/").body.size.should == 419 end it "should return response from evaluated string" do stub_request(:get, "www.example.com").to_return(lambda {|request| @files[request.uri.host.to_s].read }) http_request(:get, "http://www.example.com/").body.size.should == 419 end end describe "when response is declared as an Rack app" do before(:each) do stub_request(:any, "http://www.example.com/greet").to_rack(MyRackApp) end it "should return response returned by the rack app" do http_request(:post, 'http://www.example.com/greet', :body => 'name=Jimmy').body.should == 'Good to meet you, Jimmy!' end end describe "when sequences of responses are declared" do it "should return responses one by one if declared in array" do stub_request(:get, "www.example.com").to_return([ {:body => "1"}, {:body => "2"}, {:body => "3"} ]) http_request(:get, "http://www.example.com/").body.should == "1" http_request(:get, "http://www.example.com/").body.should == "2" http_request(:get, "http://www.example.com/").body.should == "3" end it "should repeat returning last declared response from a sequence after all responses were returned" do stub_request(:get, "www.example.com").to_return([ {:body => "1"}, {:body => "2"} ]) http_request(:get, "http://www.example.com/").body.should == "1" http_request(:get, "http://www.example.com/").body.should == "2" http_request(:get, "http://www.example.com/").body.should == "2" end it "should return responses one by one if declared as comma separated params" do stub_request(:get, "www.example.com").to_return({:body => "1"}, {:body => "2"}, {:body => "3"}) http_request(:get, "http://www.example.com/").body.should == "1" http_request(:get, "http://www.example.com/").body.should == "2" http_request(:get, "http://www.example.com/").body.should == "3" end it "should return responses one by one if declared with several to_return invokations" do stub_request(:get, "www.example.com"). to_return({:body => "1"}). to_return({:body => "2"}). to_return({:body => "3"}) http_request(:get, "http://www.example.com/").body.should == "1" http_request(:get, "http://www.example.com/").body.should == "2" http_request(:get, "http://www.example.com/").body.should == "3" end it "should return responses one by one if declared with to_return invocations separated with then syntactic sugar" do stub_request(:get, "www.example.com").to_return({:body => "1"}).then. to_return({:body => "2"}).then.to_return({:body => "3"}) http_request(:get, "http://www.example.com/").body.should == "1" http_request(:get, "http://www.example.com/").body.should == "2" http_request(:get, "http://www.example.com/").body.should == "3" end end describe "when responses are declared to return more than once" do it "should repeat one response declared number of times" do stub_request(:get, "www.example.com"). to_return({:body => "1"}).times(2). to_return({:body => "2"}) http_request(:get, "http://www.example.com/").body.should == "1" http_request(:get, "http://www.example.com/").body.should == "1" http_request(:get, "http://www.example.com/").body.should == "2" end it "should repeat sequence of response declared number of times" do stub_request(:get, "www.example.com"). to_return({:body => "1"}, {:body => "2"}).times(2). to_return({:body => "3"}) http_request(:get, "http://www.example.com/").body.should == "1" http_request(:get, "http://www.example.com/").body.should == "2" http_request(:get, "http://www.example.com/").body.should == "1" http_request(:get, "http://www.example.com/").body.should == "2" http_request(:get, "http://www.example.com/").body.should == "3" end it "should repeat infinitely last response even if number of declared times is lower" do stub_request(:get, "www.example.com"). to_return({:body => "1"}).times(2) http_request(:get, "http://www.example.com/").body.should == "1" http_request(:get, "http://www.example.com/").body.should == "1" http_request(:get, "http://www.example.com/").body.should == "1" end it "should give error if times is declared without specifying response" do lambda { stub_request(:get, "www.example.com").times(3) }.should raise_error("Invalid WebMock stub declaration. times(N) can be declared only after response declaration.") end end describe "when exception is declared to be raised more than once" do it "should repeat raising exception declared number of times" do stub_request(:get, "www.example.com"). to_raise(MyException).times(2). to_return({:body => "2"}) lambda { http_request(:get, "http://www.example.com/") }.should raise_error(MyException, "Exception from WebMock") lambda { http_request(:get, "http://www.example.com/") }.should raise_error(MyException, "Exception from WebMock") http_request(:get, "http://www.example.com/").body.should == "2" end it "should repeat raising sequence of exceptions declared number of times" do stub_request(:get, "www.example.com"). to_raise(MyException, ArgumentError).times(2). to_return({:body => "2"}) lambda { http_request(:get, "http://www.example.com/") }.should raise_error(MyException, "Exception from WebMock") lambda { http_request(:get, "http://www.example.com/") }.should raise_error(ArgumentError) lambda { http_request(:get, "http://www.example.com/") }.should raise_error(MyException, "Exception from WebMock") lambda { http_request(:get, "http://www.example.com/") }.should raise_error(ArgumentError) http_request(:get, "http://www.example.com/").body.should == "2" end end end end