mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
don't dequeue retransmitted STREAM frames after the stream was canceled
This commit is contained in:
parent
88337ed8c0
commit
7b1c4e7d80
2 changed files with 20 additions and 5 deletions
|
@ -755,6 +755,22 @@ var _ = Describe("Send Stream", func() {
|
|||
Expect(newFrame).ToNot(BeNil())
|
||||
Expect(newFrame.Frame.(*wire.StreamFrame).Data).To(Equal([]byte("foobar")))
|
||||
})
|
||||
|
||||
It("doesn't get a retransmission after a stream was canceled", func() {
|
||||
str.numOutstandingFrames = 1
|
||||
f := &wire.StreamFrame{
|
||||
Data: []byte("foobar"),
|
||||
Offset: 0x42,
|
||||
DataLenPresent: false,
|
||||
}
|
||||
mockSender.EXPECT().onHasStreamData(streamID)
|
||||
str.queueRetransmission(f)
|
||||
mockSender.EXPECT().queueControlFrame(gomock.Any())
|
||||
str.CancelWrite(0)
|
||||
frame, hasMoreData := str.popStreamFrame(protocol.MaxByteCount)
|
||||
Expect(hasMoreData).To(BeFalse())
|
||||
Expect(frame).To(BeNil())
|
||||
})
|
||||
})
|
||||
|
||||
Context("determining when a stream is completed", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue