mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
implement handling of MAX_STREAM_ID frames
This commit is contained in:
parent
cd4bcda458
commit
46e20ce8c9
11 changed files with 350 additions and 53 deletions
|
@ -357,6 +357,23 @@ var _ = Describe("Session", func() {
|
|||
})
|
||||
})
|
||||
|
||||
Context("handling MAX_STREAM_ID frames", func() {
|
||||
It("passes the frame to the streamsMap", func() {
|
||||
f := &wire.MaxStreamIDFrame{StreamID: 10}
|
||||
streamManager.EXPECT().HandleMaxStreamIDFrame(f)
|
||||
err := sess.handleMaxStreamIDFrame(f)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
})
|
||||
|
||||
It("returns errors", func() {
|
||||
f := &wire.MaxStreamIDFrame{StreamID: 10}
|
||||
testErr := errors.New("test error")
|
||||
streamManager.EXPECT().HandleMaxStreamIDFrame(f).Return(testErr)
|
||||
err := sess.handleMaxStreamIDFrame(f)
|
||||
Expect(err).To(MatchError(testErr))
|
||||
})
|
||||
})
|
||||
|
||||
Context("handling STOP_SENDING frames", func() {
|
||||
It("passes the frame to the stream", func() {
|
||||
f := &wire.StopSendingFrame{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue