mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9f0b3f5609
full diff: https://github.com/gotestyourself/gotest.tools/compare/v2.3.0...v3.0.1 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
31 lines
1,000 B
Go
31 lines
1,000 B
Go
// +build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/testutil/request"
|
|
"gotest.tools/v3/assert"
|
|
)
|
|
|
|
// #19100 This is a deprecated feature test, it should be removed in Docker 1.12
|
|
func (s *DockerNetworkSuite) TestDeprecatedDockerNetworkStartAPIWithHostconfig(c *testing.T) {
|
|
netName := "test"
|
|
conName := "foo"
|
|
dockerCmd(c, "network", "create", netName)
|
|
dockerCmd(c, "create", "--name", conName, "busybox", "top")
|
|
|
|
config := map[string]interface{}{
|
|
"HostConfig": map[string]interface{}{
|
|
"NetworkMode": netName,
|
|
},
|
|
}
|
|
_, _, err := request.Post(formatV123StartAPIURL("/containers/"+conName+"/start"), request.JSONBody(config))
|
|
assert.NilError(c, err)
|
|
assert.NilError(c, waitRun(conName))
|
|
networks := inspectField(c, conName, "NetworkSettings.Networks")
|
|
assert.Assert(c, strings.Contains(networks, netName), "Should contain '%s' network", netName)
|
|
assert.Assert(c, !strings.Contains(networks, "bridge"), "Should not contain 'bridge' network")
|
|
}
|