implement sending of STREAM_ID_BLOCKED frames

This commit is contained in:
Marten Seemann 2018-02-05 16:03:02 +08:00
parent 4f364a7c24
commit 1ec720f2f2
8 changed files with 120 additions and 26 deletions

View file

@ -257,6 +257,10 @@ var _ = Describe("Streams Map (for IETF QUIC)", func() {
})
Context("updating stream ID limits", func() {
BeforeEach(func() {
mockSender.EXPECT().queueControlFrame(gomock.Any())
})
It("processes the parameter for outgoing bidirectional streams", func() {
_, err := m.OpenStream()
Expect(err).To(MatchError(qerr.TooManyOpenStreams))
@ -281,6 +285,10 @@ var _ = Describe("Streams Map (for IETF QUIC)", func() {
})
Context("handling MAX_STREAM_ID frames", func() {
BeforeEach(func() {
mockSender.EXPECT().queueControlFrame(gomock.Any()).AnyTimes()
})
It("processes IDs for outgoing bidirectional streams", func() {
_, err := m.OpenStream()
Expect(err).To(MatchError(qerr.TooManyOpenStreams))