add a quic.Config option to set the handshake timeout

This commit is contained in:
Marten Seemann 2017-06-01 19:30:38 +02:00
parent a025e89f03
commit 9040fd25e7
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
9 changed files with 47 additions and 13 deletions

View file

@ -1403,7 +1403,7 @@ var _ = Describe("Session", func() {
})
It("times out due to non-completed crypto handshake", func(done Done) {
sess.sessionCreationTime = time.Now().Add(-time.Hour)
sess.sessionCreationTime = time.Now().Add(-protocol.DefaultHandshakeTimeout).Add(-time.Second)
sess.run() // Would normally not return
Expect(mconn.written[0]).To(ContainSubstring("Crypto handshake did not complete in time."))
Expect(sess.runClosed).To(BeClosed())