Fix high memory usage in retry middleware
This commit is contained in:
parent
cc5ee00b89
commit
ef4aa202d0
8 changed files with 276 additions and 151 deletions
25
integration/fixtures/retry/simple.toml
Normal file
25
integration/fixtures/retry/simple.toml
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
defaultEntryPoints = ["http"]
|
||||||
|
|
||||||
|
logLevel = "DEBUG"
|
||||||
|
|
||||||
|
[entryPoints]
|
||||||
|
[entryPoints.http]
|
||||||
|
address = ":8000"
|
||||||
|
|
||||||
|
[api]
|
||||||
|
|
||||||
|
[retry]
|
||||||
|
|
||||||
|
[file]
|
||||||
|
[backends]
|
||||||
|
[backends.backend1]
|
||||||
|
[backends.backend1.servers.server1]
|
||||||
|
url = "http://{{.WhoamiEndpoint}}:8080" # not valid
|
||||||
|
[backends.backend1.servers.server2]
|
||||||
|
url = "http://{{.WhoamiEndpoint}}:80"
|
||||||
|
|
||||||
|
[frontends]
|
||||||
|
[frontends.frontend1]
|
||||||
|
backend = "backend1"
|
||||||
|
[frontends.frontend1.routes.test_1]
|
||||||
|
rule = "PathPrefix:/"
|
|
@ -54,6 +54,7 @@ func init() {
|
||||||
check.Suite(&MarathonSuite{})
|
check.Suite(&MarathonSuite{})
|
||||||
check.Suite(&MesosSuite{})
|
check.Suite(&MesosSuite{})
|
||||||
check.Suite(&RateLimitSuite{})
|
check.Suite(&RateLimitSuite{})
|
||||||
|
check.Suite(&RetrySuite{})
|
||||||
check.Suite(&SimpleSuite{})
|
check.Suite(&SimpleSuite{})
|
||||||
check.Suite(&TimeoutSuite{})
|
check.Suite(&TimeoutSuite{})
|
||||||
check.Suite(&TracingSuite{})
|
check.Suite(&TracingSuite{})
|
||||||
|
|
2
integration/resources/compose/retry.yml
Normal file
2
integration/resources/compose/retry.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
whoami:
|
||||||
|
image: emilevauge/whoami
|
40
integration/retry_test.go
Normal file
40
integration/retry_test.go
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
package integration
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
"os"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/containous/traefik/integration/try"
|
||||||
|
"github.com/go-check/check"
|
||||||
|
checker "github.com/vdemeester/shakers"
|
||||||
|
)
|
||||||
|
|
||||||
|
type RetrySuite struct{ BaseSuite }
|
||||||
|
|
||||||
|
func (s *RetrySuite) SetUpSuite(c *check.C) {
|
||||||
|
s.createComposeProject(c, "retry")
|
||||||
|
s.composeProject.Start(c)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *RetrySuite) TestRetry(c *check.C) {
|
||||||
|
whoamiEndpoint := s.composeProject.Container(c, "whoami").NetworkSettings.IPAddress
|
||||||
|
file := s.adaptFile(c, "fixtures/retry/simple.toml", struct {
|
||||||
|
WhoamiEndpoint string
|
||||||
|
}{whoamiEndpoint})
|
||||||
|
defer os.Remove(file)
|
||||||
|
|
||||||
|
cmd, display := s.traefikCmd(withConfigFile(file))
|
||||||
|
defer display(c)
|
||||||
|
err := cmd.Start()
|
||||||
|
c.Assert(err, checker.IsNil)
|
||||||
|
defer cmd.Process.Kill()
|
||||||
|
|
||||||
|
err = try.GetRequest("http://127.0.0.1:8080/api/providers", 60*time.Second, try.BodyContains("PathPrefix:/"))
|
||||||
|
c.Assert(err, checker.IsNil)
|
||||||
|
|
||||||
|
// This simulates a DialTimeout when connecting to the backend server.
|
||||||
|
response, err := http.Get("http://127.0.0.1:8000/")
|
||||||
|
c.Assert(err, checker.IsNil)
|
||||||
|
c.Assert(response.StatusCode, checker.Equals, http.StatusOK)
|
||||||
|
}
|
|
@ -1,6 +1,9 @@
|
||||||
package middlewares
|
package middlewares
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bufio"
|
||||||
|
"bytes"
|
||||||
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
@ -11,6 +14,9 @@ import (
|
||||||
"github.com/vulcand/oxy/utils"
|
"github.com/vulcand/oxy/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Compile time validation that the response recorder implements http interfaces correctly.
|
||||||
|
var _ Stateful = &errorPagesResponseRecorderWithCloseNotify{}
|
||||||
|
|
||||||
//ErrorPagesHandler is a middleware that provides the custom error pages
|
//ErrorPagesHandler is a middleware that provides the custom error pages
|
||||||
type ErrorPagesHandler struct {
|
type ErrorPagesHandler struct {
|
||||||
HTTPCodeRanges [][2]int
|
HTTPCodeRanges [][2]int
|
||||||
|
@ -52,7 +58,7 @@ func NewErrorPagesHandler(errorPage *types.ErrorPage, backendURL string) (*Error
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ep *ErrorPagesHandler) ServeHTTP(w http.ResponseWriter, req *http.Request, next http.HandlerFunc) {
|
func (ep *ErrorPagesHandler) ServeHTTP(w http.ResponseWriter, req *http.Request, next http.HandlerFunc) {
|
||||||
recorder := newRetryResponseRecorder(w)
|
recorder := newErrorPagesResponseRecorder(w)
|
||||||
|
|
||||||
next.ServeHTTP(recorder, req)
|
next.ServeHTTP(recorder, req)
|
||||||
|
|
||||||
|
@ -75,3 +81,108 @@ func (ep *ErrorPagesHandler) ServeHTTP(w http.ResponseWriter, req *http.Request,
|
||||||
utils.CopyHeaders(w.Header(), recorder.Header())
|
utils.CopyHeaders(w.Header(), recorder.Header())
|
||||||
w.Write(recorder.GetBody().Bytes())
|
w.Write(recorder.GetBody().Bytes())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type errorPagesResponseRecorder interface {
|
||||||
|
http.ResponseWriter
|
||||||
|
http.Flusher
|
||||||
|
GetCode() int
|
||||||
|
GetBody() *bytes.Buffer
|
||||||
|
IsStreamingResponseStarted() bool
|
||||||
|
}
|
||||||
|
|
||||||
|
// newErrorPagesResponseRecorder returns an initialized responseRecorder.
|
||||||
|
func newErrorPagesResponseRecorder(rw http.ResponseWriter) errorPagesResponseRecorder {
|
||||||
|
recorder := &errorPagesResponseRecorderWithoutCloseNotify{
|
||||||
|
HeaderMap: make(http.Header),
|
||||||
|
Body: new(bytes.Buffer),
|
||||||
|
Code: http.StatusOK,
|
||||||
|
responseWriter: rw,
|
||||||
|
}
|
||||||
|
if _, ok := rw.(http.CloseNotifier); ok {
|
||||||
|
return &errorPagesResponseRecorderWithCloseNotify{recorder}
|
||||||
|
}
|
||||||
|
return recorder
|
||||||
|
}
|
||||||
|
|
||||||
|
// errorPagesResponseRecorderWithoutCloseNotify is an implementation of http.ResponseWriter that
|
||||||
|
// records its mutations for later inspection.
|
||||||
|
type errorPagesResponseRecorderWithoutCloseNotify struct {
|
||||||
|
Code int // the HTTP response code from WriteHeader
|
||||||
|
HeaderMap http.Header // the HTTP response headers
|
||||||
|
Body *bytes.Buffer // if non-nil, the bytes.Buffer to append written data to
|
||||||
|
|
||||||
|
responseWriter http.ResponseWriter
|
||||||
|
err error
|
||||||
|
streamingResponseStarted bool
|
||||||
|
}
|
||||||
|
|
||||||
|
type errorPagesResponseRecorderWithCloseNotify struct {
|
||||||
|
*errorPagesResponseRecorderWithoutCloseNotify
|
||||||
|
}
|
||||||
|
|
||||||
|
// CloseNotify returns a channel that receives at most a
|
||||||
|
// single value (true) when the client connection has gone
|
||||||
|
// away.
|
||||||
|
func (rw *errorPagesResponseRecorderWithCloseNotify) CloseNotify() <-chan bool {
|
||||||
|
return rw.responseWriter.(http.CloseNotifier).CloseNotify()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Header returns the response headers.
|
||||||
|
func (rw *errorPagesResponseRecorderWithoutCloseNotify) Header() http.Header {
|
||||||
|
m := rw.HeaderMap
|
||||||
|
if m == nil {
|
||||||
|
m = make(http.Header)
|
||||||
|
rw.HeaderMap = m
|
||||||
|
}
|
||||||
|
return m
|
||||||
|
}
|
||||||
|
|
||||||
|
func (rw *errorPagesResponseRecorderWithoutCloseNotify) GetCode() int {
|
||||||
|
return rw.Code
|
||||||
|
}
|
||||||
|
|
||||||
|
func (rw *errorPagesResponseRecorderWithoutCloseNotify) GetBody() *bytes.Buffer {
|
||||||
|
return rw.Body
|
||||||
|
}
|
||||||
|
|
||||||
|
func (rw *errorPagesResponseRecorderWithoutCloseNotify) IsStreamingResponseStarted() bool {
|
||||||
|
return rw.streamingResponseStarted
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write always succeeds and writes to rw.Body, if not nil.
|
||||||
|
func (rw *errorPagesResponseRecorderWithoutCloseNotify) Write(buf []byte) (int, error) {
|
||||||
|
if rw.err != nil {
|
||||||
|
return 0, rw.err
|
||||||
|
}
|
||||||
|
return rw.Body.Write(buf)
|
||||||
|
}
|
||||||
|
|
||||||
|
// WriteHeader sets rw.Code.
|
||||||
|
func (rw *errorPagesResponseRecorderWithoutCloseNotify) WriteHeader(code int) {
|
||||||
|
rw.Code = code
|
||||||
|
}
|
||||||
|
|
||||||
|
// Hijack hijacks the connection
|
||||||
|
func (rw *errorPagesResponseRecorderWithoutCloseNotify) Hijack() (net.Conn, *bufio.ReadWriter, error) {
|
||||||
|
return rw.responseWriter.(http.Hijacker).Hijack()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Flush sends any buffered data to the client.
|
||||||
|
func (rw *errorPagesResponseRecorderWithoutCloseNotify) Flush() {
|
||||||
|
if !rw.streamingResponseStarted {
|
||||||
|
utils.CopyHeaders(rw.responseWriter.Header(), rw.Header())
|
||||||
|
rw.responseWriter.WriteHeader(rw.Code)
|
||||||
|
rw.streamingResponseStarted = true
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err := rw.responseWriter.Write(rw.Body.Bytes())
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("Error writing response in responseRecorder: %s", err)
|
||||||
|
rw.err = err
|
||||||
|
}
|
||||||
|
rw.Body.Reset()
|
||||||
|
flusher, ok := rw.responseWriter.(http.Flusher)
|
||||||
|
if ok {
|
||||||
|
flusher.Flush()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -152,3 +152,51 @@ func TestErrorPageSingleCode(t *testing.T) {
|
||||||
assert.Contains(t, recorder.Body.String(), "503 Test Server")
|
assert.Contains(t, recorder.Body.String(), "503 Test Server")
|
||||||
assert.NotContains(t, recorder.Body.String(), "oops", "Should not return the oops page")
|
assert.NotContains(t, recorder.Body.String(), "oops", "Should not return the oops page")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestNewErrorPagesResponseRecorder(t *testing.T) {
|
||||||
|
testCases := []struct {
|
||||||
|
desc string
|
||||||
|
rw http.ResponseWriter
|
||||||
|
expected http.ResponseWriter
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
desc: "Without Close Notify",
|
||||||
|
rw: httptest.NewRecorder(),
|
||||||
|
expected: &errorPagesResponseRecorderWithoutCloseNotify{},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
desc: "With Close Notify",
|
||||||
|
rw: &mockRWCloseNotify{},
|
||||||
|
expected: &errorPagesResponseRecorderWithCloseNotify{},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, test := range testCases {
|
||||||
|
test := test
|
||||||
|
t.Run(test.desc, func(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
rec := newErrorPagesResponseRecorder(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")
|
||||||
|
}
|
||||||
|
|
|
@ -2,20 +2,16 @@ package middlewares
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"bytes"
|
|
||||||
"context"
|
"context"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"github.com/containous/traefik/log"
|
"github.com/containous/traefik/log"
|
||||||
"github.com/vulcand/oxy/utils"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// Compile time validation responseRecorder implements http interfaces correctly.
|
// Compile time validation that the response writer implements http interfaces correctly.
|
||||||
var (
|
var _ Stateful = &retryResponseWriterWithCloseNotify{}
|
||||||
_ Stateful = &retryResponseRecorderWithCloseNotify{}
|
|
||||||
)
|
|
||||||
|
|
||||||
// Retry is a middleware that retries requests
|
// Retry is a middleware that retries requests
|
||||||
type Retry struct {
|
type Retry struct {
|
||||||
|
@ -41,30 +37,20 @@ func (retry *Retry) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
|
||||||
defer body.Close()
|
defer body.Close()
|
||||||
r.Body = ioutil.NopCloser(body)
|
r.Body = ioutil.NopCloser(body)
|
||||||
}
|
}
|
||||||
|
|
||||||
attempts := 1
|
attempts := 1
|
||||||
for {
|
for {
|
||||||
netErrorOccurred := false
|
netErrorOccurred := false
|
||||||
// We pass in a pointer to netErrorOccurred so that we can set it to true on network errors
|
// We pass in a pointer to netErrorOccurred so that we can set it to true on network errors
|
||||||
// when proxying the HTTP requests to the backends. This happens in the custom RecordingErrorHandler.
|
// when proxying the HTTP requests to the backends. This happens in the custom RecordingErrorHandler.
|
||||||
newCtx := context.WithValue(r.Context(), defaultNetErrCtxKey, &netErrorOccurred)
|
newCtx := context.WithValue(r.Context(), defaultNetErrCtxKey, &netErrorOccurred)
|
||||||
|
retryResponseWriter := newRetryResponseWriter(rw, attempts >= retry.attempts, &netErrorOccurred)
|
||||||
|
|
||||||
recorder := newRetryResponseRecorder(rw)
|
retry.next.ServeHTTP(retryResponseWriter, r.WithContext(newCtx))
|
||||||
|
if !retryResponseWriter.ShouldRetry() {
|
||||||
retry.next.ServeHTTP(recorder, r.WithContext(newCtx))
|
|
||||||
|
|
||||||
// It's a stream request and the body gets already sent to the client.
|
|
||||||
// Therefore we should not send the response a second time.
|
|
||||||
if recorder.IsStreamingResponseStarted() {
|
|
||||||
recorder.Flush()
|
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
if !netErrorOccurred || attempts >= retry.attempts {
|
|
||||||
utils.CopyHeaders(rw.Header(), recorder.Header())
|
|
||||||
rw.WriteHeader(recorder.GetCode())
|
|
||||||
rw.Write(recorder.GetBody().Bytes())
|
|
||||||
break
|
|
||||||
}
|
|
||||||
attempts++
|
attempts++
|
||||||
log.Debugf("New attempt %d for request: %v", attempts, r.URL)
|
log.Debugf("New attempt %d for request: %v", attempts, r.URL)
|
||||||
retry.listener.Retried(r, attempts)
|
retry.listener.Retried(r, attempts)
|
||||||
|
@ -114,107 +100,69 @@ func (l RetryListeners) Retried(req *http.Request, attempt int) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type retryResponseRecorder interface {
|
type retryResponseWriter interface {
|
||||||
http.ResponseWriter
|
http.ResponseWriter
|
||||||
http.Flusher
|
http.Flusher
|
||||||
GetCode() int
|
ShouldRetry() bool
|
||||||
GetBody() *bytes.Buffer
|
|
||||||
IsStreamingResponseStarted() bool
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// newRetryResponseRecorder returns an initialized retryResponseRecorder.
|
func newRetryResponseWriter(rw http.ResponseWriter, attemptsExhausted bool, netErrorOccured *bool) retryResponseWriter {
|
||||||
func newRetryResponseRecorder(rw http.ResponseWriter) retryResponseRecorder {
|
responseWriter := &retryResponseWriterWithoutCloseNotify{
|
||||||
recorder := &retryResponseRecorderWithoutCloseNotify{
|
responseWriter: rw,
|
||||||
HeaderMap: make(http.Header),
|
attemptsExhausted: attemptsExhausted,
|
||||||
Body: new(bytes.Buffer),
|
netErrorOccured: netErrorOccured,
|
||||||
Code: http.StatusOK,
|
|
||||||
responseWriter: rw,
|
|
||||||
}
|
}
|
||||||
if _, ok := rw.(http.CloseNotifier); ok {
|
if _, ok := rw.(http.CloseNotifier); ok {
|
||||||
return &retryResponseRecorderWithCloseNotify{recorder}
|
return &retryResponseWriterWithCloseNotify{responseWriter}
|
||||||
}
|
}
|
||||||
return recorder
|
return responseWriter
|
||||||
}
|
}
|
||||||
|
|
||||||
// retryResponseRecorderWithoutCloseNotify is an implementation of http.ResponseWriter that
|
type retryResponseWriterWithoutCloseNotify struct {
|
||||||
// records its mutations for later inspection.
|
responseWriter http.ResponseWriter
|
||||||
type retryResponseRecorderWithoutCloseNotify struct {
|
attemptsExhausted bool
|
||||||
Code int // the HTTP response code from WriteHeader
|
netErrorOccured *bool
|
||||||
HeaderMap http.Header // the HTTP response headers
|
|
||||||
Body *bytes.Buffer // if non-nil, the bytes.Buffer to append written data to
|
|
||||||
|
|
||||||
responseWriter http.ResponseWriter
|
|
||||||
err error
|
|
||||||
streamingResponseStarted bool
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type retryResponseRecorderWithCloseNotify struct {
|
func (rr *retryResponseWriterWithoutCloseNotify) ShouldRetry() bool {
|
||||||
*retryResponseRecorderWithoutCloseNotify
|
return *rr.netErrorOccured == true && !rr.attemptsExhausted
|
||||||
}
|
}
|
||||||
|
|
||||||
// CloseNotify returns a channel that receives at most a
|
func (rr *retryResponseWriterWithoutCloseNotify) Header() http.Header {
|
||||||
// single value (true) when the client connection has gone
|
if rr.ShouldRetry() {
|
||||||
// away.
|
return make(http.Header)
|
||||||
func (rw *retryResponseRecorderWithCloseNotify) CloseNotify() <-chan bool {
|
|
||||||
return rw.responseWriter.(http.CloseNotifier).CloseNotify()
|
|
||||||
}
|
|
||||||
|
|
||||||
// Header returns the response headers.
|
|
||||||
func (rw *retryResponseRecorderWithoutCloseNotify) Header() http.Header {
|
|
||||||
m := rw.HeaderMap
|
|
||||||
if m == nil {
|
|
||||||
m = make(http.Header)
|
|
||||||
rw.HeaderMap = m
|
|
||||||
}
|
}
|
||||||
return m
|
return rr.responseWriter.Header()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (rw *retryResponseRecorderWithoutCloseNotify) GetCode() int {
|
func (rr *retryResponseWriterWithoutCloseNotify) Write(buf []byte) (int, error) {
|
||||||
return rw.Code
|
if rr.ShouldRetry() {
|
||||||
}
|
return 0, nil
|
||||||
|
|
||||||
func (rw *retryResponseRecorderWithoutCloseNotify) GetBody() *bytes.Buffer {
|
|
||||||
return rw.Body
|
|
||||||
}
|
|
||||||
|
|
||||||
func (rw *retryResponseRecorderWithoutCloseNotify) IsStreamingResponseStarted() bool {
|
|
||||||
return rw.streamingResponseStarted
|
|
||||||
}
|
|
||||||
|
|
||||||
// Write always succeeds and writes to rw.Body, if not nil.
|
|
||||||
func (rw *retryResponseRecorderWithoutCloseNotify) Write(buf []byte) (int, error) {
|
|
||||||
if rw.err != nil {
|
|
||||||
return 0, rw.err
|
|
||||||
}
|
}
|
||||||
return rw.Body.Write(buf)
|
return rr.responseWriter.Write(buf)
|
||||||
}
|
}
|
||||||
|
|
||||||
// WriteHeader sets rw.Code.
|
func (rr *retryResponseWriterWithoutCloseNotify) WriteHeader(code int) {
|
||||||
func (rw *retryResponseRecorderWithoutCloseNotify) WriteHeader(code int) {
|
if rr.ShouldRetry() {
|
||||||
rw.Code = code
|
return
|
||||||
}
|
|
||||||
|
|
||||||
// Hijack hijacks the connection
|
|
||||||
func (rw *retryResponseRecorderWithoutCloseNotify) Hijack() (net.Conn, *bufio.ReadWriter, error) {
|
|
||||||
return rw.responseWriter.(http.Hijacker).Hijack()
|
|
||||||
}
|
|
||||||
|
|
||||||
// Flush sends any buffered data to the client.
|
|
||||||
func (rw *retryResponseRecorderWithoutCloseNotify) Flush() {
|
|
||||||
if !rw.streamingResponseStarted {
|
|
||||||
utils.CopyHeaders(rw.responseWriter.Header(), rw.Header())
|
|
||||||
rw.responseWriter.WriteHeader(rw.Code)
|
|
||||||
rw.streamingResponseStarted = true
|
|
||||||
}
|
}
|
||||||
|
rr.responseWriter.WriteHeader(code)
|
||||||
|
}
|
||||||
|
|
||||||
_, err := rw.responseWriter.Write(rw.Body.Bytes())
|
func (rr *retryResponseWriterWithoutCloseNotify) Hijack() (net.Conn, *bufio.ReadWriter, error) {
|
||||||
if err != nil {
|
return rr.responseWriter.(http.Hijacker).Hijack()
|
||||||
log.Errorf("Error writing response in retryResponseRecorder: %s", err)
|
}
|
||||||
rw.err = err
|
|
||||||
}
|
func (rr *retryResponseWriterWithoutCloseNotify) Flush() {
|
||||||
rw.Body.Reset()
|
if flusher, ok := rr.responseWriter.(http.Flusher); ok {
|
||||||
flusher, ok := rw.responseWriter.(http.Flusher)
|
|
||||||
if ok {
|
|
||||||
flusher.Flush()
|
flusher.Flush()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type retryResponseWriterWithCloseNotify struct {
|
||||||
|
*retryResponseWriterWithoutCloseNotify
|
||||||
|
}
|
||||||
|
|
||||||
|
func (rr *retryResponseWriterWithCloseNotify) CloseNotify() <-chan bool {
|
||||||
|
return rr.responseWriter.(http.CloseNotifier).CloseNotify()
|
||||||
|
}
|
||||||
|
|
|
@ -7,8 +7,6 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestRetry(t *testing.T) {
|
func TestRetry(t *testing.T) {
|
||||||
|
@ -154,51 +152,3 @@ func TestRetryWithFlush(t *testing.T) {
|
||||||
t.Errorf("Wrong body %q want %q", responseRecorder.Body.String(), "FULL DATA")
|
t.Errorf("Wrong body %q want %q", responseRecorder.Body.String(), "FULL DATA")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
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")
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue