mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use a time.Timer for read deadlines
This commit is contained in:
parent
93c7eb94ce
commit
d9edacf711
2 changed files with 34 additions and 11 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue