1
0
mirror of https://github.com/golang/go synced 2024-11-23 07:30:05 -07:00

net/http: do not force the Content-Length header if nilled

This commit is contained in:
Laurent Senta 2023-02-17 14:51:13 +01:00
parent f5c7416511
commit e0616dd463
2 changed files with 35 additions and 1 deletions

View File

@ -6834,3 +6834,37 @@ func testHeadBody(t *testing.T, mode testMode, chunked bool, method string) {
}
}
}
// TestContentLengthResponseCanBeNilled verifies that the Content-Length is set by default
// or disabled when the header is set to nil.
func TestDisableContentLength(t *testing.T) { run(t, testDisableContentLength) }
func testDisableContentLength(t *testing.T, mode testMode) {
if mode == http2Mode {
t.Skip("skipping until h2_bundle.go is updated; see https://go-review.googlesource.com/c/net/+/471535")
}
noCL := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
w.Header()["Content-Length"] = nil // disable the default Content-Length response
fmt.Fprintf(w, "OK")
}))
res, err := noCL.c.Get(noCL.ts.URL)
if err != nil {
t.Error(err)
}
if got, haveCL := res.Header["Content-Length"]; haveCL {
t.Errorf("Unexpected Content-Length: %q", got)
}
withCL := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
fmt.Fprintf(w, "OK")
}))
res, err = withCL.c.Get(withCL.ts.URL)
if err != nil {
t.Error(err)
}
if got := res.Header.Get("Content-Length"); got != "2" {
t.Errorf("Content-Length: %q; want 2", got)
}
}

View File

@ -1317,7 +1317,7 @@ func (cw *chunkWriter) writeHeader(p []byte) {
// send a Content-Length header.
// Further, we don't send an automatic Content-Length if they
// set a Transfer-Encoding, because they're generally incompatible.
if w.handlerDone.Load() && !trailers && !hasTE && bodyAllowedForStatus(w.status) && header.get("Content-Length") == "" && (!isHEAD || len(p) > 0) {
if w.handlerDone.Load() && !trailers && !hasTE && bodyAllowedForStatus(w.status) && !header.has("Content-Length") && (!isHEAD || len(p) > 0) {
w.contentLength = int64(len(p))
setHeader.contentLength = strconv.AppendInt(cw.res.clenBuf[:0], int64(len(p)), 10)
}