-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(compute/metadata): fix retry logic to not panic on error (#4714)
In the case of an error res will be nil. Also, we should not break on nil err as it might be eligible for a retry from the status code. Fixes: #4713
- Loading branch information
Showing
4 changed files
with
117 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
// Copyright 2016 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
//go:build go1.13 | ||
// +build go1.13 | ||
|
||
package metadata | ||
|
||
import ( | ||
"io" | ||
"io/ioutil" | ||
"net/http" | ||
"strings" | ||
"testing" | ||
) | ||
|
||
func TestRetry(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
timesToFail int | ||
failCode int | ||
failErr error | ||
response string | ||
}{ | ||
{ | ||
name: "no retries", | ||
response: "test", | ||
}, | ||
{ | ||
name: "retry 500 once", | ||
response: "test", | ||
failCode: 500, | ||
timesToFail: 1, | ||
}, | ||
{ | ||
name: "retry io.ErrUnexpectedEOF once", | ||
response: "test", | ||
failErr: io.ErrUnexpectedEOF, | ||
timesToFail: 1, | ||
}, | ||
} | ||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
ft := &failingTransport{ | ||
timesToFail: tt.timesToFail, | ||
failCode: tt.failCode, | ||
failErr: tt.failErr, | ||
response: tt.response, | ||
} | ||
c := NewClient(&http.Client{Transport: ft}) | ||
s, err := c.Get("") | ||
if err != nil { | ||
t.Fatalf("unexpected error: %v", err) | ||
} | ||
if ft.called != ft.failedAttempts+1 { | ||
t.Fatalf("failed %d times, want %d", ft.called, ft.failedAttempts+1) | ||
} | ||
if s != tt.response { | ||
t.Fatalf("c.Get() = %q, want %q", s, tt.response) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
type failingTransport struct { | ||
timesToFail int | ||
failCode int | ||
failErr error | ||
response string | ||
|
||
failedAttempts int | ||
called int | ||
} | ||
|
||
func (r *failingTransport) RoundTrip(req *http.Request) (*http.Response, error) { | ||
r.called++ | ||
if r.failedAttempts < r.timesToFail { | ||
r.failedAttempts++ | ||
if r.failErr != nil { | ||
return nil, r.failErr | ||
} | ||
return &http.Response{StatusCode: r.failCode}, nil | ||
} | ||
return &http.Response{StatusCode: http.StatusOK, Body: ioutil.NopCloser(strings.NewReader(r.response))}, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters