reject a tls.Config without NextProtos for listening

This commit is contained in:
Marten Seemann 2019-06-02 00:56:25 +08:00
parent 979ab75b3b
commit 8eeddeb9c0
2 changed files with 11 additions and 0 deletions

View file

@ -42,6 +42,7 @@ var _ = Describe("Server", func() {
conn = newMockPacketConn()
conn.addr = &net.UDPAddr{}
tlsConf = testdata.GetTLSConfig()
tlsConf.NextProtos = []string{"proto1"}
})
It("errors when no tls.Config is given", func() {
@ -56,6 +57,13 @@ var _ = Describe("Server", func() {
Expect(err.Error()).To(ContainSubstring("quic: Certificates not set in tls.Config"))
})
It("errors when NextProtos is not set in the tls.Config", func() {
tlsConf.NextProtos = nil
_, err := ListenAddr("localhost:0", tlsConf, nil)
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("quic: NextProtos not set in tls.Config"))
})
It("errors when the Config contains an invalid version", func() {
version := protocol.VersionNumber(0x1234)
_, err := Listen(nil, tlsConf, &Config{Versions: []protocol.VersionNumber{version}})