mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
http3: sniff HTTP Content Type (#3715)
* add sniff * add test for sniff * fix typo in comment * move bodyAllowedForStatus() to top of the function to aviod calling it twice * add comments * format with gofumpt * fix typo and simplify the code
This commit is contained in:
parent
5b5a8e742c
commit
a92238b73c
2 changed files with 26 additions and 1 deletions
|
@ -147,4 +147,13 @@ var _ = Describe("Response Writer", func() {
|
|||
Expect(n).To(BeZero())
|
||||
Expect(err).To(MatchError(http.ErrBodyNotAllowed))
|
||||
})
|
||||
|
||||
It("first call to Write sniffs if Content-Type is not set", func() {
|
||||
n, err := rw.Write([]byte("<html></html>"))
|
||||
Expect(n).To(Equal(13))
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
|
||||
fields := decodeHeader(strBuf)
|
||||
Expect(fields).To(HaveKeyWithValue("content-type", []string{"text/html; charset=utf-8"}))
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue