[#10921] Extend error handling to cover new error codes

This commit is contained in:
Mathieu Magnin 2024-10-11 16:13:28 +02:00
parent ba330bfa98
commit 2222b6ff2d
No known key found for this signature in database
GPG key ID: 8DCAFC82D7BA654E
4 changed files with 27 additions and 1 deletions

View file

@ -141,7 +141,7 @@ class APIEntreprise::API
def service_unavailable?(response)
return true if response.code == 503
if response.code == 502 || response.code == 504
parse_response_errors(response).any? { _1.is_a?(Hash) && ["01000", "01001", "01002"].include?(_1[:code]) }
parse_response_errors(response).any? { _1.is_a?(Hash) && ["01000", "01001", "01002", "02002", "03002"].include?(_1[:code]) }
end
end

View file

@ -0,0 +1,3 @@
{
"errors": [{ "code": "02002" }]
}

View file

@ -0,0 +1,3 @@
{
"errors": [{ "code": "03002" }]
}

View file

@ -54,6 +54,26 @@ describe APIEntreprise::API do
end
end
context 'when the service reponds with 02002 code' do
let(:siren) { '111111111' }
let(:status) { 504 }
let(:body) { Rails.root.join('spec/fixtures/files/api_entreprise/error_code_02002.json').read }
it 'raises APIEntreprise::API::Error::RequestFailed' do
expect { subject }.to raise_error(APIEntreprise::API::Error::ServiceUnavailable)
end
end
context 'when the service reponds with 03002 code' do
let(:siren) { '111111111' }
let(:status) { 504 }
let(:body) { Rails.root.join('spec/fixtures/files/api_entreprise/error_code_03002.json').read }
it 'raises APIEntreprise::API::Error::RequestFailed' do
expect { subject }.to raise_error(APIEntreprise::API::Error::ServiceUnavailable)
end
end
context 'when siren does not exist' do
let(:siren) { '111111111' }
let(:status) { 404 }