add an integration test for dial errors

This commit is contained in:
Marten Seemann 2019-03-02 18:14:54 +09:00
parent 9ed1a2e3e1
commit b65bc7d4d8

View file

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