fix read on closed body in httpmock
This commit is contained in:
parent
be4a613b1c
commit
b2ee6317a3
|
@ -154,11 +154,11 @@ func NewMockServer(rec MockRecorder, procedures ...MockServerProcedure) *httptes
|
||||||
|
|
||||||
handler = http.HandlerFunc(
|
handler = http.HandlerFunc(
|
||||||
func(w http.ResponseWriter, r *http.Request) {
|
func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if rec != nil {
|
||||||
|
rec.Record(r)
|
||||||
|
}
|
||||||
for _, proc := range procedures {
|
for _, proc := range procedures {
|
||||||
|
|
||||||
if proc.URI == r.URL.RequestURI() && proc.HTTPMethod == r.Method {
|
if proc.URI == r.URL.RequestURI() && proc.HTTPMethod == r.Method {
|
||||||
|
|
||||||
headers := w.Header()
|
headers := w.Header()
|
||||||
for hkey, hvalue := range proc.Response.Headers {
|
for hkey, hvalue := range proc.Response.Headers {
|
||||||
headers[hkey] = hvalue
|
headers[hkey] = hvalue
|
||||||
|
@ -172,9 +172,6 @@ func NewMockServer(rec MockRecorder, procedures ...MockServerProcedure) *httptes
|
||||||
w.WriteHeader(code)
|
w.WriteHeader(code)
|
||||||
w.Write(proc.Response.Body)
|
w.Write(proc.Response.Body)
|
||||||
|
|
||||||
if rec != nil {
|
|
||||||
rec.Record(r)
|
|
||||||
}
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue