Merge pull request #97 from serihiro/retry-request-with-unexpected-error

Retry http request when unexpected error occurs
This commit is contained in:
Heng Xiong 2017-07-13 16:29:13 -07:00 committed by GitHub
commit 8665196405
5 changed files with 77 additions and 19 deletions

View File

@ -88,6 +88,8 @@ END
def fetch_access_token(options = {})
c = options[:connection] || Faraday.default_connection
c.headers = { 'Metadata-Flavor' => 'Google' }
retry_with_error do
resp = c.get(COMPUTE_AUTH_TOKEN_URI)
case resp.status
when 200
@ -96,10 +98,12 @@ END
when 404
raise(Signet::AuthorizationError, NO_METADATA_SERVER_ERROR)
else
msg = "Unexpected error code #{resp.status}" + UNEXPECTED_ERROR_SUFFIX
msg = "Unexpected error code #{resp.status}" \
"#{UNEXPECTED_ERROR_SUFFIX}"
raise(Signet::AuthorizationError, msg)
end
end
end
end
end
end

View File

@ -77,6 +77,27 @@ module Signet
block.call(self)
end
end
def retry_with_error(max_retry_count = 5)
retry_count = 0
begin
yield
rescue => e
if e.is_a?(Signet::AuthorizationError) || e.is_a?(Signet::ParseError)
raise e
end
if retry_count < max_retry_count
retry_count += 1
sleep retry_count * 0.3
retry
else
msg = "Unexpected error: #{e.inspect}"
raise(Signet::AuthorizationError, msg)
end
end
end
end
end
end

View File

@ -92,6 +92,8 @@ module Google
# Revokes the credential
def revoke!(options = {})
c = options[:connection] || Faraday.default_connection
retry_with_error do
resp = c.get(REVOKE_TOKEN_URI, token: refresh_token || access_token)
case resp.status
when 200
@ -103,6 +105,7 @@ module Google
"Unexpected error code #{resp.status}")
end
end
end
# Verifies that a credential grants the requested scope
#

View File

@ -77,6 +77,20 @@ describe Google::Auth::GCECredentials do
.to raise_error Signet::AuthorizationError
expect(stub).to have_been_requested
end
it 'should fail with Signet::AuthorizationError if request times out' do
allow_any_instance_of(Faraday::Connection).to receive(:get)
.and_raise(Faraday::TimeoutError)
expect { @client.fetch_access_token! }
.to raise_error Signet::AuthorizationError
end
it 'should fail with Signet::AuthorizationError if request fails' do
allow_any_instance_of(Faraday::Connection).to receive(:get)
.and_raise(Faraday::ConnectionFailed, nil)
expect { @client.fetch_access_token! }
.to raise_error Signet::AuthorizationError
end
end
end

View File

@ -293,4 +293,20 @@ describe Google::Auth::UserRefreshCredentials do
)
end
end
describe 'when erros occured with request' do
it 'should fail with Signet::AuthorizationError if request times out' do
allow_any_instance_of(Faraday::Connection).to receive(:get)
.and_raise(Faraday::TimeoutError)
expect { @client.revoke! }
.to raise_error Signet::AuthorizationError
end
it 'should fail with Signet::AuthorizationError if request fails' do
allow_any_instance_of(Faraday::Connection).to receive(:get)
.and_raise(Faraday::ConnectionFailed, nil)
expect { @client.revoke! }
.to raise_error Signet::AuthorizationError
end
end
end