Sha256: 69709476a3967f0ef337dc4df7b08fd179803ba29b9fb9fdd91ff4e3d418e6b1

Contents?: true

Size: 1.3 KB

Versions: 30

Compression:

Stored size: 1.3 KB

Contents

shared_context "complex cross-concern behaviors" do |*adapter_info|
  it 'allows a response with multiple values for the same header to be recorded and played back exactly as-is' do
    WebMock.allow_net_connect!

    recorded_response = nil
    WebMock.after_request { |_,r| recorded_response = r }
    real_response = http_request(:get, webmock_server_url)

    stub_request(:get, webmock_server_url).to_return(
      :status => recorded_response.status,
      :body => recorded_response.body,
      :headers => recorded_response.headers
    )

    played_back_response = http_request(:get, webmock_server_url)

    played_back_response.headers.keys.should include('Set-Cookie')
    played_back_response.should == real_response
  end

  let(:no_content_url) { 'http://httpstat.us/204' }
  [nil, ''].each do |stub_val|
    it "returns the same value (nil or "") for a request stubbed as #{stub_val.inspect} that a real empty response has", :net_connect => true do
      unless http_library == :curb
        WebMock.allow_net_connect!

        real_response = http_request(:get, no_content_url)
        stub_request(:get, no_content_url).to_return(:status => 204, :body => stub_val)
        stubbed_response = http_request(:get, no_content_url)

        stubbed_response.body.should eq(real_response.body)
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 2 rubygems

Version Path
webmock-1.12.2 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-1.12.1 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-1.12.0 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-1.11.0 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-1.10.2 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-1.10.1 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-1.10.0 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-1.9.3 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-1.9.2 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-1.9.1 spec/acceptance/shared/complex_cross_concern_behaviors.rb