mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00

I noticed that we're using a homegrown package for assertions. The functions are extremely similar to testify, but with enough slight differences to be confusing (for example, Equal takes its arguments in a different order). We already vendor testify, and it's used in a few places by tests. I also found some problems with pkg/testutil/assert. For example, the NotNil function seems to be broken. It checks the argument against "nil", which only works for an interface. If you pass in a nil map or slice, the equality check will fail. In the interest of avoiding NIH, I'm proposing replacing pkg/testutil/assert with testify. The test code looks almost the same, but we avoid the confusion of having two similar but slightly different assertion packages, and having to maintain our own package instead of using a commonly-used one. In the process, I found a few places where the tests should halt if an assertion fails, so I've made those cases (that I noticed) use "require" instead of "assert", and I've vendored the "require" package from testify alongside the already-present "assert" package. Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
143 lines
3.7 KiB
Go
143 lines
3.7 KiB
Go
package volume
|
|
|
|
import (
|
|
"bytes"
|
|
"io/ioutil"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
volumetypes "github.com/docker/docker/api/types/volume"
|
|
"github.com/docker/docker/cli/internal/test"
|
|
"github.com/docker/docker/pkg/testutil"
|
|
"github.com/pkg/errors"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestVolumeCreateErrors(t *testing.T) {
|
|
testCases := []struct {
|
|
args []string
|
|
flags map[string]string
|
|
volumeCreateFunc func(volumetypes.VolumesCreateBody) (types.Volume, error)
|
|
expectedError string
|
|
}{
|
|
{
|
|
args: []string{"volumeName"},
|
|
flags: map[string]string{
|
|
"name": "volumeName",
|
|
},
|
|
expectedError: "Conflicting options: either specify --name or provide positional arg, not both",
|
|
},
|
|
{
|
|
args: []string{"too", "many"},
|
|
expectedError: "requires at most 1 argument(s)",
|
|
},
|
|
{
|
|
volumeCreateFunc: func(createBody volumetypes.VolumesCreateBody) (types.Volume, error) {
|
|
return types.Volume{}, errors.Errorf("error creating volume")
|
|
},
|
|
expectedError: "error creating volume",
|
|
},
|
|
}
|
|
for _, tc := range testCases {
|
|
buf := new(bytes.Buffer)
|
|
cmd := newCreateCommand(
|
|
test.NewFakeCli(&fakeClient{
|
|
volumeCreateFunc: tc.volumeCreateFunc,
|
|
}, buf),
|
|
)
|
|
cmd.SetArgs(tc.args)
|
|
for key, value := range tc.flags {
|
|
cmd.Flags().Set(key, value)
|
|
}
|
|
cmd.SetOutput(ioutil.Discard)
|
|
testutil.ErrorContains(t, cmd.Execute(), tc.expectedError)
|
|
}
|
|
}
|
|
|
|
func TestVolumeCreateWithName(t *testing.T) {
|
|
name := "foo"
|
|
buf := new(bytes.Buffer)
|
|
cli := test.NewFakeCli(&fakeClient{
|
|
volumeCreateFunc: func(body volumetypes.VolumesCreateBody) (types.Volume, error) {
|
|
if body.Name != name {
|
|
return types.Volume{}, errors.Errorf("expected name %q, got %q", name, body.Name)
|
|
}
|
|
return types.Volume{
|
|
Name: body.Name,
|
|
}, nil
|
|
},
|
|
}, buf)
|
|
|
|
// Test by flags
|
|
cmd := newCreateCommand(cli)
|
|
cmd.Flags().Set("name", name)
|
|
assert.NoError(t, cmd.Execute())
|
|
assert.Equal(t, name, strings.TrimSpace(buf.String()))
|
|
|
|
// Then by args
|
|
buf.Reset()
|
|
cmd = newCreateCommand(cli)
|
|
cmd.SetArgs([]string{name})
|
|
assert.NoError(t, cmd.Execute())
|
|
assert.Equal(t, name, strings.TrimSpace(buf.String()))
|
|
}
|
|
|
|
func TestVolumeCreateWithFlags(t *testing.T) {
|
|
expectedDriver := "foo"
|
|
expectedOpts := map[string]string{
|
|
"bar": "1",
|
|
"baz": "baz",
|
|
}
|
|
expectedLabels := map[string]string{
|
|
"lbl1": "v1",
|
|
"lbl2": "v2",
|
|
}
|
|
name := "banana"
|
|
|
|
buf := new(bytes.Buffer)
|
|
cli := test.NewFakeCli(&fakeClient{
|
|
volumeCreateFunc: func(body volumetypes.VolumesCreateBody) (types.Volume, error) {
|
|
if body.Name != "" {
|
|
return types.Volume{}, errors.Errorf("expected empty name, got %q", body.Name)
|
|
}
|
|
if body.Driver != expectedDriver {
|
|
return types.Volume{}, errors.Errorf("expected driver %q, got %q", expectedDriver, body.Driver)
|
|
}
|
|
if !compareMap(body.DriverOpts, expectedOpts) {
|
|
return types.Volume{}, errors.Errorf("expected drivers opts %v, got %v", expectedOpts, body.DriverOpts)
|
|
}
|
|
if !compareMap(body.Labels, expectedLabels) {
|
|
return types.Volume{}, errors.Errorf("expected labels %v, got %v", expectedLabels, body.Labels)
|
|
}
|
|
return types.Volume{
|
|
Name: name,
|
|
}, nil
|
|
},
|
|
}, buf)
|
|
|
|
cmd := newCreateCommand(cli)
|
|
cmd.Flags().Set("driver", "foo")
|
|
cmd.Flags().Set("opt", "bar=1")
|
|
cmd.Flags().Set("opt", "baz=baz")
|
|
cmd.Flags().Set("label", "lbl1=v1")
|
|
cmd.Flags().Set("label", "lbl2=v2")
|
|
assert.NoError(t, cmd.Execute())
|
|
assert.Equal(t, name, strings.TrimSpace(buf.String()))
|
|
}
|
|
|
|
func compareMap(actual map[string]string, expected map[string]string) bool {
|
|
if len(actual) != len(expected) {
|
|
return false
|
|
}
|
|
for key, value := range actual {
|
|
if expectedValue, ok := expected[key]; ok {
|
|
if expectedValue != value {
|
|
return false
|
|
}
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|