mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix flaky sentPacketHandler test
This commit is contained in:
parent
9693a46d31
commit
31de6244e2
1 changed files with 2 additions and 1 deletions
|
@ -904,11 +904,12 @@ var _ = Describe("SentPacketHandler", func() {
|
|||
|
||||
Context("Packet-based loss detection", func() {
|
||||
It("declares packet below the packet loss threshold as lost", func() {
|
||||
now := time.Now()
|
||||
for i := protocol.PacketNumber(1); i <= 6; i++ {
|
||||
handler.SentPacket(ackElicitingPacket(&Packet{PacketNumber: i}))
|
||||
}
|
||||
ack := &wire.AckFrame{AckRanges: []wire.AckRange{{Smallest: 6, Largest: 6}}}
|
||||
Expect(handler.ReceivedAck(ack, protocol.Encryption1RTT, time.Now())).To(Succeed())
|
||||
Expect(handler.ReceivedAck(ack, protocol.Encryption1RTT, now)).To(Succeed())
|
||||
expectInPacketHistory([]protocol.PacketNumber{4, 5}, protocol.Encryption1RTT)
|
||||
Expect(lostPackets).To(Equal([]protocol.PacketNumber{1, 2, 3}))
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue