mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
parent
e345270e84
commit
9a99df48a6
6 changed files with 157 additions and 21 deletions
|
@ -420,12 +420,12 @@ var _ = Describe("Session", func() {
|
|||
})
|
||||
|
||||
It("should call OnSent", func() {
|
||||
session.QueueStreamFrame(&frames.StreamFrame{})
|
||||
session.QueueStreamFrame(&frames.StreamFrame{StreamID: 5})
|
||||
session.sendPacket()
|
||||
Expect(cong.nCalls).To(Equal(2)) // OnPacketSent + GetCongestionWindow
|
||||
Expect(cong.argsOnPacketSent[1]).To(Equal(protocol.ByteCount(30)))
|
||||
Expect(cong.argsOnPacketSent[1]).To(Equal(protocol.ByteCount(27)))
|
||||
Expect(cong.argsOnPacketSent[2]).To(Equal(protocol.PacketNumber(1)))
|
||||
Expect(cong.argsOnPacketSent[3]).To(Equal(protocol.ByteCount(30)))
|
||||
Expect(cong.argsOnPacketSent[3]).To(Equal(protocol.ByteCount(27)))
|
||||
Expect(cong.argsOnPacketSent[4]).To(BeTrue())
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue