remove stream from BlockManager when a WindowUpdate increases its offset

fixes #130
This commit is contained in:
Marten Seemann 2016-05-20 12:16:33 +07:00
parent 7f907a17c2
commit d571c0bfd5
7 changed files with 91 additions and 20 deletions

View file

@ -352,6 +352,20 @@ var _ = Describe("Stream", func() {
Expect(err).ToNot(HaveOccurred())
})
It("returns true when the flow control window was updated", func() {
updated := str.flowController.UpdateSendWindow(4)
Expect(updated).To(BeTrue())
updated = str.UpdateSendFlowControlWindow(5)
Expect(updated).To(BeTrue())
})
It("returns false when the flow control window was not updated", func() {
updated := str.flowController.UpdateSendWindow(4)
Expect(updated).To(BeTrue())
updated = str.UpdateSendFlowControlWindow(3)
Expect(updated).To(BeFalse())
})
It("waits for a stream flow control window update", func() {
var b bool
updated := str.flowController.UpdateSendWindow(1)