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> Upstream-commit: 6052f2b3969feadb01662d8e2f30337d9c7f61af Component: engine
103 lines
2.4 KiB
Go
103 lines
2.4 KiB
Go
package swarm
|
|
|
|
import (
|
|
"bytes"
|
|
"io/ioutil"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/swarm"
|
|
"github.com/docker/docker/cli/internal/test"
|
|
"github.com/docker/docker/pkg/testutil"
|
|
"github.com/pkg/errors"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestSwarmUnlockErrors(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
args []string
|
|
input string
|
|
swarmUnlockFunc func(req swarm.UnlockRequest) error
|
|
infoFunc func() (types.Info, error)
|
|
expectedError string
|
|
}{
|
|
{
|
|
name: "too-many-args",
|
|
args: []string{"foo"},
|
|
expectedError: "accepts no argument(s)",
|
|
},
|
|
{
|
|
name: "is-not-part-of-a-swarm",
|
|
infoFunc: func() (types.Info, error) {
|
|
return types.Info{
|
|
Swarm: swarm.Info{
|
|
LocalNodeState: swarm.LocalNodeStateInactive,
|
|
},
|
|
}, nil
|
|
},
|
|
expectedError: "This node is not part of a swarm",
|
|
},
|
|
{
|
|
name: "is-not-locked",
|
|
infoFunc: func() (types.Info, error) {
|
|
return types.Info{
|
|
Swarm: swarm.Info{
|
|
LocalNodeState: swarm.LocalNodeStateActive,
|
|
},
|
|
}, nil
|
|
},
|
|
expectedError: "Error: swarm is not locked",
|
|
},
|
|
{
|
|
name: "unlockrequest-failed",
|
|
infoFunc: func() (types.Info, error) {
|
|
return types.Info{
|
|
Swarm: swarm.Info{
|
|
LocalNodeState: swarm.LocalNodeStateLocked,
|
|
},
|
|
}, nil
|
|
},
|
|
swarmUnlockFunc: func(req swarm.UnlockRequest) error {
|
|
return errors.Errorf("error unlocking the swarm")
|
|
},
|
|
expectedError: "error unlocking the swarm",
|
|
},
|
|
}
|
|
for _, tc := range testCases {
|
|
buf := new(bytes.Buffer)
|
|
cmd := newUnlockCommand(
|
|
test.NewFakeCli(&fakeClient{
|
|
infoFunc: tc.infoFunc,
|
|
swarmUnlockFunc: tc.swarmUnlockFunc,
|
|
}, buf))
|
|
cmd.SetArgs(tc.args)
|
|
cmd.SetOutput(ioutil.Discard)
|
|
testutil.ErrorContains(t, cmd.Execute(), tc.expectedError)
|
|
}
|
|
}
|
|
|
|
func TestSwarmUnlock(t *testing.T) {
|
|
input := "unlockKey"
|
|
buf := new(bytes.Buffer)
|
|
dockerCli := test.NewFakeCli(&fakeClient{
|
|
infoFunc: func() (types.Info, error) {
|
|
return types.Info{
|
|
Swarm: swarm.Info{
|
|
LocalNodeState: swarm.LocalNodeStateLocked,
|
|
},
|
|
}, nil
|
|
},
|
|
swarmUnlockFunc: func(req swarm.UnlockRequest) error {
|
|
if req.UnlockKey != input {
|
|
return errors.Errorf("Invalid unlock key")
|
|
}
|
|
return nil
|
|
},
|
|
}, buf)
|
|
dockerCli.SetIn(ioutil.NopCloser(strings.NewReader(input)))
|
|
cmd := newUnlockCommand(dockerCli)
|
|
assert.NoError(t, cmd.Execute())
|
|
}
|