mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
add an integration test for dial errors
This commit is contained in:
parent
9ed1a2e3e1
commit
b65bc7d4d8
1 changed files with 35 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
package self_test
|
||||
|
||||
import (
|
||||
"context"
|
||||
"crypto/tls"
|
||||
"fmt"
|
||||
"net"
|
||||
|
@ -22,6 +23,40 @@ var _ = Describe("Timeout tests", func() {
|
|||
ExpectWithOffset(1, nerr.Timeout()).To(BeTrue())
|
||||
}
|
||||
|
||||
It("returns net.Error timeout errors when dialing", func() {
|
||||
errChan := make(chan error)
|
||||
go func() {
|
||||
_, err := quic.DialAddr(
|
||||
"localhost:12345",
|
||||
&tls.Config{RootCAs: testdata.GetRootCA()},
|
||||
&quic.Config{HandshakeTimeout: 10 * time.Millisecond},
|
||||
)
|
||||
errChan <- err
|
||||
}()
|
||||
var err error
|
||||
Eventually(errChan).Should(Receive(&err))
|
||||
checkTimeoutError(err)
|
||||
})
|
||||
|
||||
It("returns the context error when the context expires", func() {
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Millisecond)
|
||||
defer cancel()
|
||||
errChan := make(chan error)
|
||||
go func() {
|
||||
_, err := quic.DialAddrContext(
|
||||
ctx,
|
||||
"localhost:12345",
|
||||
&tls.Config{RootCAs: testdata.GetRootCA()},
|
||||
nil,
|
||||
)
|
||||
errChan <- err
|
||||
}()
|
||||
var err error
|
||||
Eventually(errChan).Should(Receive(&err))
|
||||
// This is not a net.Error timeout error
|
||||
Expect(err).To(MatchError(context.DeadlineExceeded))
|
||||
})
|
||||
|
||||
It("returns net.Error timeout errors when an idle timeout occurs", func() {
|
||||
const idleTimeout = 100 * time.Millisecond
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue