don’t return data for writing from a stream if it was closed with an error

This commit is contained in:
Marten Seemann 2017-01-03 15:31:32 +07:00
parent bf0caf3c03
commit 9e09198df6
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
2 changed files with 21 additions and 2 deletions

View file

@ -548,6 +548,19 @@ var _ = Describe("Stream", func() {
Expect(n).To(BeZero())
Expect(err).To(MatchError(testErr))
})
It("doesn't get data for writing if an error occurred", func() {
go func() {
_, err := str.Write([]byte("foobar"))
Expect(err).To(MatchError(testErr))
}()
Eventually(func() []byte { return str.dataForWriting }).ShouldNot(BeNil())
Expect(str.lenOfDataForWriting()).ToNot(BeZero())
str.RegisterError(testErr)
data := str.getDataForWriting(6)
Expect(data).To(BeNil())
Expect(str.lenOfDataForWriting()).To(BeZero())
})
})
Context("when CloseRemote is called", func() {