-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
proxy: record request Body for retry (fixes #1229)
- Loading branch information
Showing
4 changed files
with
181 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package proxy | ||
|
||
import ( | ||
"bytes" | ||
"io" | ||
"io/ioutil" | ||
) | ||
|
||
type bufferedBody struct { | ||
*bytes.Reader | ||
} | ||
|
||
func (*bufferedBody) Close() error { | ||
return nil | ||
} | ||
|
||
// rewind allows bufferedBody to be read again. | ||
func (b *bufferedBody) rewind() error { | ||
if b == nil { | ||
return nil | ||
} | ||
_, err := b.Seek(0, io.SeekStart) | ||
return err | ||
} | ||
|
||
// newBufferedBody returns *bufferedBody to use in place of src. Closes src | ||
// and returns Read error on src. All content from src is buffered. | ||
func newBufferedBody(src io.ReadCloser) (*bufferedBody, error) { | ||
if src == nil { | ||
return nil, nil | ||
} | ||
b, err := ioutil.ReadAll(src) | ||
src.Close() | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &bufferedBody{ | ||
Reader: bytes.NewReader(b), | ||
}, 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
package proxy | ||
|
||
import ( | ||
"bytes" | ||
"io" | ||
"io/ioutil" | ||
"net/http" | ||
"net/http/httptest" | ||
"testing" | ||
) | ||
|
||
func TestBodyRetry(t *testing.T) { | ||
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | ||
io.Copy(w, r.Body) | ||
r.Body.Close() | ||
})) | ||
defer ts.Close() | ||
|
||
testcase := "test content" | ||
req, err := http.NewRequest(http.MethodPost, ts.URL, bytes.NewBufferString(testcase)) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
body, err := newBufferedBody(req.Body) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
if body != nil { | ||
req.Body = body | ||
} | ||
|
||
// simulate fail request | ||
host := req.URL.Host | ||
req.URL.Host = "example.com" | ||
body.rewind() | ||
_, _ = http.DefaultTransport.RoundTrip(req) | ||
|
||
// retry request | ||
req.URL.Host = host | ||
body.rewind() | ||
resp, err := http.DefaultTransport.RoundTrip(req) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
result, err := ioutil.ReadAll(resp.Body) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
resp.Body.Close() | ||
if string(result) != testcase { | ||
t.Fatalf("result = %s, want %s", result, testcase) | ||
} | ||
|
||
// try one more time for body reuse | ||
body.rewind() | ||
resp, err = http.DefaultTransport.RoundTrip(req) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
result, err = ioutil.ReadAll(resp.Body) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
resp.Body.Close() | ||
if string(result) != testcase { | ||
t.Fatalf("result = %s, want %s", result, testcase) | ||
} | ||
} |
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