Browse Source

Allow username:password to be included with host

allow_https
Paul Bonser 7 years ago
parent
commit
d7fb602e0f
2 changed files with 6 additions and 1 deletions
  1. +1
    -1
      goes.go
  2. +5
    -0
      goes_test.go

+ 1
- 1
goes.go View File

@@ -582,7 +582,7 @@ func (c *Client) AliasExists(alias string) (bool, error) {
}

func (c *Client) replaceHost(req *http.Request) {
req.URL.User = c.Host.User
req.URL.Scheme = c.Host.Scheme
req.URL.Host = c.Host.Host
}


+ 5
- 0
goes_test.go View File

@@ -44,6 +44,11 @@ func (s *GoesTestSuite) TestNewClient(c *C) {
c.Assert(conn, DeepEquals, &Client{&url.URL{Scheme: "http", Host: ESHost + ":" + ESPort}, http.DefaultClient, ""})
}

func (s *GoesTestSuite) TestNewClientWithAuth(c *C) {
conn := NewClient("foo:bar@"+ESHost, ESPort)
c.Assert(conn, DeepEquals, &Client{&url.URL{Scheme: "http", User: url.UserPassword("foo", "bar"), Host: ESHost + ":" + ESPort}, http.DefaultClient, ""})
}

func (s *GoesTestSuite) TestWithHTTPClient(c *C) {
tr := &http.Transport{
DisableCompression: true,


Loading…
Cancel
Save