Add test setting http3.Server.Port.

This commit is contained in:
Aaron Riekenberg 2021-09-19 15:51:09 -05:00
parent 23665f1b25
commit afbe993b4c

View file

@ -591,6 +591,14 @@ var _ = Describe("Server", func() {
Expect(s.SetQuicHeaders(hdr)).To(Succeed())
Expect(hdr).To(Equal(http.Header{"Alt-Svc": {`h3=":443"; ma=2592000,h3-29=":443"; ma=2592000`}}))
})
It("uses s.Port if set to a non-zero value", func() {
s.Server.Addr = ":443"
s.Port = 8443
hdr := http.Header{}
Expect(s.SetQuicHeaders(hdr)).To(Succeed())
Expect(hdr).To(Equal(http.Header{"Alt-Svc": {`h3-29=":8443"; ma=2592000`}}))
})
})
It("errors when ListenAndServe is called with s.Server nil", func() {