-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker_cli_netmode_test.go
165 lines (137 loc) · 5.68 KB
/
docker_cli_netmode_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package main
import (
"os/exec"
"strings"
"github.com/docker/docker/runconfig"
"github.com/go-check/check"
)
// GH14530. Validates combinations of --net= with other options
// stringCheckPS is how the output of PS starts in order to validate that
// the command executed in a container did really run PS correctly.
const stringCheckPS = "PID USER"
// checkContains is a helper function that validates a command output did
// contain what was expected.
func checkContains(expected string, out string, c *check.C) {
if !strings.Contains(out, expected) {
c.Fatalf("Expected '%s', got '%s'", expected, out)
}
}
func (s *DockerSuite) TestNetHostname(c *check.C) {
testRequires(c, DaemonIsLinux, NotUserNamespace)
var (
out string
err error
runCmd *exec.Cmd
)
runCmd = exec.Command(dockerBinary, "run", "-h=name", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err != nil {
c.Fatalf(out, err)
}
checkContains(stringCheckPS, out, c)
runCmd = exec.Command(dockerBinary, "run", "--net=host", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err != nil {
c.Fatalf(out, err)
}
checkContains(stringCheckPS, out, c)
runCmd = exec.Command(dockerBinary, "run", "-h=name", "--net=bridge", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err != nil {
c.Fatalf(out, err)
}
checkContains(stringCheckPS, out, c)
runCmd = exec.Command(dockerBinary, "run", "-h=name", "--net=none", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err != nil {
c.Fatalf(out, err)
}
checkContains(stringCheckPS, out, c)
runCmd = exec.Command(dockerBinary, "run", "-h=name", "--net=host", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err)
}
checkContains(runconfig.ErrConflictNetworkHostname.Error(), out, c)
runCmd = exec.Command(dockerBinary, "run", "-h=name", "--net=container:other", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err, c)
}
checkContains(runconfig.ErrConflictNetworkHostname.Error(), out, c)
runCmd = exec.Command(dockerBinary, "run", "--net=container", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err, c)
}
checkContains("--net: invalid net mode: invalid container format container:<name|id>", out, c)
runCmd = exec.Command(dockerBinary, "run", "--net=weird", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err)
}
checkContains("network weird not found", out, c)
}
func (s *DockerSuite) TestConflictContainerNetworkAndLinks(c *check.C) {
testRequires(c, DaemonIsLinux, NotUserNamespace)
var (
out string
err error
runCmd *exec.Cmd
)
runCmd = exec.Command(dockerBinary, "run", "--net=container:other", "--link=zip:zap", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err)
}
checkContains(runconfig.ErrConflictContainerNetworkAndLinks.Error(), out, c)
runCmd = exec.Command(dockerBinary, "run", "--net=host", "--link=zip:zap", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err)
}
checkContains(runconfig.ErrConflictHostNetworkAndLinks.Error(), out, c)
}
func (s *DockerSuite) TestConflictNetworkModeAndOptions(c *check.C) {
testRequires(c, DaemonIsLinux, NotUserNamespace)
var (
out string
err error
runCmd *exec.Cmd
)
runCmd = exec.Command(dockerBinary, "run", "--net=host", "--dns=8.8.8.8", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err)
}
checkContains(runconfig.ErrConflictNetworkAndDNS.Error(), out, c)
runCmd = exec.Command(dockerBinary, "run", "--net=container:other", "--dns=8.8.8.8", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err)
}
checkContains(runconfig.ErrConflictNetworkAndDNS.Error(), out, c)
runCmd = exec.Command(dockerBinary, "run", "--net=host", "--add-host=name:8.8.8.8", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err)
}
checkContains(runconfig.ErrConflictNetworkHosts.Error(), out, c)
runCmd = exec.Command(dockerBinary, "run", "--net=container:other", "--add-host=name:8.8.8.8", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err)
}
checkContains(runconfig.ErrConflictNetworkHosts.Error(), out, c)
runCmd = exec.Command(dockerBinary, "run", "--net=host", "--mac-address=92:d0:c6:0a:29:33", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err)
}
checkContains(runconfig.ErrConflictContainerNetworkAndMac.Error(), out, c)
runCmd = exec.Command(dockerBinary, "run", "--net=container:other", "--mac-address=92:d0:c6:0a:29:33", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err)
}
checkContains(runconfig.ErrConflictContainerNetworkAndMac.Error(), out, c)
runCmd = exec.Command(dockerBinary, "run", "--net=container:other", "-P", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err)
}
checkContains(runconfig.ErrConflictNetworkPublishPorts.Error(), out, c)
runCmd = exec.Command(dockerBinary, "run", "--net=container:other", "-p", "8080", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err)
}
checkContains(runconfig.ErrConflictNetworkPublishPorts.Error(), out, c)
runCmd = exec.Command(dockerBinary, "run", "--net=container:other", "--expose", "8000-9000", "busybox", "ps")
if out, _, err = runCommandWithOutput(runCmd); err == nil {
c.Fatalf(out, err)
}
checkContains(runconfig.ErrConflictNetworkExposePorts.Error(), out, c)
}