mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
55 lines
1.5 KiB
Go
55 lines
1.5 KiB
Go
package versionnegotiation
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
quic "github.com/refraction-networking/uquic"
|
|
quicproxy "github.com/refraction-networking/uquic/integrationtests/tools/proxy"
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Handshake RTT tests", func() {
|
|
const rtt = 400 * time.Millisecond
|
|
|
|
expectDurationInRTTs := func(startTime time.Time, num int) {
|
|
testDuration := time.Since(startTime)
|
|
rtts := float32(testDuration) / float32(rtt)
|
|
Expect(rtts).To(SatisfyAll(
|
|
BeNumerically(">=", num),
|
|
BeNumerically("<", num+1),
|
|
))
|
|
}
|
|
|
|
It("fails when there's no matching version, after 1 RTT", func() {
|
|
if len(protocol.SupportedVersions) == 1 {
|
|
Skip("Test requires at least 2 supported versions.")
|
|
}
|
|
|
|
serverConfig := &quic.Config{}
|
|
serverConfig.Versions = protocol.SupportedVersions[:1]
|
|
ln, err := quic.ListenAddr("localhost:0", getTLSConfig(), serverConfig)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
defer ln.Close()
|
|
|
|
// start the proxy
|
|
proxy, err := quicproxy.NewQuicProxy("localhost:0", &quicproxy.Opts{
|
|
RemoteAddr: ln.Addr().String(),
|
|
DelayPacket: func(_ quicproxy.Direction, _ []byte) time.Duration { return rtt / 2 },
|
|
})
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
startTime := time.Now()
|
|
_, err = quic.DialAddr(
|
|
context.Background(),
|
|
proxy.LocalAddr().String(),
|
|
getTLSClientConfig(),
|
|
maybeAddQLOGTracer(&quic.Config{Versions: protocol.SupportedVersions[1:2]}),
|
|
)
|
|
Expect(err).To(HaveOccurred())
|
|
expectDurationInRTTs(startTime, 1)
|
|
})
|
|
})
|