mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
http3: correctly use the quic.Transport (#3869)
* use quic.Transport in http3 * add intergrationtests to dial server with different server names * update test
This commit is contained in:
parent
21549fcb4a
commit
c96fbd2e4a
6 changed files with 57 additions and 90 deletions
|
@ -61,6 +61,7 @@ var _ = Describe("HTTP3 Server hotswap test", func() {
|
|||
mux1 *http.ServeMux
|
||||
mux2 *http.ServeMux
|
||||
client *http.Client
|
||||
rt *http3.RoundTripper
|
||||
server1 *http3.Server
|
||||
server2 *http3.Server
|
||||
ln *listenerWrapper
|
||||
|
@ -97,17 +98,17 @@ var _ = Describe("HTTP3 Server hotswap test", func() {
|
|||
})
|
||||
|
||||
AfterEach(func() {
|
||||
rt.Close()
|
||||
Expect(ln.Close()).NotTo(HaveOccurred())
|
||||
})
|
||||
|
||||
BeforeEach(func() {
|
||||
client = &http.Client{
|
||||
Transport: &http3.RoundTripper{
|
||||
TLSClientConfig: getTLSClientConfig(),
|
||||
DisableCompression: true,
|
||||
QuicConfig: getQuicConfig(&quic.Config{MaxIdleTimeout: 10 * time.Second}),
|
||||
},
|
||||
rt = &http3.RoundTripper{
|
||||
TLSClientConfig: getTLSClientConfig(),
|
||||
DisableCompression: true,
|
||||
QuicConfig: getQuicConfig(&quic.Config{MaxIdleTimeout: 10 * time.Second}),
|
||||
}
|
||||
client = &http.Client{Transport: rt}
|
||||
})
|
||||
|
||||
It("hotswap works", func() {
|
||||
|
|
|
@ -40,6 +40,7 @@ var _ = Describe("HTTP tests", func() {
|
|||
var (
|
||||
mux *http.ServeMux
|
||||
client *http.Client
|
||||
rt *http3.RoundTripper
|
||||
server *http3.Server
|
||||
stoppedServing chan struct{}
|
||||
port string
|
||||
|
@ -77,6 +78,12 @@ var _ = Describe("HTTP tests", func() {
|
|||
w.Write(body) // don't check the error here. Stream may be reset.
|
||||
})
|
||||
|
||||
mux.HandleFunc("/remoteAddr", func(w http.ResponseWriter, r *http.Request) {
|
||||
defer GinkgoRecover()
|
||||
w.Header().Set("X-RemoteAddr", r.RemoteAddr)
|
||||
w.WriteHeader(http.StatusOK)
|
||||
})
|
||||
|
||||
server = &http3.Server{
|
||||
Handler: mux,
|
||||
TLSConfig: getTLSConfig(),
|
||||
|
@ -99,18 +106,18 @@ var _ = Describe("HTTP tests", func() {
|
|||
})
|
||||
|
||||
AfterEach(func() {
|
||||
rt.Close()
|
||||
Expect(server.Close()).NotTo(HaveOccurred())
|
||||
Eventually(stoppedServing).Should(BeClosed())
|
||||
})
|
||||
|
||||
BeforeEach(func() {
|
||||
client = &http.Client{
|
||||
Transport: &http3.RoundTripper{
|
||||
TLSClientConfig: getTLSClientConfig(),
|
||||
DisableCompression: true,
|
||||
QuicConfig: getQuicConfig(&quic.Config{MaxIdleTimeout: 10 * time.Second}),
|
||||
},
|
||||
rt = &http3.RoundTripper{
|
||||
TLSClientConfig: getTLSClientConfigWithoutServerName(),
|
||||
DisableCompression: true,
|
||||
QuicConfig: getQuicConfig(&quic.Config{MaxIdleTimeout: 10 * time.Second}),
|
||||
}
|
||||
client = &http.Client{Transport: rt}
|
||||
})
|
||||
|
||||
It("downloads a hello", func() {
|
||||
|
@ -122,6 +129,20 @@ var _ = Describe("HTTP tests", func() {
|
|||
Expect(string(body)).To(Equal("Hello, World!\n"))
|
||||
})
|
||||
|
||||
It("requests to different servers with the same udpconn", func() {
|
||||
resp, err := client.Get("https://localhost:" + port + "/remoteAddr")
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(resp.StatusCode).To(Equal(200))
|
||||
addr1 := resp.Header.Get("X-RemoteAddr")
|
||||
Expect(addr1).ToNot(Equal(""))
|
||||
resp, err = client.Get("https://127.0.0.1:" + port + "/remoteAddr")
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(resp.StatusCode).To(Equal(200))
|
||||
addr2 := resp.Header.Get("X-RemoteAddr")
|
||||
Expect(addr2).ToNot(Equal(""))
|
||||
Expect(addr1).To(Equal(addr2))
|
||||
})
|
||||
|
||||
It("downloads concurrently", func() {
|
||||
group, ctx := errgroup.WithContext(context.Background())
|
||||
for i := 0; i < 2; i++ {
|
||||
|
|
|
@ -90,10 +90,11 @@ var (
|
|||
qlogTracer func(context.Context, logging.Perspective, quic.ConnectionID) logging.ConnectionTracer
|
||||
enableQlog bool
|
||||
|
||||
version quic.VersionNumber
|
||||
tlsConfig *tls.Config
|
||||
tlsConfigLongChain *tls.Config
|
||||
tlsClientConfig *tls.Config
|
||||
version quic.VersionNumber
|
||||
tlsConfig *tls.Config
|
||||
tlsConfigLongChain *tls.Config
|
||||
tlsClientConfig *tls.Config
|
||||
tlsClientConfigWithoutServerName *tls.Config
|
||||
)
|
||||
|
||||
// read the logfile command line flag
|
||||
|
@ -131,6 +132,10 @@ func init() {
|
|||
RootCAs: root,
|
||||
NextProtos: []string{alpn},
|
||||
}
|
||||
tlsClientConfigWithoutServerName = &tls.Config{
|
||||
RootCAs: root,
|
||||
NextProtos: []string{alpn},
|
||||
}
|
||||
}
|
||||
|
||||
var _ = BeforeSuite(func() {
|
||||
|
@ -165,6 +170,10 @@ func getTLSClientConfig() *tls.Config {
|
|||
return tlsClientConfig.Clone()
|
||||
}
|
||||
|
||||
func getTLSClientConfigWithoutServerName() *tls.Config {
|
||||
return tlsClientConfigWithoutServerName.Clone()
|
||||
}
|
||||
|
||||
func getQuicConfig(conf *quic.Config) *quic.Config {
|
||||
if conf == nil {
|
||||
conf = &quic.Config{}
|
||||
|
|
|
@ -9,6 +9,7 @@ import (
|
|||
"crypto/x509"
|
||||
"crypto/x509/pkix"
|
||||
"math/big"
|
||||
"net"
|
||||
"time"
|
||||
)
|
||||
|
||||
|
@ -44,6 +45,7 @@ func GenerateLeafCert(ca *x509.Certificate, caPriv crypto.PrivateKey) (*x509.Cer
|
|||
certTempl := &x509.Certificate{
|
||||
SerialNumber: big.NewInt(1),
|
||||
DNSNames: []string{"localhost"},
|
||||
IPAddresses: []net.IP{net.IPv4(127, 0, 0, 1)},
|
||||
NotBefore: time.Now(),
|
||||
NotAfter: time.Now().Add(24 * time.Hour),
|
||||
ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth, x509.ExtKeyUsageServerAuth},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue