mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
http3: set tls.Config.ServerName for outgoing requests, if unset (#3867)
* fix #3865 * add test case * Update http3/client, client_test.go Co-authored-by: Marten Seemann <martenseemann@gmail.com> --------- Co-authored-by: Marten Seemann <martenseemann@gmail.com>
This commit is contained in:
parent
fce0261c34
commit
21549fcb4a
2 changed files with 25 additions and 0 deletions
|
@ -90,6 +90,22 @@ var _ = Describe("Client", func() {
|
|||
Expect(dialAddrCalled).To(BeTrue())
|
||||
})
|
||||
|
||||
It("sets the ServerName in the tls.Config, if not set", func() {
|
||||
const host = "foo.bar"
|
||||
dialCalled := false
|
||||
dialFunc := func(ctx context.Context, addr string, tlsCfg *tls.Config, cfg *quic.Config) (quic.EarlyConnection, error) {
|
||||
Expect(tlsCfg.ServerName).To(Equal(host))
|
||||
dialCalled = true
|
||||
return nil, errors.New("test done")
|
||||
}
|
||||
client, err := newClient(host, nil, &roundTripperOpts{}, nil, dialFunc)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
req, err := http.NewRequest("GET", "https://foo.bar", nil)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
client.RoundTripOpt(req, RoundTripOpt{})
|
||||
Expect(dialCalled).To(BeTrue())
|
||||
})
|
||||
|
||||
It("uses the TLS config and QUIC config", func() {
|
||||
tlsConf := &tls.Config{
|
||||
ServerName: "foo.bar",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue