Explorar el Código

Allow username:password to be included with host

allow_https
Paul Bonser hace 7 años
padre
commit
d7fb602e0f
Se han modificado 2 ficheros con 6 adiciones y 1 borrados
  1. +1
    -1
      goes.go
  2. +5
    -0
      goes_test.go

+ 1
- 1
goes.go Ver fichero

@@ -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 Ver fichero

@@ -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,


Cargando…
Cancelar
Guardar