mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
reject inconsistent final stream offsets
This commit is contained in:
parent
636bf4578c
commit
d7a09e7667
2 changed files with 20 additions and 0 deletions
|
@ -124,6 +124,21 @@ var _ = Describe("Stream Flow controller", func() {
|
|||
err = controller.UpdateHighestReceived(250, false)
|
||||
Expect(err).To(MatchError(qerr.StreamDataAfterTermination))
|
||||
})
|
||||
|
||||
It("accepts duplicate final offsets", func() {
|
||||
err := controller.UpdateHighestReceived(200, true)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
err = controller.UpdateHighestReceived(200, true)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(controller.highestReceived).To(Equal(protocol.ByteCount(200)))
|
||||
})
|
||||
|
||||
It("errors when receiving inconsistent final offsets", func() {
|
||||
err := controller.UpdateHighestReceived(200, true)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
err = controller.UpdateHighestReceived(201, true)
|
||||
Expect(err).To(MatchError("StreamDataAfterTermination: Received inconsistent final offset for stream 10 (old: 200, new: 201 bytes)"))
|
||||
})
|
||||
})
|
||||
|
||||
Context("registering data read", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue