http3: don't send more than http.Request.ContentLength bytes (#3960)

This commit is contained in:
Marten Seemann 2023-07-16 19:16:52 -07:00 committed by GitHub
parent de8d7a32b8
commit 3dea8f8a9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 67 additions and 25 deletions

View file

@ -9,6 +9,7 @@ import (
"fmt"
"io"
"net/http"
"sync"
"time"
"github.com/quic-go/quic-go"
@ -803,6 +804,29 @@ var _ = Describe("Client", func() {
Expect(hfs).To(HaveKeyWithValue(":path", "/upload"))
})
It("doesn't send more bytes than allowed by http.Request.ContentLength", func() {
req.ContentLength = 7
var once sync.Once
done := make(chan struct{})
gomock.InOrder(
str.EXPECT().CancelWrite(gomock.Any()).Do(func(c quic.StreamErrorCode) {
once.Do(func() {
Expect(c).To(Equal(quic.StreamErrorCode(ErrCodeRequestCanceled)))
close(done)
})
}).AnyTimes(),
str.EXPECT().Close().MaxTimes(1),
str.EXPECT().CancelWrite(gomock.Any()).AnyTimes(),
)
str.EXPECT().Read(gomock.Any()).DoAndReturn(func([]byte) (int, error) {
<-done
return 0, errors.New("done")
})
cl.RoundTripOpt(req, RoundTripOpt{})
Expect(strBuf.String()).To(ContainSubstring("request"))
Expect(strBuf.String()).ToNot(ContainSubstring("request body"))
})
It("returns the error that occurred when reading the body", func() {
req.Body.(*mockBody).readErr = errors.New("testErr")
done := make(chan struct{})