Sha256: 4a77a41f2fbc4181b5a94501f1f7fb969f9710ea84de6389ad75c95ffd478237

Contents?: true

Size: 1.11 KB

Versions: 8

Compression:

Stored size: 1.11 KB

Contents

module RestfullyAccessibleStub
  def stub_get_request(url, resource_name)
    stub_request(:get, url)
      .with(
        headers: request_headers
      ).to_return(
        status: 200,
        body: %Q[{#{resource_name}: "dummy"}]
      )
  end

  def stub_get_request_with_json_response(url, body)
    stub_request(:get, url)
      .with(
        headers: request_headers
      ).to_return(
        status: 200,
        headers: {'Content-Type' => 'application/json'},
        body: body.class == String ? body : body.to_json
      )
  end

  def stub_get_request_not_found(url)
    stub_request(:get, url)
      .with(
        headers: request_headers
      ).to_return(
        status: 404,
        body: "itemNotFound"
      )
  end

  def stub_get_request_unauthorized(url)
    stub_request(:get, url)
      .with(
        headers: request_headers
      ).to_return(
        status: 401,
        body: "unauthorized"
      )
  end

  def request_headers
    {'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent'=>"Yao/#{Yao::VERSION} Faraday/#{Faraday::VERSION}"}
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
yao-0.18.0 test/support/restfully_accesible_stub.rb
yao-0.17.0 test/support/restfully_accesible_stub.rb
yao-0.16.0 test/support/restfully_accesible_stub.rb
yao-0.15.0 test/support/restfully_accesible_stub.rb
yao-0.14.0 test/support/restfully_accesible_stub.rb
yao-0.13.4 test/support/restfully_accesible_stub.rb
yao-0.13.3 test/support/restfully_accesible_stub.rb
yao-0.13.2 test/support/restfully_accesible_stub.rb