aboutsummaryrefslogtreecommitdiff
path: root/src/net/http
diff options
context:
space:
mode:
authorDamien Neil <dneil@google.com>2022-11-11 12:31:44 -0800
committerDamien Neil <dneil@google.com>2022-11-22 18:52:58 +0000
commit21015cf6baed45a1e7c3d1a0dfe34c778140344f (patch)
tree2cf5e48c4e38e5409b9fb0dd025519485e1ed235 /src/net/http
parent69ca0a859cbd8807b03b7772a11f5a147cd46565 (diff)
downloadgo-21015cf6baed45a1e7c3d1a0dfe34c778140344f.tar.xz
all: enable disabled HTTP/2 tests
Update net/http to enable tests that pass with the latest update to the vendored x/net. Update a few tests: Windows apparently doesn't guarantee that time.Since(time.Now()) is >=0, so to set a definitely-expired write deadline, use a time firmly in the past rather than now. Put a backoff loop on TestServerReadTimeout to avoid failures when the timeout expires mid-TLS-handshake. (The TLS handshake timeout is set to min(ReadTimeout, WriteTimeout, ReadHeaderTimeout); there's no way to set a long TLS handshake timeout and a short read timeout.) Don't close the http.Server in TestServerWriteTimeout while the handler may still be executing, since this can result in us getting the wrong error. Change the GOOS=js fake net implementation to properly return ErrDeadlineExceeded when a read/write deadline is exceeded, rather than EAGAIN. For #49837 For #54136 Change-Id: Id8a4ff6ac58336ff212dda3c8799b320cd6b9c19 Reviewed-on: https://go-review.googlesource.com/c/go/+/449935 Reviewed-by: Bryan Mills <bcmills@google.com> Run-TryBot: Damien Neil <dneil@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/net/http')
-rw-r--r--src/net/http/responsecontroller_test.go23
-rw-r--r--src/net/http/serve_test.go50
2 files changed, 26 insertions, 47 deletions
diff --git a/src/net/http/responsecontroller_test.go b/src/net/http/responsecontroller_test.go
index 90c57016a7..d947504f50 100644
--- a/src/net/http/responsecontroller_test.go
+++ b/src/net/http/responsecontroller_test.go
@@ -13,9 +13,6 @@ import (
func TestResponseControllerFlush(t *testing.T) { run(t, testResponseControllerFlush) }
func testResponseControllerFlush(t *testing.T, mode testMode) {
- if mode == http2Mode {
- t.Skip("skip until h2_bundle.go is updated")
- }
continuec := make(chan struct{})
cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
ctl := NewResponseController(w)
@@ -49,9 +46,6 @@ func testResponseControllerFlush(t *testing.T, mode testMode) {
func TestResponseControllerHijack(t *testing.T) { run(t, testResponseControllerHijack) }
func testResponseControllerHijack(t *testing.T, mode testMode) {
- if mode == http2Mode {
- t.Skip("skip until h2_bundle.go is updated")
- }
const header = "X-Header"
const value = "set"
cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
@@ -83,16 +77,13 @@ func TestResponseControllerSetPastWriteDeadline(t *testing.T) {
run(t, testResponseControllerSetPastWriteDeadline)
}
func testResponseControllerSetPastWriteDeadline(t *testing.T, mode testMode) {
- if mode == http2Mode {
- t.Skip("skip until h2_bundle.go is updated")
- }
cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
ctl := NewResponseController(w)
w.Write([]byte("one"))
if err := ctl.Flush(); err != nil {
t.Errorf("before setting deadline: ctl.Flush() = %v, want nil", err)
}
- if err := ctl.SetWriteDeadline(time.Now()); err != nil {
+ if err := ctl.SetWriteDeadline(time.Now().Add(-10 * time.Second)); err != nil {
t.Errorf("ctl.SetWriteDeadline() = %v, want nil", err)
}
@@ -128,9 +119,6 @@ func TestResponseControllerSetFutureWriteDeadline(t *testing.T) {
run(t, testResponseControllerSetFutureWriteDeadline)
}
func testResponseControllerSetFutureWriteDeadline(t *testing.T, mode testMode) {
- if mode == http2Mode {
- t.Skip("skip until h2_bundle.go is updated")
- }
errc := make(chan error, 1)
startwritec := make(chan struct{})
cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
@@ -167,9 +155,6 @@ func TestResponseControllerSetPastReadDeadline(t *testing.T) {
run(t, testResponseControllerSetPastReadDeadline)
}
func testResponseControllerSetPastReadDeadline(t *testing.T, mode testMode) {
- if mode == http2Mode {
- t.Skip("skip until h2_bundle.go is updated")
- }
readc := make(chan struct{})
cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
ctl := NewResponseController(w)
@@ -223,9 +208,6 @@ func TestResponseControllerSetFutureReadDeadline(t *testing.T) {
run(t, testResponseControllerSetFutureReadDeadline)
}
func testResponseControllerSetFutureReadDeadline(t *testing.T, mode testMode) {
- if mode == http2Mode {
- t.Skip("skip until h2_bundle.go is updated")
- }
respBody := "response body"
cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, req *Request) {
ctl := NewResponseController(w)
@@ -261,9 +243,6 @@ func (w wrapWriter) Unwrap() ResponseWriter {
func TestWrappedResponseController(t *testing.T) { run(t, testWrappedResponseController) }
func testWrappedResponseController(t *testing.T, mode testMode) {
- if mode == http2Mode {
- t.Skip("skip until h2_bundle.go is updated")
- }
cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
ctl := NewResponseController(w)
if err := ctl.Flush(); err != nil {
diff --git a/src/net/http/serve_test.go b/src/net/http/serve_test.go
index ecf681d79c..eac527b94f 100644
--- a/src/net/http/serve_test.go
+++ b/src/net/http/serve_test.go
@@ -738,37 +738,37 @@ func testServerTimeoutsWithTimeout(t *testing.T, timeout time.Duration, mode tes
func TestServerReadTimeout(t *testing.T) { run(t, testServerReadTimeout) }
func testServerReadTimeout(t *testing.T, mode testMode) {
- if mode == http2Mode {
- t.Skip("https://go.dev/issue/49837")
- }
respBody := "response body"
- cst := newClientServerTest(t, mode, HandlerFunc(func(res ResponseWriter, req *Request) {
- _, err := io.Copy(io.Discard, req.Body)
- if !errors.Is(err, os.ErrDeadlineExceeded) {
- t.Errorf("server timed out reading request body: got err %v; want os.ErrDeadlineExceeded", err)
+ for timeout := 5 * time.Millisecond; ; timeout *= 2 {
+ cst := newClientServerTest(t, mode, HandlerFunc(func(res ResponseWriter, req *Request) {
+ _, err := io.Copy(io.Discard, req.Body)
+ if !errors.Is(err, os.ErrDeadlineExceeded) {
+ t.Errorf("server timed out reading request body: got err %v; want os.ErrDeadlineExceeded", err)
+ }
+ res.Write([]byte(respBody))
+ }), func(ts *httptest.Server) {
+ ts.Config.ReadHeaderTimeout = -1 // don't time out while reading headers
+ ts.Config.ReadTimeout = timeout
+ })
+ pr, pw := io.Pipe()
+ res, err := cst.c.Post(cst.ts.URL, "text/apocryphal", pr)
+ if err != nil {
+ t.Logf("Get error, retrying: %v", err)
+ cst.close()
+ continue
}
- res.Write([]byte(respBody))
- }), func(ts *httptest.Server) {
- ts.Config.ReadTimeout = 5 * time.Millisecond
- })
- pr, pw := io.Pipe()
- res, err := cst.c.Post(cst.ts.URL, "text/apocryphal", pr)
- if err != nil {
- t.Fatal(err)
- }
- defer res.Body.Close()
- got, err := io.ReadAll(res.Body)
- if string(got) != respBody || err != nil {
- t.Errorf("client read response body: %q, %v; want %q, nil", string(got), err, respBody)
+ defer res.Body.Close()
+ got, err := io.ReadAll(res.Body)
+ if string(got) != respBody || err != nil {
+ t.Errorf("client read response body: %q, %v; want %q, nil", string(got), err, respBody)
+ }
+ pw.Close()
+ break
}
- pw.Close()
}
func TestServerWriteTimeout(t *testing.T) { run(t, testServerWriteTimeout) }
func testServerWriteTimeout(t *testing.T, mode testMode) {
- if mode == http2Mode {
- t.Skip("https://go.dev/issue/56478")
- }
for timeout := 5 * time.Millisecond; ; timeout *= 2 {
errc := make(chan error, 2)
cst := newClientServerTest(t, mode, HandlerFunc(func(res ResponseWriter, req *Request) {
@@ -790,7 +790,6 @@ func testServerWriteTimeout(t *testing.T, mode testMode) {
if err == nil {
t.Errorf("client reading from truncated request body: got nil error, want non-nil")
}
- cst.close()
select {
case <-errc:
err = <-errc // io.Copy error
@@ -801,6 +800,7 @@ func testServerWriteTimeout(t *testing.T, mode testMode) {
default:
// The write timeout expired before the handler started.
t.Logf("handler didn't run, retrying")
+ cst.close()
}
}
}