unblock Accept in streamsMap when an error is registered

This commit is contained in:
Marten Seemann 2017-02-11 12:03:05 +07:00
parent 7c005ec7ad
commit 2fe9da6d27
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
2 changed files with 34 additions and 6 deletions

View file

@ -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))
})
})
})