mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
add session test for closing with errors
This commit is contained in:
parent
df08f109e7
commit
43a16a8fce
1 changed files with 15 additions and 0 deletions
|
@ -182,5 +182,20 @@ var _ = Describe("Session", func() {
|
|||
time.Sleep(1 * time.Millisecond)
|
||||
Expect(runtime.NumGoroutine()).To(Equal(nGoRoutinesBefore))
|
||||
})
|
||||
|
||||
It("closes streams with proper error", func() {
|
||||
testErr := errors.New("test error")
|
||||
s, err := session.NewStream(5)
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
session.Close(testErr)
|
||||
time.Sleep(1 * time.Millisecond)
|
||||
Expect(runtime.NumGoroutine()).To(Equal(nGoRoutinesBefore))
|
||||
n, err := s.Read([]byte{0})
|
||||
Expect(n).To(BeZero())
|
||||
Expect(err).To(Equal(testErr))
|
||||
n, err = s.Write([]byte{0})
|
||||
Expect(n).To(BeZero())
|
||||
Expect(err).To(Equal(testErr))
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue