mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +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{})
|
handshakeChan := make(chan struct{})
|
||||||
connChan := make(chan *MockQUICConn, 1)
|
connChan := make(chan *MockQUICConn, 1)
|
||||||
|
var wg sync.WaitGroup
|
||||||
|
wg.Add(2 * limit)
|
||||||
serv.newConn = func(
|
serv.newConn = func(
|
||||||
_ sendConn,
|
_ sendConn,
|
||||||
runner connRunner,
|
runner connRunner,
|
||||||
|
@ -687,7 +689,7 @@ var _ = Describe("Server", func() {
|
||||||
conn.EXPECT().handlePacket(gomock.Any())
|
conn.EXPECT().handlePacket(gomock.Any())
|
||||||
conn.EXPECT().run()
|
conn.EXPECT().run()
|
||||||
conn.EXPECT().Context().Return(context.Background())
|
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
|
return conn
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -727,6 +729,7 @@ var _ = Describe("Server", func() {
|
||||||
connChan <- conn
|
connChan <- conn
|
||||||
serv.handlePacket(getInitialWithRandomDestConnID())
|
serv.handlePacket(getInitialWithRandomDestConnID())
|
||||||
}
|
}
|
||||||
|
wg.Wait()
|
||||||
})
|
})
|
||||||
|
|
||||||
It("limits the number of total handshakes", func() {
|
It("limits the number of total handshakes", func() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue