Sha256: a8036400aa0d7077eeeac297ee401608ae6681a8c06748109bc1fc3d5ce8e426

Contents?: true

Size: 1.22 KB

Versions: 5

Compression:

Stored size: 1.22 KB

Contents

require 'webmock/rspec'

module StubHelper

  def initialize
    @base_url = 'http://www.example.com/'
  end

  def mock_get(url, response_headers = {}, status = 200)
    stub_request(:get, @base_url + url).to_return(headers: response_headers, body: get_json_response_file(url), status: status)
  end

  def mock_post(url, options = {}, status = 200)
    stub_request(:post, @base_url + url).with(body: options[:request_body] || {})
      .to_return(headers: options[:response_headers] || {}, body: get_json_response_file(url), status: status)
  end

  def mock_put(url, options = {}, status = 200)
    stub_request(:put, @base_url + url).with(body: options[:request_body] || {})
      .to_return(headers: options[:response_headers] || {}, body: get_json_response_file(url), status: status)
  end

  def mock_patch(url, options = {}, status = 200)
    stub_request(:patch, @base_url + url).with(body: options[:request_body] || {})
      .to_return(headers: options[:response_headers] || {}, body: get_json_response_file(url), status: status)
  end

  def mock_delete(url)
    stub_request(:delete, @base_url + url)
  end

  private

    def get_json_response_file(name)
      IO.read(File.join('spec/test_responses', name + ".json"))
    end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
airborne-0.1.3 spec/stub_helper.rb
airborne-0.1.2 spec/stub_helper.rb
airborne-0.1.1 spec/stub_helper.rb
airborne-0.0.23 spec/stub_helper.rb
airborne-0.0.22 spec/stub_helper.rb