Modified identification request webhook

This commit is contained in:
tsoganov 2024-10-15 14:13:04 +03:00
parent d04622c49f
commit 0085f99e02
14 changed files with 292 additions and 19 deletions

View file

@ -12,14 +12,18 @@ class ReppV1ContactsVerifyTest < ActionDispatch::IntegrationTest
adapter = ENV['shunter_default_adapter'].constantize.new
adapter&.clear!
stub_request(:post, %r{api/auth/v1/token}).to_return(status: 200, body: { access_token: 'token', token_type: 'Bearer', expires_in: 100 }.to_json, headers: {})
stub_request(:post, %r{api/auth/v1/token})
.to_return(
status: 200,
body: { access_token: 'token', token_type: 'Bearer', expires_in: 100 }.to_json, headers: {}
)
stub_request(:post, %r{api/ident/v1/identification_requests})
.with(
body: {
claims_required: [{ type: 'sub', value: "#{@contact.ident_country_code}#{@contact.ident}" }],
reference: @contact.code
}
).to_return(status: 200, body: { id: '123' }.to_json, headers: {})
).to_return(status: 200, body: { id: '123' }.to_json, headers: { 'Content-Type' => 'application/json' })
end
def test_returns_error_when_not_found
@ -43,6 +47,20 @@ class ReppV1ContactsVerifyTest < ActionDispatch::IntegrationTest
assert contact.present?
assert contact.ident_request_sent_at
assert_nil contact.verified_at
assert_notify_contact('Identification requested')
end
def test_handles_non_epp_error
stub_request(:post, %r{api/ident/v1/identification_requests})
.to_return(status: :unprocessable_entity, body: { error: 'error' }.to_json, headers: { 'Content-Type' => 'application/json' })
post "/repp/v1/contacts/verify/#{@contact.code}", headers: @auth_headers
json = JSON.parse(response.body, symbolize_names: true)
assert_response :bad_request
assert_equal 'Sending identification request failed', json[:message]
assert_nil @contact.ident_request_sent_at
assert_emails 0
end
def test_does_not_verify_already_verified_contact
@ -68,4 +86,13 @@ class ReppV1ContactsVerifyTest < ActionDispatch::IntegrationTest
ENV['shunter_default_threshold'] = '10000'
ENV['shunter_enabled'] = 'false'
end
private
def assert_notify_contact(subject)
assert_emails 1
email = ActionMailer::Base.deliveries.last
assert_equal [@contact.email], email.to
assert_equal subject, email.subject
end
end