return the length of data written when the stream errors

This commit is contained in:
Marten Seemann 2017-06-14 12:08:26 +02:00
parent e1e076e375
commit c63be8c544
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
2 changed files with 18 additions and 1 deletions

View file

@ -478,6 +478,23 @@ var _ = Describe("Stream", func() {
Expect(err).To(MatchError(testErr))
})
It("returns how much was written when recieving a remote error", func() {
var writeReturned bool
var n int
var err error
go func() {
n, err = str.Write([]byte("foobar"))
writeReturned = true
}()
Eventually(func() []byte { return str.getDataForWriting(4) }).ShouldNot(BeEmpty())
str.RegisterRemoteError(testErr)
Eventually(func() bool { return writeReturned }).Should(BeTrue())
Expect(err).To(MatchError(testErr))
Expect(n).To(Equal(4))
})
It("calls onReset when receiving a remote error", func() {
var writeReturned bool
str.writeOffset = 0x1000