mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
explicitly set the supported versions in the HTTP/3 server test
This commit is contained in:
parent
272229abf0
commit
656490c9b1
1 changed files with 5 additions and 1 deletions
|
@ -352,6 +352,10 @@ var _ = Describe("Server", func() {
|
||||||
})
|
})
|
||||||
|
|
||||||
Context("setting http headers", func() {
|
Context("setting http headers", func() {
|
||||||
|
BeforeEach(func() {
|
||||||
|
s.QuicConfig = &quic.Config{Versions: []protocol.VersionNumber{protocol.VersionDraft29}}
|
||||||
|
})
|
||||||
|
|
||||||
expected := http.Header{
|
expected := http.Header{
|
||||||
"Alt-Svc": {`h3-29=":443"; ma=2592000`},
|
"Alt-Svc": {`h3-29=":443"; ma=2592000`},
|
||||||
}
|
}
|
||||||
|
@ -389,7 +393,7 @@ var _ = Describe("Server", func() {
|
||||||
|
|
||||||
It("works if the quic.Config sets QUIC versions", func() {
|
It("works if the quic.Config sets QUIC versions", func() {
|
||||||
s.Server.Addr = ":443"
|
s.Server.Addr = ":443"
|
||||||
s.QuicConfig = &quic.Config{Versions: []quic.VersionNumber{quic.VersionDraft32, quic.VersionDraft29}}
|
s.QuicConfig.Versions = []quic.VersionNumber{quic.VersionDraft32, quic.VersionDraft29}
|
||||||
hdr := http.Header{}
|
hdr := http.Header{}
|
||||||
Expect(s.SetQuicHeaders(hdr)).To(Succeed())
|
Expect(s.SetQuicHeaders(hdr)).To(Succeed())
|
||||||
Expect(hdr).To(Equal(http.Header{"Alt-Svc": {`h3-32=":443"; ma=2592000,h3-29=":443"; ma=2592000`}}))
|
Expect(hdr).To(Equal(http.Header{"Alt-Svc": {`h3-32=":443"; ma=2592000,h3-29=":443"; ma=2592000`}}))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue