mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix flaky handshake limiting test (#4281)
This commit is contained in:
parent
c82c37a31c
commit
9b83ac230b
1 changed files with 4 additions and 1 deletions
|
@ -664,6 +664,8 @@ var _ = Describe("Server", func() {
|
|||
|
||||
handshakeChan := make(chan struct{})
|
||||
connChan := make(chan *MockQUICConn, 1)
|
||||
var wg sync.WaitGroup
|
||||
wg.Add(2 * limit)
|
||||
serv.newConn = func(
|
||||
_ sendConn,
|
||||
runner connRunner,
|
||||
|
@ -687,7 +689,7 @@ var _ = Describe("Server", func() {
|
|||
conn.EXPECT().handlePacket(gomock.Any())
|
||||
conn.EXPECT().run()
|
||||
conn.EXPECT().Context().Return(context.Background())
|
||||
conn.EXPECT().HandshakeComplete().Return(handshakeChan)
|
||||
conn.EXPECT().HandshakeComplete().Return(handshakeChan).Do(func() <-chan struct{} { wg.Done(); return nil })
|
||||
return conn
|
||||
}
|
||||
|
||||
|
@ -727,6 +729,7 @@ var _ = Describe("Server", func() {
|
|||
connChan <- conn
|
||||
serv.handlePacket(getInitialWithRandomDestConnID())
|
||||
}
|
||||
wg.Wait()
|
||||
})
|
||||
|
||||
It("limits the number of total handshakes", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue