mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
Merge pull request #3040 from lucas-clemente/improve-handshake-tests
make the certificate verificiation integration tests more explicit
This commit is contained in:
commit
74569a514b
1 changed files with 10 additions and 6 deletions
|
@ -210,12 +210,16 @@ var _ = Describe("Handshake tests", func() {
|
||||||
|
|
||||||
It("errors if the server name doesn't match", func() {
|
It("errors if the server name doesn't match", func() {
|
||||||
runServer(getTLSConfig())
|
runServer(getTLSConfig())
|
||||||
_, err := quic.DialAddr(
|
conn, err := net.ListenUDP("udp", nil)
|
||||||
fmt.Sprintf("127.0.0.1:%d", server.Addr().(*net.UDPAddr).Port),
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
_, err = quic.Dial(
|
||||||
|
conn,
|
||||||
|
server.Addr(),
|
||||||
|
"foo.bar",
|
||||||
getTLSClientConfig(),
|
getTLSClientConfig(),
|
||||||
clientConfig,
|
clientConfig,
|
||||||
)
|
)
|
||||||
Expect(err).To(MatchError("CRYPTO_ERROR (0x12a): x509: cannot validate certificate for 127.0.0.1 because it doesn't contain any IP SANs"))
|
Expect(err).To(MatchError("CRYPTO_ERROR (0x12a): x509: certificate is valid for localhost, not foo.bar"))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("fails the handshake if the client fails to provide the requested client cert", func() {
|
It("fails the handshake if the client fails to provide the requested client cert", func() {
|
||||||
|
@ -246,13 +250,13 @@ var _ = Describe("Handshake tests", func() {
|
||||||
It("uses the ServerName in the tls.Config", func() {
|
It("uses the ServerName in the tls.Config", func() {
|
||||||
runServer(getTLSConfig())
|
runServer(getTLSConfig())
|
||||||
tlsConf := getTLSClientConfig()
|
tlsConf := getTLSClientConfig()
|
||||||
tlsConf.ServerName = "localhost"
|
tlsConf.ServerName = "foo.bar"
|
||||||
_, err := quic.DialAddr(
|
_, err := quic.DialAddr(
|
||||||
fmt.Sprintf("127.0.0.1:%d", server.Addr().(*net.UDPAddr).Port),
|
fmt.Sprintf("localhost:%d", server.Addr().(*net.UDPAddr).Port),
|
||||||
tlsConf,
|
tlsConf,
|
||||||
clientConfig,
|
clientConfig,
|
||||||
)
|
)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).To(MatchError("CRYPTO_ERROR (0x12a): x509: certificate is valid for localhost, not foo.bar"))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue