Fix output format & format test

This commit is contained in:
Alex Sherman 2020-10-13 12:52:40 +05:00
parent c79042f789
commit c43ae63521
4 changed files with 43 additions and 24 deletions

View file

@ -10,21 +10,29 @@ class RegistrantApiCompaniesTest < ApplicationIntegrationTest
@auth_headers = { 'HTTP_AUTHORIZATION' => auth_token }
end
def test_root_accepts_limit_and_offset_parameters
def test_accepts_limit_and_offset_parameters
contacts(:william).update!(ident: '1234', ident_type: 'priv', ident_country_code: 'US')
assert_equal 4, @user.contacts(representable: false).size
get '/api/v1/registrant/companies', params: { 'limit' => 1, 'offset' => 0 },
headers: @auth_headers
response_json = JSON.parse(response.body, symbolize_names: true)
assert_equal(200, response.status)
assert_equal(1, response_json.count)
assert_equal(1, response_json.values.flatten.count)
get '/api/v1/registrant/companies', headers: @auth_headers
response_json = JSON.parse(response.body, symbolize_names: true)
assert_equal(@user.companies.size, response_json.count)
end
def test_format
contacts(:william).update!(ident: '1234', ident_type: 'priv', ident_country_code: 'US')
get '/api/v1/registrant/companies', headers: @auth_headers
response_json = JSON.parse(response.body, symbolize_names: true)
assert_equal(1, response_json.count)
assert response_json.is_a?(Hash)
assert_equal(:companies, response_json.keys.first)
end
private
def auth_token