mirror of https://github.com/docker/cli.git
72 lines
1.7 KiB
Go
72 lines
1.7 KiB
Go
|
package plugin
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"io/ioutil"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/docker/cli/internal/test"
|
||
|
"github.com/docker/cli/internal/test/testutil"
|
||
|
"github.com/docker/docker/api/types"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestRemoveErrors(t *testing.T) {
|
||
|
|
||
|
testCases := []struct {
|
||
|
args []string
|
||
|
pluginRemoveFunc func(name string, options types.PluginRemoveOptions) error
|
||
|
expectedError string
|
||
|
}{
|
||
|
{
|
||
|
args: []string{},
|
||
|
expectedError: "requires at least 1 argument",
|
||
|
},
|
||
|
{
|
||
|
args: []string{"plugin-foo"},
|
||
|
pluginRemoveFunc: func(name string, options types.PluginRemoveOptions) error {
|
||
|
return fmt.Errorf("Error removing plugin")
|
||
|
},
|
||
|
expectedError: "Error removing plugin",
|
||
|
},
|
||
|
}
|
||
|
|
||
|
for _, tc := range testCases {
|
||
|
cli := test.NewFakeCli(&fakeClient{
|
||
|
pluginRemoveFunc: tc.pluginRemoveFunc,
|
||
|
})
|
||
|
cmd := newRemoveCommand(cli)
|
||
|
cmd.SetArgs(tc.args)
|
||
|
cmd.SetOutput(ioutil.Discard)
|
||
|
testutil.ErrorContains(t, cmd.Execute(), tc.expectedError)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestRemove(t *testing.T) {
|
||
|
cli := test.NewFakeCli(&fakeClient{
|
||
|
pluginRemoveFunc: func(name string, options types.PluginRemoveOptions) error {
|
||
|
return nil
|
||
|
},
|
||
|
})
|
||
|
cmd := newRemoveCommand(cli)
|
||
|
cmd.SetArgs([]string{"plugin-foo"})
|
||
|
assert.NoError(t, cmd.Execute())
|
||
|
assert.Equal(t, "plugin-foo\n", cli.OutBuffer().String())
|
||
|
}
|
||
|
|
||
|
func TestRemoveWithForceOption(t *testing.T) {
|
||
|
force := false
|
||
|
cli := test.NewFakeCli(&fakeClient{
|
||
|
pluginRemoveFunc: func(name string, options types.PluginRemoveOptions) error {
|
||
|
force = options.Force
|
||
|
return nil
|
||
|
},
|
||
|
})
|
||
|
cmd := newRemoveCommand(cli)
|
||
|
cmd.SetArgs([]string{"plugin-foo"})
|
||
|
cmd.Flags().Set("force", "true")
|
||
|
assert.NoError(t, cmd.Execute())
|
||
|
assert.True(t, force)
|
||
|
assert.Equal(t, "plugin-foo\n", cli.OutBuffer().String())
|
||
|
}
|