mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
never block when calling the onHandshakeComplete callback
This commit is contained in:
parent
8ac77be934
commit
1301610a54
2 changed files with 34 additions and 2 deletions
|
@ -390,6 +390,38 @@ var _ = Describe("Server", func() {
|
|||
close(completeHandshake)
|
||||
Eventually(done).Should(BeClosed())
|
||||
})
|
||||
|
||||
It("never blocks when calling the onHandshakeComplete callback", func() {
|
||||
const num = 50
|
||||
|
||||
done := make(chan struct{}, num)
|
||||
serv.newSession = func(
|
||||
_ connection,
|
||||
runner sessionRunner,
|
||||
_ protocol.ConnectionID,
|
||||
_ protocol.ConnectionID,
|
||||
_ protocol.ConnectionID,
|
||||
_ *Config,
|
||||
_ *tls.Config,
|
||||
_ *handshake.TransportParameters,
|
||||
_ utils.Logger,
|
||||
_ protocol.VersionNumber,
|
||||
) (quicSession, error) {
|
||||
sess := NewMockQuicSession(mockCtrl)
|
||||
runner.onHandshakeComplete(sess)
|
||||
sess.EXPECT().run().Do(func() {})
|
||||
done <- struct{}{}
|
||||
return sess, nil
|
||||
}
|
||||
|
||||
go func() {
|
||||
for i := 0; i < num; i++ {
|
||||
_, err := serv.createNewSession(&net.UDPAddr{}, nil, nil, nil, nil, protocol.VersionWhatever)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
}
|
||||
}()
|
||||
Eventually(done).Should(HaveLen(num))
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue