mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
don't generate new packets when the send queue is full
This commit is contained in:
parent
f1c6421845
commit
b81a6f875b
5 changed files with 158 additions and 20 deletions
|
@ -42,21 +42,20 @@ var _ = Describe("Send Queue", func() {
|
|||
Eventually(done).Should(BeClosed())
|
||||
})
|
||||
|
||||
It("blocks sending when too many packets are queued", func() {
|
||||
q.Send(getPacket([]byte("foobar")))
|
||||
It("panics when Send() is called although there's no space in the queue", func() {
|
||||
Expect(q.WouldBlock()).To(BeFalse())
|
||||
q.Send(getPacket([]byte("foobar1")))
|
||||
Expect(q.WouldBlock()).To(BeTrue())
|
||||
Expect(func() { q.Send(getPacket([]byte("foobar2"))) }).To(Panic())
|
||||
})
|
||||
|
||||
written := make(chan []byte, 2)
|
||||
c.EXPECT().Write(gomock.Any()).Do(func(p []byte) { written <- p }).Times(2)
|
||||
|
||||
sent := make(chan struct{})
|
||||
go func() {
|
||||
defer GinkgoRecover()
|
||||
q.Send(getPacket([]byte("raboof")))
|
||||
close(sent)
|
||||
}()
|
||||
|
||||
Consistently(sent).ShouldNot(BeClosed())
|
||||
It("signals when sending is possible again", func() {
|
||||
Expect(q.WouldBlock()).To(BeFalse())
|
||||
q.Send(getPacket([]byte("foobar1")))
|
||||
Consistently(q.Available()).ShouldNot(Receive())
|
||||
|
||||
// now start sending out packets. This should free up queue space.
|
||||
c.EXPECT().Write(gomock.Any()).MinTimes(1).MaxTimes(2)
|
||||
done := make(chan struct{})
|
||||
go func() {
|
||||
defer GinkgoRecover()
|
||||
|
@ -64,8 +63,10 @@ var _ = Describe("Send Queue", func() {
|
|||
close(done)
|
||||
}()
|
||||
|
||||
Eventually(written).Should(Receive(Equal([]byte("foobar"))))
|
||||
Eventually(written).Should(Receive(Equal([]byte("raboof"))))
|
||||
Eventually(q.Available()).Should(Receive())
|
||||
Expect(q.WouldBlock()).To(BeFalse())
|
||||
Expect(func() { q.Send(getPacket([]byte("foobar2"))) }).ToNot(Panic())
|
||||
|
||||
q.Close()
|
||||
Eventually(done).Should(BeClosed())
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue