implement net.Error interface for stream deadline expiration errors

This commit is contained in:
Marten Seemann 2017-07-22 15:33:12 +07:00
parent 1060582a18
commit 6546e13e26
3 changed files with 19 additions and 2 deletions

View file

@ -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")}