only send BLOCKED frames if there is more data to send

This commit is contained in:
Marten Seemann 2018-07-30 05:06:11 +07:00
parent fc87fbd354
commit 50397a979c
11 changed files with 83 additions and 139 deletions

View file

@ -130,7 +130,6 @@ var _ = Describe("Stream", func() {
mockSender.EXPECT().onHasStreamData(streamID).Times(2) // once for the Write, once for the Close
mockFC.EXPECT().SendWindowSize().Return(protocol.MaxByteCount).AnyTimes()
mockFC.EXPECT().AddBytesSent(protocol.ByteCount(6))
mockFC.EXPECT().IsBlocked()
err := str.CancelRead(1234)
Expect(err).ToNot(HaveOccurred())
writeReturned := make(chan struct{})