2015-02-12 11:38:52 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
"strings"
|
2019-09-09 17:06:12 -04:00
|
|
|
"testing"
|
2015-04-18 12:46:47 -04:00
|
|
|
|
2020-02-07 08:39:24 -05:00
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
"gotest.tools/v3/icmd"
|
2015-02-12 11:38:52 -05:00
|
|
|
)
|
|
|
|
|
2022-06-16 17:32:10 -04:00
|
|
|
type DockerCLIProxySuite struct {
|
|
|
|
ds *DockerSuite
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *DockerCLIProxySuite) TearDownTest(c *testing.T) {
|
|
|
|
s.ds.TearDownTest(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *DockerCLIProxySuite) OnTimeout(c *testing.T) {
|
|
|
|
s.ds.OnTimeout(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *DockerCLIProxySuite) TestCLIProxyDisableProxyUnixSock(c *testing.T) {
|
2018-12-24 07:25:53 -05:00
|
|
|
testRequires(c, DaemonIsLinux, testEnv.IsLocalDaemon)
|
2015-02-12 11:38:52 -05:00
|
|
|
|
2017-01-05 13:08:24 -05:00
|
|
|
icmd.RunCmd(icmd.Cmd{
|
2017-01-05 06:38:34 -05:00
|
|
|
Command: []string{dockerBinary, "info"},
|
2017-01-05 13:08:24 -05:00
|
|
|
Env: appendBaseEnv(false, "HTTP_PROXY=http://127.0.0.1:9999"),
|
2017-01-05 06:38:34 -05:00
|
|
|
}).Assert(c, icmd.Success)
|
2015-02-12 11:38:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Can't use localhost here since go has a special case to not use proxy if connecting to localhost
|
2015-04-11 13:31:34 -04:00
|
|
|
// See https://golang.org/pkg/net/http/#ProxyFromEnvironment
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerDaemonSuite) TestCLIProxyProxyTCPSock(c *testing.T) {
|
2015-02-12 11:38:52 -05:00
|
|
|
// get the IP to use to connect since we can't use localhost
|
|
|
|
addrs, err := net.InterfaceAddrs()
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, err)
|
2015-02-12 11:38:52 -05:00
|
|
|
var ip string
|
|
|
|
for _, addr := range addrs {
|
|
|
|
sAddr := addr.String()
|
|
|
|
if !strings.Contains(sAddr, "127.0.0.1") {
|
|
|
|
addrArr := strings.Split(sAddr, "/")
|
|
|
|
ip = addrArr[0]
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.Assert(c, ip != "")
|
2015-10-09 02:53:56 -04:00
|
|
|
|
2016-12-09 17:20:14 -05:00
|
|
|
s.d.Start(c, "-H", "tcp://"+ip+":2375")
|
2017-01-05 06:38:34 -05:00
|
|
|
|
|
|
|
icmd.RunCmd(icmd.Cmd{
|
|
|
|
Command: []string{dockerBinary, "info"},
|
2017-01-05 13:08:24 -05:00
|
|
|
Env: []string{"DOCKER_HOST=tcp://" + ip + ":2375", "HTTP_PROXY=127.0.0.1:9999"},
|
|
|
|
}).Assert(c, icmd.Expected{Error: "exit status 1", ExitCode: 1})
|
2015-02-12 11:38:52 -05:00
|
|
|
// Test with no_proxy
|
2017-01-05 13:08:24 -05:00
|
|
|
icmd.RunCmd(icmd.Cmd{
|
2017-01-05 06:38:34 -05:00
|
|
|
Command: []string{dockerBinary, "info"},
|
2017-01-05 13:08:24 -05:00
|
|
|
Env: []string{"DOCKER_HOST=tcp://" + ip + ":2375", "HTTP_PROXY=127.0.0.1:9999", "NO_PROXY=" + ip},
|
2017-01-05 06:38:34 -05:00
|
|
|
}).Assert(c, icmd.Success)
|
2015-02-12 11:38:52 -05:00
|
|
|
}
|