increase the size of the send queue

This commit is contained in:
Marten Seemann 2021-01-20 14:45:18 +08:00
parent 53b1cbb501
commit 37337597bd
2 changed files with 6 additions and 4 deletions

View file

@ -18,7 +18,7 @@ type sendQueue struct {
var _ sender = &sendQueue{}
const sendQueueCapacity = 1
const sendQueueCapacity = 8
func newSendQueue(conn sendConn) sender {
return &sendQueue{

View file

@ -43,10 +43,12 @@ var _ = Describe("Send Queue", func() {
})
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")))
for i := 0; i < sendQueueCapacity; i++ {
Expect(q.WouldBlock()).To(BeFalse())
q.Send(getPacket([]byte("foobar")))
}
Expect(q.WouldBlock()).To(BeTrue())
Expect(func() { q.Send(getPacket([]byte("foobar2"))) }).To(Panic())
Expect(func() { q.Send(getPacket([]byte("raboof"))) }).To(Panic())
})
It("signals when sending is possible again", func() {