Sha256: 1caac56c7cc3572475ae37745d631e7ba0788c0de0c06745e23dba20d421c5cd
Contents?: true
Size: 1.61 KB
Versions: 2
Compression:
Stored size: 1.61 KB
Contents
require 'sinatra/base' class FakeOnfidoAPI < Sinatra::Base get '/v1/addresses/pick' do json_response(200, 'addresses.json') end post '/v1/applicants' do json_response(201, 'applicant.json') end get '/v1/applicants/:id' do json_response(200, 'applicant.json') end get '/v1/applicants' do response = json_response(200, 'applicants.json') { applicants: JSON.parse(response)['applicants'][pagination_range] }.to_json end post '/v1/applicants/:id/documents' do json_response(201, 'document.json') end post '/v1/applicants/:id/checks' do json_response(201, 'check.json') end get '/v1/applicants/:id/checks/:id' do json_response(200, 'check.json') end get '/v1/applicants/:id/checks' do response = json_response(200, 'checks.json') { checks: JSON.parse(response)['checks'][pagination_range] }.to_json end get '/v1/checks/:id/reports' do json_response(200, 'reports.json') end get '/v1/checks/:id/reports/:id' do json_response(200, 'report.json') end get '/v1/4xx_response' do json_response(422, '4xx_response.json') end get '/v1/unexpected_error_format' do json_response(400, 'unexpected_error_format.json') end get '/v1/unparseable_response' do content_type :json status 504 '' end private def json_response(response_code, file_name) content_type :json status response_code File.open(File.dirname(__FILE__) + '/fixtures/' + file_name, 'rb').read end def pagination_range start = (params.fetch('page').to_i - 1) * 20 limit = start + params.fetch('per_page').to_i - 1 start..limit end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
onfido-0.2.0 | spec/support/fake_onfido_api.rb |
onfido-0.1.0 | spec/support/fake_onfido_api.rb |