Sha256: 7f0f7a67bf0f38b6351b740c0c294f6dbb4164987f8ec1662ee70a2c285babad
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
module FakeWegoApi def stub_get_location_api(options = {}) stub_api_response("locations/search", options, filename: "locations") end def stub_new_search_api(search_terms) stub_api_response("search/new", search_terms, filename: "search") end def stub_search_results_api(search_id, options = {}) stub_api_response("search/#{search_id}", options, filename: "results") end def stub_search_result_api(search_id:, hotel_id:) stub_api_response( "search/#{search_id}", { hotel_id: hotel_id }, filename: "result" ) end def stub_invalid_api_response(status: 404) stub_api_response( "invalid/resource", {}, filename: "error", status: status ) end private def stub_api_response(end_point, options, filename:, status: 200) stub_request(:get, api_path(end_point, options)). to_return(response_with(filename: filename, status: status)) end def api_path(end_point, attributes = {}) Wego::Client.new(end_point, attributes).url end def response_with(filename:, status:) { body: fixture_file(filename), status: status } end def fixture_file(filename) file_name = [filename, "json"].join(".") file_path = ["../../fixtures", file_name].join("/") File.read(File.expand_path(file_path, __FILE__)) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wego-0.1.2 | spec/support/fake_wego_api.rb |