mirror of
https://github.com/moby/moby.git
synced 2025-07-30 18:23:29 +03:00
integration-cli: DockerNetworkSuite: replace dockerCmd and waitRun
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@ -6,6 +6,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/docker/docker/integration-cli/cli"
|
||||||
"github.com/docker/docker/testutil"
|
"github.com/docker/docker/testutil"
|
||||||
"github.com/docker/docker/testutil/request"
|
"github.com/docker/docker/testutil/request"
|
||||||
"gotest.tools/v3/assert"
|
"gotest.tools/v3/assert"
|
||||||
@ -13,10 +14,10 @@ import (
|
|||||||
|
|
||||||
// #19100 This is a deprecated feature test, it should be removed in Docker 1.12
|
// #19100 This is a deprecated feature test, it should be removed in Docker 1.12
|
||||||
func (s *DockerNetworkSuite) TestDeprecatedDockerNetworkStartAPIWithHostconfig(c *testing.T) {
|
func (s *DockerNetworkSuite) TestDeprecatedDockerNetworkStartAPIWithHostconfig(c *testing.T) {
|
||||||
netName := "test"
|
const netName = "test"
|
||||||
conName := "foo"
|
const conName = "foo"
|
||||||
dockerCmd(c, "network", "create", netName)
|
cli.DockerCmd(c, "network", "create", netName)
|
||||||
dockerCmd(c, "create", "--name", conName, "busybox", "top")
|
cli.DockerCmd(c, "create", "--name", conName, "busybox", "top")
|
||||||
|
|
||||||
config := map[string]interface{}{
|
config := map[string]interface{}{
|
||||||
"HostConfig": map[string]interface{}{
|
"HostConfig": map[string]interface{}{
|
||||||
@ -25,7 +26,7 @@ func (s *DockerNetworkSuite) TestDeprecatedDockerNetworkStartAPIWithHostconfig(c
|
|||||||
}
|
}
|
||||||
_, _, err := request.Post(testutil.GetContext(c), formatV123StartAPIURL("/containers/"+conName+"/start"), request.JSONBody(config))
|
_, _, err := request.Post(testutil.GetContext(c), formatV123StartAPIURL("/containers/"+conName+"/start"), request.JSONBody(config))
|
||||||
assert.NilError(c, err)
|
assert.NilError(c, err)
|
||||||
assert.NilError(c, waitRun(conName))
|
cli.WaitRun(c, conName)
|
||||||
networks := inspectField(c, conName, "NetworkSettings.Networks")
|
networks := inspectField(c, conName, "NetworkSettings.Networks")
|
||||||
assert.Assert(c, strings.Contains(networks, netName), "Should contain '%s' network", netName)
|
assert.Assert(c, strings.Contains(networks, netName), "Should contain '%s' network", netName)
|
||||||
assert.Assert(c, !strings.Contains(networks, "bridge"), "Should not contain 'bridge' network")
|
assert.Assert(c, !strings.Contains(networks, "bridge"), "Should not contain 'bridge' network")
|
||||||
|
Reference in New Issue
Block a user