mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
fix flaky version negotiation connection unit test (#4052)
This commit is contained in:
parent
8963306987
commit
8f34488c76
1 changed files with 2 additions and 2 deletions
|
@ -2702,8 +2702,9 @@ var _ = Describe("Client Connection", func() {
|
||||||
Expect(recreateErr.nextPacketNumber).To(Equal(protocol.PacketNumber(128)))
|
Expect(recreateErr.nextPacketNumber).To(Equal(protocol.PacketNumber(128)))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("it closes when no matching version is found", func() {
|
It("closes when no matching version is found", func() {
|
||||||
errChan := make(chan error, 1)
|
errChan := make(chan error, 1)
|
||||||
|
packer.EXPECT().PackCoalescedPacket(gomock.Any(), gomock.Any(), gomock.Any()).MaxTimes(1)
|
||||||
go func() {
|
go func() {
|
||||||
defer GinkgoRecover()
|
defer GinkgoRecover()
|
||||||
cryptoSetup.EXPECT().StartHandshake().MaxTimes(1)
|
cryptoSetup.EXPECT().StartHandshake().MaxTimes(1)
|
||||||
|
@ -2711,7 +2712,6 @@ var _ = Describe("Client Connection", func() {
|
||||||
errChan <- conn.run()
|
errChan <- conn.run()
|
||||||
}()
|
}()
|
||||||
connRunner.EXPECT().Remove(srcConnID).MaxTimes(1)
|
connRunner.EXPECT().Remove(srcConnID).MaxTimes(1)
|
||||||
packer.EXPECT().PackCoalescedPacket(gomock.Any(), gomock.Any(), gomock.Any()).MaxTimes(1)
|
|
||||||
gomock.InOrder(
|
gomock.InOrder(
|
||||||
tracer.EXPECT().ReceivedVersionNegotiationPacket(gomock.Any(), gomock.Any(), gomock.Any()),
|
tracer.EXPECT().ReceivedVersionNegotiationPacket(gomock.Any(), gomock.Any(), gomock.Any()),
|
||||||
tracer.EXPECT().ClosedConnection(gomock.Any()).Do(func(e error) {
|
tracer.EXPECT().ClosedConnection(gomock.Any()).Do(func(e error) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue