mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
http3: panic in ResponseWriter.WriteHeader for invalid status codes (#3984)
* response writer: panic for invalid status code * add tests * readd imports * readd imports * fix imports
This commit is contained in:
parent
2bcfe5bc4b
commit
2c0e7e02b0
2 changed files with 12 additions and 1 deletions
|
@ -178,4 +178,9 @@ var _ = Describe("Response Writer", func() {
|
|||
Expect(n).To(Equal(0))
|
||||
Expect(err).To(Equal(http.ErrContentLength))
|
||||
})
|
||||
|
||||
It(`panics when writing invalid status`, func() {
|
||||
Expect(func() { rw.WriteHeader(99) }).To(Panic())
|
||||
Expect(func() { rw.WriteHeader(1000) }).To(Panic())
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue