mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
add an integration test for invalid certificates
This commit is contained in:
parent
474b036474
commit
47d87740ae
1 changed files with 11 additions and 0 deletions
|
@ -149,4 +149,15 @@ var _ = Describe("Handshake RTT tests", func() {
|
||||||
// plus 1 RTT: the timer starts 0.5 RTTs after sending the first packet, and the CONNECTION_CLOSE needs another 0.5 RTTs to reach the client
|
// plus 1 RTT: the timer starts 0.5 RTTs after sending the first packet, and the CONNECTION_CLOSE needs another 0.5 RTTs to reach the client
|
||||||
expectDurationInRTTs(3)
|
expectDurationInRTTs(3)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("errors when the client doesn't accept the certificate", func() {
|
||||||
|
// don't validate the client's address, send the certificate in the first flight
|
||||||
|
serverConfig.AcceptCookie = func(_ net.Addr, _ *quic.Cookie) bool {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
runServerAndProxy()
|
||||||
|
_, err := quic.DialAddr(proxy.LocalAddr().String(), nil, nil)
|
||||||
|
Expect(err).To(MatchError(qerr.ProofInvalid))
|
||||||
|
expectDurationInRTTs(1)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue