Make contact fixtures have unique ident numbers

This commit is contained in:
Maciej Szlosarczyk 2018-08-23 15:40:52 +03:00
parent ec5e4fe356
commit 9f7fc47f19
No known key found for this signature in database
GPG key ID: 41D62D42D3B0D765
3 changed files with 8 additions and 8 deletions

View file

@ -15,7 +15,7 @@ william: &william
email: william@inbox.test email: william@inbox.test
phone: '+555.555' phone: '+555.555'
fax: +555.555 fax: +555.555
ident: 1234 ident: 12345
ident_type: priv ident_type: priv
ident_country_code: US ident_country_code: US
registrar: bestnames registrar: bestnames
@ -34,7 +34,7 @@ jane:
name: Jane name: Jane
email: jane@mail.test email: jane@mail.test
phone: '+555.555' phone: '+555.555'
ident: 1234 ident: 123456
ident_type: priv ident_type: priv
ident_country_code: US ident_country_code: US
registrar: bestnames registrar: bestnames
@ -46,7 +46,7 @@ acme_ltd:
name: Acme Ltd name: Acme Ltd
email: acme@outlook.test email: acme@outlook.test
phone: '+555.555' phone: '+555.555'
ident: 1234 ident: 1234567
ident_type: org ident_type: org
registrar: bestnames registrar: bestnames
ident_country_code: US ident_country_code: US
@ -58,7 +58,7 @@ jack:
name: Jack name: Jack
email: jack@inbox.test email: jack@inbox.test
phone: '+555.555' phone: '+555.555'
ident: 1234 ident: 12345678
ident_type: org ident_type: org
registrar: goodnames registrar: goodnames
ident_country_code: US ident_country_code: US
@ -87,4 +87,4 @@ invalid:
email: invalid@invalid.test email: invalid@invalid.test
auth_info: any auth_info: any
registrar: bestnames registrar: bestnames
uuid: bd80c0f9-26ee-49e0-a2cb-2311d931c433 uuid: bd80c0f9-26ee-49e0-a2cb-2311d931c433

View file

@ -25,7 +25,7 @@ class RegistrantApiContactsTest < ApplicationIntegrationTest
assert_equal(200, response.status) assert_equal(200, response.status)
json_body = JSON.parse(response.body, symbolize_names: true) json_body = JSON.parse(response.body, symbolize_names: true)
assert_equal(5, json_body.count) assert_equal(4, json_body.count)
array_of_contact_codes = json_body.map { |x| x[:code] } array_of_contact_codes = json_body.map { |x| x[:code] }
assert(array_of_contact_codes.include?('william-001')) assert(array_of_contact_codes.include?('william-001'))
assert(array_of_contact_codes.include?('jane-001')) assert(array_of_contact_codes.include?('jane-001'))
@ -39,7 +39,7 @@ class RegistrantApiContactsTest < ApplicationIntegrationTest
get '/api/v1/registrant/contacts', {}, @auth_headers get '/api/v1/registrant/contacts', {}, @auth_headers
response_json = JSON.parse(response.body, symbolize_names: true) response_json = JSON.parse(response.body, symbolize_names: true)
assert_equal(5, response_json.count) assert_equal(4, response_json.count)
end end
def test_get_contact_details_by_uuid def test_get_contact_details_by_uuid

View file

@ -57,7 +57,7 @@ class RegistrantApiDomainsTest < ApplicationIntegrationTest
get '/api/v1/registrant/domains', {}, @auth_headers get '/api/v1/registrant/domains', {}, @auth_headers
response_json = JSON.parse(response.body, symbolize_names: true) response_json = JSON.parse(response.body, symbolize_names: true)
assert_equal(5, response_json.count) assert_equal(4, response_json.count)
end end
def test_root_does_not_accept_limit_higher_than_200 def test_root_does_not_accept_limit_higher_than_200