mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
return an error when Write is called on a closed stream
This commit is contained in:
parent
3e012f77c8
commit
77d4573d9b
2 changed files with 9 additions and 0 deletions
|
@ -865,6 +865,12 @@ var _ = Describe("Stream", func() {
|
|||
Expect(str.finishedWriting.Get()).To(BeTrue())
|
||||
})
|
||||
|
||||
It("doesn't allow writes after it has been closed", func() {
|
||||
str.Close()
|
||||
_, err := strWithTimeout.Write([]byte("foobar"))
|
||||
Expect(err).To(MatchError("write on closed stream 1337"))
|
||||
})
|
||||
|
||||
It("allows FIN", func() {
|
||||
str.Close()
|
||||
Expect(str.shouldSendFin()).To(BeTrue())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue