mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
unblock Accept in streamsMap when an error is registered
This commit is contained in:
parent
7c005ec7ad
commit
2fe9da6d27
2 changed files with 34 additions and 6 deletions
|
@ -318,6 +318,24 @@ var _ = Describe("Streams Map", func() {
|
|||
}()
|
||||
Consistently(func() bool { return accepted }).Should(BeFalse())
|
||||
})
|
||||
|
||||
It("stops waiting when an error is registered", func() {
|
||||
testErr := errors.New("testErr")
|
||||
var acceptErr error
|
||||
go func() {
|
||||
_, acceptErr = m.AcceptStream()
|
||||
}()
|
||||
Consistently(func() error { return acceptErr }).ShouldNot(HaveOccurred())
|
||||
m.CloseWithError(testErr)
|
||||
Eventually(func() error { return acceptErr }).Should(MatchError(testErr))
|
||||
})
|
||||
|
||||
It("immediately returns when Accept is called after an error was registered", func() {
|
||||
testErr := errors.New("testErr")
|
||||
m.CloseWithError(testErr)
|
||||
_, err := m.AcceptStream()
|
||||
Expect(err).To(MatchError(testErr))
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue