allow empty STREAM frames at arbitrary offsets

This commit is contained in:
Marten Seemann 2018-05-11 11:08:08 +09:00
parent 240896a4dd
commit 5f5bb1f700
5 changed files with 10 additions and 29 deletions

View file

@ -224,12 +224,6 @@ var _ = Describe("Receive Stream", func() {
Expect(b).To(Equal([]byte("foobar")))
})
It("passes on errors from the streamFrameSorter", func() {
mockFC.EXPECT().UpdateHighestReceived(protocol.ByteCount(0), false)
err := str.handleStreamFrame(&wire.StreamFrame{StreamID: streamID}) // STREAM frame without data
Expect(err).To(MatchError(errEmptyStreamData))
})
Context("deadlines", func() {
It("the deadline error has the right net.Error properties", func() {
Expect(errDeadline.Temporary()).To(BeTrue())