mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
1ac350a0ec
This commit makes use of the CNM model supported by LibNetwork and provides an ability to let a container to publish a specified service. Behind the scenes, if a service with the given name doesnt exist, it is automatically created on appropriate network and attach the container. Signed-off-by: Alessandro Boch <aboch@docker.com> Signed-off-by: Madhu Venugopal <madhu@docker.com>
54 lines
1.3 KiB
Go
54 lines
1.3 KiB
Go
// +build experimental
|
|
|
|
package main
|
|
|
|
import (
|
|
"os/exec"
|
|
"strings"
|
|
|
|
"github.com/go-check/check"
|
|
)
|
|
|
|
func assertNwIsAvailable(c *check.C, name string) {
|
|
if !isNwPresent(c, name) {
|
|
c.Fatalf("Network %s not found in network ls o/p", name)
|
|
}
|
|
}
|
|
|
|
func assertNwNotAvailable(c *check.C, name string) {
|
|
if isNwPresent(c, name) {
|
|
c.Fatalf("Found network %s in network ls o/p", name)
|
|
}
|
|
}
|
|
|
|
func isNwPresent(c *check.C, name string) bool {
|
|
runCmd := exec.Command(dockerBinary, "network", "ls")
|
|
out, _, _, err := runCommandWithStdoutStderr(runCmd)
|
|
c.Assert(err, check.IsNil)
|
|
lines := strings.Split(out, "\n")
|
|
for i := 1; i < len(lines)-1; i++ {
|
|
if strings.Contains(lines[i], name) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (s *DockerSuite) TestDockerNetworkLsDefault(c *check.C) {
|
|
defaults := []string{"bridge", "host", "none"}
|
|
for _, nn := range defaults {
|
|
assertNwIsAvailable(c, nn)
|
|
}
|
|
}
|
|
|
|
func (s *DockerSuite) TestDockerNetworkCreateDelete(c *check.C) {
|
|
runCmd := exec.Command(dockerBinary, "network", "create", "test")
|
|
_, _, _, err := runCommandWithStdoutStderr(runCmd)
|
|
c.Assert(err, check.IsNil)
|
|
assertNwIsAvailable(c, "test")
|
|
|
|
runCmd = exec.Command(dockerBinary, "network", "rm", "test")
|
|
_, _, _, err = runCommandWithStdoutStderr(runCmd)
|
|
c.Assert(err, check.IsNil)
|
|
assertNwNotAvailable(c, "test")
|
|
}
|