correctly read the hostname from a http.Request

This commit is contained in:
Marten Seemann 2016-12-19 00:12:25 +07:00
parent 14135798c0
commit c547ced3ce
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
3 changed files with 39 additions and 1 deletions

View file

@ -145,7 +145,7 @@ func (c *Client) Do(req *http.Request) (*http.Response, error) {
if req.URL.Scheme != "https" {
return nil, errors.New("quic http2: unsupported scheme")
}
if authorityAddr("https", req.Host) != c.hostname {
if authorityAddr("https", hostnameFromRequest(req)) != c.hostname {
utils.Debugf("%s vs %s", req.Host, c.hostname)
return nil, errors.New("h2quic Client BUG: Do called for the wrong client")
}

View file

@ -68,3 +68,13 @@ func requestFromHeaders(headers []hpack.HeaderField) (*http.Request, error) {
TLS: &tls.ConnectionState{},
}, nil
}
func hostnameFromRequest(req *http.Request) string {
if len(req.Host) > 0 {
return req.Host
}
if req.URL != nil {
return req.URL.Host
}
return ""
}

View file

@ -2,6 +2,7 @@ package h2quic
import (
"net/http"
"net/url"
"golang.org/x/net/http2/hpack"
@ -90,4 +91,31 @@ var _ = Describe("Request", func() {
_, err := requestFromHeaders(headers)
Expect(err).To(MatchError(":path, :authority and :method must not be empty"))
})
Context("extracting the hostname from a request", func() {
var url *url.URL
BeforeEach(func() {
var err error
url, err = url.Parse("https://quic.clemente.io:1337")
Expect(err).ToNot(HaveOccurred())
})
It("uses req.Host if available", func() {
req := &http.Request{
Host: "www.example.org",
URL: url,
}
Expect(hostnameFromRequest(req)).To(Equal("www.example.org"))
})
It("uses req.URL.Host if req.Host is not set", func() {
req := &http.Request{URL: url}
Expect(hostnameFromRequest(req)).To(Equal("quic.clemente.io:1337"))
})
It("returns an empty hostname if nothing is set", func() {
Expect(hostnameFromRequest(&http.Request{})).To(BeEmpty())
})
})
})