mirror of https://github.com/docker/cli.git
103 lines
2.4 KiB
Go
103 lines
2.4 KiB
Go
package swarm
|
|
|
|
import (
|
|
"io"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/docker/cli/cli/streams"
|
|
"github.com/docker/cli/internal/test"
|
|
"github.com/docker/docker/api/types/swarm"
|
|
"github.com/docker/docker/api/types/system"
|
|
"github.com/pkg/errors"
|
|
"gotest.tools/v3/assert"
|
|
)
|
|
|
|
func TestSwarmUnlockErrors(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
args []string
|
|
swarmUnlockFunc func(req swarm.UnlockRequest) error
|
|
infoFunc func() (system.Info, error)
|
|
expectedError string
|
|
}{
|
|
{
|
|
name: "too-many-args",
|
|
args: []string{"foo"},
|
|
expectedError: "accepts no arguments",
|
|
},
|
|
{
|
|
name: "is-not-part-of-a-swarm",
|
|
infoFunc: func() (system.Info, error) {
|
|
return system.Info{
|
|
Swarm: swarm.Info{
|
|
LocalNodeState: swarm.LocalNodeStateInactive,
|
|
},
|
|
}, nil
|
|
},
|
|
expectedError: "This node is not part of a swarm",
|
|
},
|
|
{
|
|
name: "is-not-locked",
|
|
infoFunc: func() (system.Info, error) {
|
|
return system.Info{
|
|
Swarm: swarm.Info{
|
|
LocalNodeState: swarm.LocalNodeStateActive,
|
|
},
|
|
}, nil
|
|
},
|
|
expectedError: "Error: swarm is not locked",
|
|
},
|
|
{
|
|
name: "unlockrequest-failed",
|
|
infoFunc: func() (system.Info, error) {
|
|
return system.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 {
|
|
tc := tc
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
cmd := newUnlockCommand(
|
|
test.NewFakeCli(&fakeClient{
|
|
infoFunc: tc.infoFunc,
|
|
swarmUnlockFunc: tc.swarmUnlockFunc,
|
|
}))
|
|
cmd.SetArgs(tc.args)
|
|
cmd.SetOut(io.Discard)
|
|
cmd.SetErr(io.Discard)
|
|
assert.ErrorContains(t, cmd.Execute(), tc.expectedError)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestSwarmUnlock(t *testing.T) {
|
|
input := "unlockKey"
|
|
dockerCli := test.NewFakeCli(&fakeClient{
|
|
infoFunc: func() (system.Info, error) {
|
|
return system.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
|
|
},
|
|
})
|
|
dockerCli.SetIn(streams.NewIn(io.NopCloser(strings.NewReader(input))))
|
|
cmd := newUnlockCommand(dockerCli)
|
|
assert.NilError(t, cmd.Execute())
|
|
}
|