Sha256: 6b96bd5e404e13024c982b8d044face713e4de6a8de1790c307691784c0ab4d0

Contents?: true

Size: 1.3 KB

Versions: 9

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)

    expect(played_back_response.headers.keys).to include('Set-Cookie')
    expect(played_back_response).to eq(real_response)
  end

  let(:no_content_url) { 'https://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)

        expect(stubbed_response.body).to eq(real_response.body)
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/webmock-3.18.1/spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-3.18.1 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-3.18.0 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-3.15.2 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-3.16.2 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-3.16.1 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-3.15.1 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-3.17.1 spec/acceptance/shared/complex_cross_concern_behaviors.rb
webmock-3.17.0 spec/acceptance/shared/complex_cross_concern_behaviors.rb