mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
http3: return http.ErrContentLength when writing too large response (#3953)
This commit is contained in:
parent
9e7fa4773a
commit
de8d7a32b8
2 changed files with 29 additions and 0 deletions
|
@ -167,4 +167,15 @@ var _ = Describe("Response Writer", func() {
|
|||
Expect(rw.SetReadDeadline(time.Now().Add(1 * time.Second))).To(BeNil())
|
||||
Expect(rw.SetWriteDeadline(time.Now().Add(1 * time.Second))).To(BeNil())
|
||||
})
|
||||
|
||||
It(`checks Content-Length header`, func() {
|
||||
rw.Header().Set("Content-Length", "6")
|
||||
n, err := rw.Write([]byte("foobar"))
|
||||
Expect(n).To(Equal(6))
|
||||
Expect(err).To(BeNil())
|
||||
|
||||
n, err = rw.Write([]byte("foobar"))
|
||||
Expect(n).To(Equal(0))
|
||||
Expect(err).To(Equal(http.ErrContentLength))
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue