Skip to content

Commit c48da13

Browse files
committed
http2: fix TestServerContinuationFlood flakes
This test causes the server to send a GOAWAY and close a connection. The server GOAWAY path writes a GOAWAY frame asynchronously, and closes the connection if the write doesn't complete within 1s. This is causing failures on some builders, when the frame write doesn't complete in time. The important aspect of this test is that the connection be closed. Drop the check for the GOAWAY frame. Change-Id: I099413be9c4dfe71d8fe83d2c6242e82e282293e Reviewed-on: https://go-review.googlesource.com/c/net/+/576235 Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Than McIntosh <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 762b58d commit c48da13

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

http2/server_test.go

+9-7
Original file line numberDiff line numberDiff line change
@@ -4813,22 +4813,24 @@ func TestServerContinuationFlood(t *testing.T) {
48134813
"x-last-header", "1",
48144814
))
48154815

4816-
var sawGoAway bool
48174816
for {
48184817
f, err := st.readFrame()
48194818
if err != nil {
48204819
break
48214820
}
48224821
switch f.(type) {
4823-
case *GoAwayFrame:
4824-
sawGoAway = true
48254822
case *HeadersFrame:
4826-
t.Fatalf("received HEADERS frame; want GOAWAY")
4823+
t.Fatalf("received HEADERS frame; want GOAWAY and a closed connection")
48274824
}
48284825
}
4829-
if !sawGoAway {
4830-
t.Errorf("connection closed with no GOAWAY frame; want one")
4831-
}
4826+
// We expect to have seen a GOAWAY before the connection closes,
4827+
// but the server will close the connection after one second
4828+
// whether or not it has finished sending the GOAWAY. On windows-amd64-race
4829+
// builders, this fairly consistently results in the connection closing without
4830+
// the GOAWAY being sent.
4831+
//
4832+
// Since the server's behavior is inherently racy here and the important thing
4833+
// is that the connection is closed, don't check for the GOAWAY having been sent.
48324834
}
48334835

48344836
func TestServerContinuationAfterInvalidHeader(t *testing.T) {

0 commit comments

Comments
 (0)