mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
return the length of data written when the stream errors
This commit is contained in:
parent
e1e076e375
commit
c63be8c544
2 changed files with 18 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue