2017-04-18 06:22:06 +00:00
|
|
|
package middlewares
|
|
|
|
|
|
|
|
import (
|
2017-05-03 08:20:33 +00:00
|
|
|
"context"
|
2017-04-18 06:22:06 +00:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
2018-01-04 10:18:03 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2017-04-18 06:22:06 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestRetry(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
failAtCalls []int
|
|
|
|
attempts int
|
|
|
|
responseStatus int
|
|
|
|
listener *countingRetryListener
|
|
|
|
retriedCount int
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
failAtCalls: []int{1, 2},
|
|
|
|
attempts: 3,
|
|
|
|
responseStatus: http.StatusOK,
|
|
|
|
listener: &countingRetryListener{},
|
|
|
|
retriedCount: 2,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
failAtCalls: []int{1, 2},
|
|
|
|
attempts: 2,
|
|
|
|
responseStatus: http.StatusBadGateway,
|
|
|
|
listener: &countingRetryListener{},
|
|
|
|
retriedCount: 1,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
// bind tc locally
|
|
|
|
tc := tc
|
|
|
|
tcName := fmt.Sprintf("FailAtCalls(%v) RetryAttempts(%v)", tc.failAtCalls, tc.attempts)
|
|
|
|
|
|
|
|
t.Run(tcName, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
2017-08-18 00:18:02 +00:00
|
|
|
var httpHandler http.Handler = &networkFailingHTTPHandler{failAtCalls: tc.failAtCalls, netErrorRecorder: &DefaultNetErrorRecorder{}}
|
2017-04-18 06:22:06 +00:00
|
|
|
httpHandler = NewRetry(tc.attempts, httpHandler, tc.listener)
|
|
|
|
|
|
|
|
recorder := httptest.NewRecorder()
|
2017-11-20 08:40:03 +00:00
|
|
|
req, err := http.NewRequest(http.MethodGet, "http://localhost:3000/ok", ioutil.NopCloser(nil))
|
2017-04-18 06:22:06 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("could not create request: %+v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
httpHandler.ServeHTTP(recorder, req)
|
|
|
|
|
|
|
|
if tc.responseStatus != recorder.Code {
|
|
|
|
t.Errorf("wrong status code %d, want %d", recorder.Code, tc.responseStatus)
|
|
|
|
}
|
|
|
|
if tc.retriedCount != tc.listener.timesCalled {
|
|
|
|
t.Errorf("RetryListener called %d times, want %d times", tc.listener.timesCalled, tc.retriedCount)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-03 08:20:33 +00:00
|
|
|
func TestDefaultNetErrorRecorderSuccess(t *testing.T) {
|
|
|
|
boolNetErrorOccurred := false
|
|
|
|
recorder := DefaultNetErrorRecorder{}
|
|
|
|
recorder.Record(context.WithValue(context.Background(), defaultNetErrCtxKey, &boolNetErrorOccurred))
|
|
|
|
if !boolNetErrorOccurred {
|
|
|
|
t.Errorf("got %v after recording net error, wanted %v", boolNetErrorOccurred, true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDefaultNetErrorRecorderInvalidValueType(t *testing.T) {
|
|
|
|
stringNetErrorOccured := "nonsense"
|
|
|
|
recorder := DefaultNetErrorRecorder{}
|
|
|
|
recorder.Record(context.WithValue(context.Background(), defaultNetErrCtxKey, &stringNetErrorOccured))
|
|
|
|
if stringNetErrorOccured != "nonsense" {
|
|
|
|
t.Errorf("got %v after recording net error, wanted %v", stringNetErrorOccured, "nonsense")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDefaultNetErrorRecorderNilValue(t *testing.T) {
|
|
|
|
nilNetErrorOccured := interface{}(nil)
|
|
|
|
recorder := DefaultNetErrorRecorder{}
|
|
|
|
recorder.Record(context.WithValue(context.Background(), defaultNetErrCtxKey, &nilNetErrorOccured))
|
|
|
|
if nilNetErrorOccured != interface{}(nil) {
|
|
|
|
t.Errorf("got %v after recording net error, wanted %v", nilNetErrorOccured, interface{}(nil))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-28 10:50:02 +00:00
|
|
|
func TestRetryListeners(t *testing.T) {
|
|
|
|
req := httptest.NewRequest(http.MethodGet, "/", nil)
|
|
|
|
retryListeners := RetryListeners{&countingRetryListener{}, &countingRetryListener{}}
|
|
|
|
|
|
|
|
retryListeners.Retried(req, 1)
|
|
|
|
retryListeners.Retried(req, 1)
|
|
|
|
|
|
|
|
for _, retryListener := range retryListeners {
|
|
|
|
listener := retryListener.(*countingRetryListener)
|
|
|
|
if listener.timesCalled != 2 {
|
|
|
|
t.Errorf("retry listener was called %d times, want %d", listener.timesCalled, 2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-18 06:22:06 +00:00
|
|
|
// networkFailingHTTPHandler is an http.Handler implementation you can use to test retries.
|
|
|
|
type networkFailingHTTPHandler struct {
|
2017-05-03 08:20:33 +00:00
|
|
|
netErrorRecorder NetErrorRecorder
|
|
|
|
failAtCalls []int
|
|
|
|
callNumber int
|
2017-04-18 06:22:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (handler *networkFailingHTTPHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
handler.callNumber++
|
|
|
|
|
|
|
|
for _, failAtCall := range handler.failAtCalls {
|
|
|
|
if handler.callNumber == failAtCall {
|
2017-05-03 08:20:33 +00:00
|
|
|
handler.netErrorRecorder.Record(r.Context())
|
|
|
|
|
2017-04-18 06:22:06 +00:00
|
|
|
w.WriteHeader(http.StatusBadGateway)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
}
|
|
|
|
|
|
|
|
// countingRetryListener is a RetryListener implementation to count the times the Retried fn is called.
|
|
|
|
type countingRetryListener struct {
|
|
|
|
timesCalled int
|
|
|
|
}
|
|
|
|
|
2017-08-28 10:50:02 +00:00
|
|
|
func (l *countingRetryListener) Retried(req *http.Request, attempt int) {
|
2017-04-18 06:22:06 +00:00
|
|
|
l.timesCalled++
|
|
|
|
}
|
2018-01-02 15:02:03 +00:00
|
|
|
|
|
|
|
func TestRetryWithFlush(t *testing.T) {
|
|
|
|
next := http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
|
|
|
|
rw.WriteHeader(200)
|
|
|
|
rw.Write([]byte("FULL "))
|
|
|
|
rw.(http.Flusher).Flush()
|
|
|
|
rw.Write([]byte("DATA"))
|
|
|
|
})
|
|
|
|
|
|
|
|
retry := NewRetry(1, next, &countingRetryListener{})
|
|
|
|
responseRecorder := httptest.NewRecorder()
|
|
|
|
|
|
|
|
retry.ServeHTTP(responseRecorder, &http.Request{})
|
|
|
|
|
|
|
|
if responseRecorder.Body.String() != "FULL DATA" {
|
|
|
|
t.Errorf("Wrong body %q want %q", responseRecorder.Body.String(), "FULL DATA")
|
|
|
|
}
|
|
|
|
}
|
2018-01-04 10:18:03 +00:00
|
|
|
|
|
|
|
func TestNewRetryResponseRecorder(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
|
|
|
rw http.ResponseWriter
|
|
|
|
expected http.ResponseWriter
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "Without Close Notify",
|
|
|
|
rw: httptest.NewRecorder(),
|
|
|
|
expected: &retryResponseRecorderWithoutCloseNotify{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "With Close Notify",
|
|
|
|
rw: &mockRWCloseNotify{},
|
|
|
|
expected: &retryResponseRecorderWithCloseNotify{},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
rec := newRetryResponseRecorder(test.rw)
|
|
|
|
|
|
|
|
assert.IsType(t, rec, test.expected)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type mockRWCloseNotify struct{}
|
|
|
|
|
|
|
|
func (m *mockRWCloseNotify) CloseNotify() <-chan bool {
|
|
|
|
panic("implement me")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockRWCloseNotify) Header() http.Header {
|
|
|
|
panic("implement me")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockRWCloseNotify) Write([]byte) (int, error) {
|
|
|
|
panic("implement me")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockRWCloseNotify) WriteHeader(int) {
|
|
|
|
panic("implement me")
|
|
|
|
}
|