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:
WeidiDeng 2023-07-22 00:50:51 +08:00 committed by GitHub
parent 2bcfe5bc4b
commit 2c0e7e02b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View file

@ -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())
})
})