mirror of https://github.com/docker/cli.git
Merge pull request #211 from ksouf/issue-37-add-tests-on-commands
adding network_create tests
This commit is contained in:
commit
1aa82bc7df
|
@ -0,0 +1,19 @@
|
||||||
|
package network
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/docker/docker/api/types"
|
||||||
|
"github.com/docker/docker/client"
|
||||||
|
"golang.org/x/net/context"
|
||||||
|
)
|
||||||
|
|
||||||
|
type fakeClient struct {
|
||||||
|
client.Client
|
||||||
|
networkCreateFunc func(ctx context.Context, name string, options types.NetworkCreate) (types.NetworkCreateResponse, error)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *fakeClient) NetworkCreate(ctx context.Context, name string, options types.NetworkCreate) (types.NetworkCreateResponse, error) {
|
||||||
|
if c.networkCreateFunc != nil {
|
||||||
|
return c.networkCreateFunc(ctx, name, options)
|
||||||
|
}
|
||||||
|
return types.NetworkCreateResponse{}, nil
|
||||||
|
}
|
|
@ -8,8 +8,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// NewNetworkCommand returns a cobra command for `network` subcommands
|
// NewNetworkCommand returns a cobra command for `network` subcommands
|
||||||
// nolint: interfacer
|
func NewNetworkCommand(dockerCli command.Cli) *cobra.Command {
|
||||||
func NewNetworkCommand(dockerCli *command.DockerCli) *cobra.Command {
|
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
Use: "network",
|
Use: "network",
|
||||||
Short: "Manage networks",
|
Short: "Manage networks",
|
||||||
|
|
|
@ -19,7 +19,7 @@ type connectOptions struct {
|
||||||
linklocalips []string
|
linklocalips []string
|
||||||
}
|
}
|
||||||
|
|
||||||
func newConnectCommand(dockerCli *command.DockerCli) *cobra.Command {
|
func newConnectCommand(dockerCli command.Cli) *cobra.Command {
|
||||||
options := connectOptions{
|
options := connectOptions{
|
||||||
links: opts.NewListOpts(opts.ValidateLink),
|
links: opts.NewListOpts(opts.ValidateLink),
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,7 @@ func newConnectCommand(dockerCli *command.DockerCli) *cobra.Command {
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
func runConnect(dockerCli *command.DockerCli, options connectOptions) error {
|
func runConnect(dockerCli command.Cli, options connectOptions) error {
|
||||||
client := dockerCli.Client()
|
client := dockerCli.Client()
|
||||||
|
|
||||||
epConfig := &network.EndpointSettings{
|
epConfig := &network.EndpointSettings{
|
||||||
|
|
|
@ -36,7 +36,7 @@ type createOptions struct {
|
||||||
ipamOpt opts.MapOpts
|
ipamOpt opts.MapOpts
|
||||||
}
|
}
|
||||||
|
|
||||||
func newCreateCommand(dockerCli *command.DockerCli) *cobra.Command {
|
func newCreateCommand(dockerCli command.Cli) *cobra.Command {
|
||||||
options := createOptions{
|
options := createOptions{
|
||||||
driverOpts: *opts.NewMapOpts(nil, nil),
|
driverOpts: *opts.NewMapOpts(nil, nil),
|
||||||
labels: opts.NewListOpts(opts.ValidateEnv),
|
labels: opts.NewListOpts(opts.ValidateEnv),
|
||||||
|
@ -82,7 +82,7 @@ func newCreateCommand(dockerCli *command.DockerCli) *cobra.Command {
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
func runCreate(dockerCli *command.DockerCli, options createOptions) error {
|
func runCreate(dockerCli command.Cli, options createOptions) error {
|
||||||
client := dockerCli.Client()
|
client := dockerCli.Client()
|
||||||
|
|
||||||
ipamCfg, err := consolidateIpam(options.ipamSubnet, options.ipamIPRange, options.ipamGateway, options.ipamAux.GetAll())
|
ipamCfg, err := consolidateIpam(options.ipamSubnet, options.ipamIPRange, options.ipamGateway, options.ipamAux.GetAll())
|
||||||
|
@ -232,13 +232,13 @@ func subnetMatches(subnet, data string) (bool, error) {
|
||||||
|
|
||||||
_, s, err := net.ParseCIDR(subnet)
|
_, s, err := net.ParseCIDR(subnet)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false, errors.Errorf("Invalid subnet %s : %v", s, err)
|
return false, errors.Wrap(err, "invalid subnet")
|
||||||
}
|
}
|
||||||
|
|
||||||
if strings.Contains(data, "/") {
|
if strings.Contains(data, "/") {
|
||||||
ip, _, err = net.ParseCIDR(data)
|
ip, _, err = net.ParseCIDR(data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false, errors.Errorf("Invalid cidr %s : %v", data, err)
|
return false, err
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ip = net.ParseIP(data)
|
ip = net.ParseIP(data)
|
||||||
|
|
|
@ -0,0 +1,178 @@
|
||||||
|
package network
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"io/ioutil"
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/docker/cli/cli/internal/test"
|
||||||
|
"github.com/docker/docker/api/types"
|
||||||
|
"github.com/docker/docker/api/types/network"
|
||||||
|
"github.com/docker/docker/pkg/testutil"
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
"golang.org/x/net/context"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestNetworkCreateErrors(t *testing.T) {
|
||||||
|
testCases := []struct {
|
||||||
|
args []string
|
||||||
|
flags map[string]string
|
||||||
|
networkCreateFunc func(ctx context.Context, name string, options types.NetworkCreate) (types.NetworkCreateResponse, error)
|
||||||
|
expectedError string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
expectedError: "exactly 1 argument",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: []string{"toto"},
|
||||||
|
networkCreateFunc: func(ctx context.Context, name string, createBody types.NetworkCreate) (types.NetworkCreateResponse, error) {
|
||||||
|
return types.NetworkCreateResponse{}, errors.Errorf("error creating network")
|
||||||
|
},
|
||||||
|
expectedError: "error creating network",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: []string{"toto"},
|
||||||
|
flags: map[string]string{
|
||||||
|
"ip-range": "255.255.0.0/24",
|
||||||
|
"gateway": "255.0.255.0/24",
|
||||||
|
"subnet": "10.1.2.0.30.50",
|
||||||
|
},
|
||||||
|
expectedError: "invalid CIDR address: 10.1.2.0.30.50",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: []string{"toto"},
|
||||||
|
flags: map[string]string{
|
||||||
|
"ip-range": "255.255.0.0.30/24",
|
||||||
|
"gateway": "255.0.255.0/24",
|
||||||
|
"subnet": "255.0.0.0/24",
|
||||||
|
},
|
||||||
|
expectedError: "invalid CIDR address: 255.255.0.0.30/24",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: []string{"toto"},
|
||||||
|
flags: map[string]string{
|
||||||
|
"gateway": "255.0.0.0/24",
|
||||||
|
},
|
||||||
|
expectedError: "every ip-range or gateway must have a corresponding subnet",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: []string{"toto"},
|
||||||
|
flags: map[string]string{
|
||||||
|
"ip-range": "255.0.0.0/24",
|
||||||
|
},
|
||||||
|
expectedError: "every ip-range or gateway must have a corresponding subnet",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: []string{"toto"},
|
||||||
|
flags: map[string]string{
|
||||||
|
"ip-range": "255.0.0.0/24",
|
||||||
|
"gateway": "255.0.0.0/24",
|
||||||
|
},
|
||||||
|
expectedError: "every ip-range or gateway must have a corresponding subnet",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: []string{"toto"},
|
||||||
|
flags: map[string]string{
|
||||||
|
"ip-range": "255.255.0.0/24",
|
||||||
|
"gateway": "255.0.255.0/24",
|
||||||
|
"subnet": "10.1.2.0/23,10.1.3.248/30",
|
||||||
|
},
|
||||||
|
expectedError: "multiple overlapping subnet configuration is not supported",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: []string{"toto"},
|
||||||
|
flags: map[string]string{
|
||||||
|
"ip-range": "192.168.1.0/24,192.168.1.200/24",
|
||||||
|
"gateway": "192.168.1.1,192.168.1.4",
|
||||||
|
"subnet": "192.168.2.0/24,192.168.1.250/24",
|
||||||
|
},
|
||||||
|
expectedError: "cannot configure multiple ranges (192.168.1.200/24, 192.168.1.0/24) on the same subnet (192.168.1.250/24)",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: []string{"toto"},
|
||||||
|
flags: map[string]string{
|
||||||
|
"ip-range": "255.255.200.0/24,255.255.120.0/24",
|
||||||
|
"gateway": "255.0.255.0/24",
|
||||||
|
"subnet": "255.255.255.0/24,255.255.0.255/24",
|
||||||
|
},
|
||||||
|
expectedError: "no matching subnet for range 255.255.200.0/24",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: []string{"toto"},
|
||||||
|
flags: map[string]string{
|
||||||
|
"ip-range": "192.168.1.0/24",
|
||||||
|
"gateway": "192.168.1.1,192.168.1.4",
|
||||||
|
"subnet": "192.168.2.0/24,192.168.1.250/24",
|
||||||
|
},
|
||||||
|
expectedError: "cannot configure multiple gateways (192.168.1.4, 192.168.1.1) for the same subnet (192.168.1.250/24)",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: []string{"toto"},
|
||||||
|
flags: map[string]string{
|
||||||
|
"ip-range": "192.168.1.0/24",
|
||||||
|
"gateway": "192.168.4.1,192.168.5.4",
|
||||||
|
"subnet": "192.168.2.0/24,192.168.1.250/24",
|
||||||
|
},
|
||||||
|
expectedError: "no matching subnet for gateway 192.168.4.1",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: []string{"toto"},
|
||||||
|
flags: map[string]string{
|
||||||
|
"gateway": "255.255.0.0/24",
|
||||||
|
"subnet": "255.255.0.0/24",
|
||||||
|
"aux-address": "255.255.0.30/24",
|
||||||
|
},
|
||||||
|
expectedError: "no matching subnet for aux-address",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tc := range testCases {
|
||||||
|
buf := new(bytes.Buffer)
|
||||||
|
cmd := newCreateCommand(
|
||||||
|
test.NewFakeCli(&fakeClient{
|
||||||
|
networkCreateFunc: tc.networkCreateFunc,
|
||||||
|
}, buf),
|
||||||
|
)
|
||||||
|
cmd.SetArgs(tc.args)
|
||||||
|
for key, value := range tc.flags {
|
||||||
|
require.NoError(t, cmd.Flags().Set(key, value))
|
||||||
|
}
|
||||||
|
cmd.SetOutput(ioutil.Discard)
|
||||||
|
testutil.ErrorContains(t, cmd.Execute(), tc.expectedError)
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
func TestNetworkCreateWithFlags(t *testing.T) {
|
||||||
|
expectedDriver := "foo"
|
||||||
|
expectedOpts := []network.IPAMConfig{
|
||||||
|
{
|
||||||
|
"192.168.4.0/24",
|
||||||
|
"192.168.4.0/24",
|
||||||
|
"192.168.4.1/24",
|
||||||
|
map[string]string{},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
buf := new(bytes.Buffer)
|
||||||
|
cli := test.NewFakeCli(&fakeClient{
|
||||||
|
networkCreateFunc: func(ctx context.Context, name string, createBody types.NetworkCreate) (types.NetworkCreateResponse, error) {
|
||||||
|
assert.Equal(t, expectedDriver, createBody.Driver, "not expected driver error")
|
||||||
|
assert.Equal(t, expectedOpts, createBody.IPAM.Config, "not expected driver error")
|
||||||
|
return types.NetworkCreateResponse{
|
||||||
|
ID: name,
|
||||||
|
}, nil
|
||||||
|
},
|
||||||
|
}, buf)
|
||||||
|
args := []string{"banana"}
|
||||||
|
cmd := newCreateCommand(cli)
|
||||||
|
|
||||||
|
cmd.SetArgs(args)
|
||||||
|
cmd.Flags().Set("driver", "foo")
|
||||||
|
cmd.Flags().Set("ip-range", "192.168.4.0/24")
|
||||||
|
cmd.Flags().Set("gateway", "192.168.4.1/24")
|
||||||
|
cmd.Flags().Set("subnet", "192.168.4.0/24")
|
||||||
|
assert.NoError(t, cmd.Execute())
|
||||||
|
assert.Equal(t, "banana", strings.TrimSpace(buf.String()))
|
||||||
|
}
|
|
@ -14,7 +14,7 @@ type disconnectOptions struct {
|
||||||
force bool
|
force bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func newDisconnectCommand(dockerCli *command.DockerCli) *cobra.Command {
|
func newDisconnectCommand(dockerCli command.Cli) *cobra.Command {
|
||||||
opts := disconnectOptions{}
|
opts := disconnectOptions{}
|
||||||
|
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
|
@ -34,7 +34,7 @@ func newDisconnectCommand(dockerCli *command.DockerCli) *cobra.Command {
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
func runDisconnect(dockerCli *command.DockerCli, opts disconnectOptions) error {
|
func runDisconnect(dockerCli command.Cli, opts disconnectOptions) error {
|
||||||
client := dockerCli.Client()
|
client := dockerCli.Client()
|
||||||
|
|
||||||
return client.NetworkDisconnect(context.Background(), opts.network, opts.container, opts.force)
|
return client.NetworkDisconnect(context.Background(), opts.network, opts.container, opts.force)
|
||||||
|
|
|
@ -16,7 +16,7 @@ type inspectOptions struct {
|
||||||
verbose bool
|
verbose bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func newInspectCommand(dockerCli *command.DockerCli) *cobra.Command {
|
func newInspectCommand(dockerCli command.Cli) *cobra.Command {
|
||||||
var opts inspectOptions
|
var opts inspectOptions
|
||||||
|
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
|
@ -35,7 +35,7 @@ func newInspectCommand(dockerCli *command.DockerCli) *cobra.Command {
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
func runInspect(dockerCli *command.DockerCli, opts inspectOptions) error {
|
func runInspect(dockerCli command.Cli, opts inspectOptions) error {
|
||||||
client := dockerCli.Client()
|
client := dockerCli.Client()
|
||||||
|
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
|
|
|
@ -25,7 +25,7 @@ type listOptions struct {
|
||||||
filter opts.FilterOpt
|
filter opts.FilterOpt
|
||||||
}
|
}
|
||||||
|
|
||||||
func newListCommand(dockerCli *command.DockerCli) *cobra.Command {
|
func newListCommand(dockerCli command.Cli) *cobra.Command {
|
||||||
options := listOptions{filter: opts.NewFilterOpt()}
|
options := listOptions{filter: opts.NewFilterOpt()}
|
||||||
|
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
|
@ -47,7 +47,7 @@ func newListCommand(dockerCli *command.DockerCli) *cobra.Command {
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
func runList(dockerCli *command.DockerCli, options listOptions) error {
|
func runList(dockerCli command.Cli, options listOptions) error {
|
||||||
client := dockerCli.Client()
|
client := dockerCli.Client()
|
||||||
listOptions := types.NetworkListOptions{Filters: options.filter.Value()}
|
listOptions := types.NetworkListOptions{Filters: options.filter.Value()}
|
||||||
networkResources, err := client.NetworkList(context.Background(), listOptions)
|
networkResources, err := client.NetworkList(context.Background(), listOptions)
|
||||||
|
|
|
@ -11,7 +11,7 @@ import (
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
func newRemoveCommand(dockerCli *command.DockerCli) *cobra.Command {
|
func newRemoveCommand(dockerCli command.Cli) *cobra.Command {
|
||||||
return &cobra.Command{
|
return &cobra.Command{
|
||||||
Use: "rm NETWORK [NETWORK...]",
|
Use: "rm NETWORK [NETWORK...]",
|
||||||
Aliases: []string{"remove"},
|
Aliases: []string{"remove"},
|
||||||
|
@ -28,7 +28,7 @@ const ingressWarning = "WARNING! Before removing the routing-mesh network, " +
|
||||||
"Otherwise, removal may not be effective and functionality of newly create " +
|
"Otherwise, removal may not be effective and functionality of newly create " +
|
||||||
"ingress networks will be impaired.\nAre you sure you want to continue?"
|
"ingress networks will be impaired.\nAre you sure you want to continue?"
|
||||||
|
|
||||||
func runRemove(dockerCli *command.DockerCli, networks []string) error {
|
func runRemove(dockerCli command.Cli, networks []string) error {
|
||||||
client := dockerCli.Client()
|
client := dockerCli.Client()
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
status := 0
|
status := 0
|
||||||
|
|
Loading…
Reference in New Issue