use a time.Timer for read deadlines

This commit is contained in:
Marten Seemann 2018-10-15 18:23:01 +01:00
parent 93c7eb94ce
commit d9edacf711
2 changed files with 34 additions and 11 deletions

View file

@ -243,6 +243,20 @@ var _ = Describe("Receive Stream", func() {
Expect(n).To(BeZero())
})
It("unblocks when the deadline is changed to the past", func() {
str.SetReadDeadline(time.Now().Add(time.Hour))
done := make(chan struct{})
go func() {
defer GinkgoRecover()
_, err := str.Read(make([]byte, 6))
Expect(err).To(MatchError(errDeadline))
close(done)
}()
Consistently(done).ShouldNot(BeClosed())
str.SetReadDeadline(time.Now().Add(-time.Hour))
Eventually(done).Should(BeClosed())
})
It("unblocks after the deadline", func() {
deadline := time.Now().Add(scaleDuration(50 * time.Millisecond))
str.SetReadDeadline(deadline)