mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
implement net.Error interface for stream deadline expiration errors
This commit is contained in:
parent
1060582a18
commit
6546e13e26
3 changed files with 19 additions and 2 deletions
|
@ -255,6 +255,11 @@ var _ = Describe("Stream", func() {
|
|||
})
|
||||
|
||||
Context("deadlines", func() {
|
||||
It("the deadline error has the right net.Error properties", func() {
|
||||
Expect(errDeadline.Temporary()).To(BeTrue())
|
||||
Expect(errDeadline.Timeout()).To(BeTrue())
|
||||
})
|
||||
|
||||
It("returns an error when Read is called after the deadline", func() {
|
||||
mockFcm.EXPECT().UpdateHighestReceived(streamID, protocol.ByteCount(6)).AnyTimes()
|
||||
f := &frames.StreamFrame{Data: []byte("foobar")}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue