mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
http3: don't send more than http.Request.ContentLength bytes (#3960)
This commit is contained in:
parent
de8d7a32b8
commit
3dea8f8a9b
2 changed files with 67 additions and 25 deletions
|
@ -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{})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue