mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
add integration test that we return timeout errors after an idle timeout
This commit is contained in:
parent
c03a8aaa97
commit
9ed1a2e3e1
2 changed files with 97 additions and 0 deletions
89
integrationtests/self/timeout_test.go
Normal file
89
integrationtests/self/timeout_test.go
Normal file
|
@ -0,0 +1,89 @@
|
||||||
|
package self_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/tls"
|
||||||
|
"fmt"
|
||||||
|
"net"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
quic "github.com/lucas-clemente/quic-go"
|
||||||
|
quicproxy "github.com/lucas-clemente/quic-go/integrationtests/tools/proxy"
|
||||||
|
"github.com/lucas-clemente/quic-go/internal/testdata"
|
||||||
|
"github.com/lucas-clemente/quic-go/internal/utils"
|
||||||
|
. "github.com/onsi/ginkgo"
|
||||||
|
. "github.com/onsi/gomega"
|
||||||
|
)
|
||||||
|
|
||||||
|
var _ = Describe("Timeout tests", func() {
|
||||||
|
checkTimeoutError := func(err error) {
|
||||||
|
ExpectWithOffset(1, err).To(HaveOccurred())
|
||||||
|
nerr, ok := err.(net.Error)
|
||||||
|
ExpectWithOffset(1, ok).To(BeTrue())
|
||||||
|
ExpectWithOffset(1, nerr.Timeout()).To(BeTrue())
|
||||||
|
}
|
||||||
|
|
||||||
|
It("returns net.Error timeout errors when an idle timeout occurs", func() {
|
||||||
|
const idleTimeout = 100 * time.Millisecond
|
||||||
|
|
||||||
|
server, err := quic.ListenAddr(
|
||||||
|
"localhost:0",
|
||||||
|
testdata.GetTLSConfig(),
|
||||||
|
nil,
|
||||||
|
)
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
defer server.Close()
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
defer GinkgoRecover()
|
||||||
|
sess, err := server.Accept()
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
str, err := sess.OpenStream()
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
_, err = str.Write([]byte("foobar"))
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
}()
|
||||||
|
|
||||||
|
drop := utils.AtomicBool{}
|
||||||
|
|
||||||
|
proxy, err := quicproxy.NewQuicProxy("localhost:0", &quicproxy.Opts{
|
||||||
|
RemoteAddr: fmt.Sprintf("localhost:%d", server.Addr().(*net.UDPAddr).Port),
|
||||||
|
DropPacket: func(d quicproxy.Direction, p uint64) bool {
|
||||||
|
return drop.Get()
|
||||||
|
},
|
||||||
|
})
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
defer proxy.Close()
|
||||||
|
|
||||||
|
sess, err := quic.DialAddr(
|
||||||
|
fmt.Sprintf("localhost:%d", proxy.LocalPort()),
|
||||||
|
&tls.Config{RootCAs: testdata.GetRootCA()},
|
||||||
|
&quic.Config{IdleTimeout: idleTimeout},
|
||||||
|
)
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
strIn, err := sess.AcceptStream()
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
strOut, err := sess.OpenStream()
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
_, err = strIn.Read(make([]byte, 6))
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
|
||||||
|
drop.Set(true)
|
||||||
|
time.Sleep(2 * idleTimeout)
|
||||||
|
_, err = strIn.Write([]byte("test"))
|
||||||
|
checkTimeoutError(err)
|
||||||
|
_, err = strIn.Read([]byte{0})
|
||||||
|
checkTimeoutError(err)
|
||||||
|
_, err = strOut.Write([]byte("test"))
|
||||||
|
checkTimeoutError(err)
|
||||||
|
_, err = strOut.Read([]byte{0})
|
||||||
|
checkTimeoutError(err)
|
||||||
|
_, err = sess.OpenStream()
|
||||||
|
checkTimeoutError(err)
|
||||||
|
_, err = sess.OpenUniStream()
|
||||||
|
checkTimeoutError(err)
|
||||||
|
_, err = sess.AcceptStream()
|
||||||
|
checkTimeoutError(err)
|
||||||
|
_, err = sess.AcceptUniStream()
|
||||||
|
checkTimeoutError(err)
|
||||||
|
})
|
||||||
|
})
|
|
@ -2,6 +2,7 @@ package qerr
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"net"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ErrorCode can be used as a normal error without reason.
|
// ErrorCode can be used as a normal error without reason.
|
||||||
|
@ -17,6 +18,8 @@ type QuicError struct {
|
||||||
ErrorMessage string
|
ErrorMessage string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var _ net.Error = &QuicError{}
|
||||||
|
|
||||||
// Error creates a new QuicError instance
|
// Error creates a new QuicError instance
|
||||||
func Error(errorCode ErrorCode, errorMessage string) *QuicError {
|
func Error(errorCode ErrorCode, errorMessage string) *QuicError {
|
||||||
return &QuicError{
|
return &QuicError{
|
||||||
|
@ -29,6 +32,11 @@ func (e *QuicError) Error() string {
|
||||||
return fmt.Sprintf("%s: %s", e.ErrorCode.String(), e.ErrorMessage)
|
return fmt.Sprintf("%s: %s", e.ErrorCode.String(), e.ErrorMessage)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Temporary says if the error is temporary.
|
||||||
|
func (e *QuicError) Temporary() bool {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
// Timeout says if this error is a timeout.
|
// Timeout says if this error is a timeout.
|
||||||
func (e *QuicError) Timeout() bool {
|
func (e *QuicError) Timeout() bool {
|
||||||
switch e.ErrorCode {
|
switch e.ErrorCode {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue