Add e2e tests for plugin vs global argument issues

These won't pass right now due to https://github.com/docker/cli/issues/1699
("Plugins can't re-use the same flags as cli global flags") and the change in
935d47bbe9 ("Ignore unknown arguments on the top-level command."), but the
intention is to fix them now.

Signed-off-by: Ian Campbell <ijc@docker.com>
This commit is contained in:
Ian Campbell 2019-03-01 16:03:14 +00:00
parent 4e5f0af9cd
commit 8289ae03f8
3 changed files with 104 additions and 2 deletions

View File

@ -44,7 +44,10 @@ func main() {
},
}
var who string
var (
who, context string
debug bool
)
cmd := &cobra.Command{
Use: "helloworld",
Short: "A basic Hello World plugin for tests",
@ -53,6 +56,18 @@ func main() {
// hook.
PersistentPreRunE: plugin.PersistentPreRunE,
RunE: func(cmd *cobra.Command, args []string) error {
if debug {
fmt.Fprintf(dockerCli.Err(), "Plugin debug mode enabled")
}
switch context {
case "Christmas":
fmt.Fprintf(dockerCli.Out(), "Merry Christmas!\n")
return nil
case "":
// nothing
}
if who == "" {
who, _ = dockerCli.ConfigFile().PluginConfig("helloworld", "who")
}
@ -68,6 +83,10 @@ func main() {
flags := cmd.Flags()
flags.StringVar(&who, "who", "", "Who are we addressing?")
// These are intended to deliberately clash with the CLIs own top
// level arguments.
flags.BoolVarP(&debug, "debug", "D", false, "Enable debug")
flags.StringVarP(&context, "context", "c", "", "Is it Christmas?")
cmd.AddCommand(goodbye, apiversion, exitStatus2)
return cmd

View File

@ -3,6 +3,8 @@ package cliplugins
import (
"testing"
"gotest.tools/assert"
is "gotest.tools/assert/cmp"
"gotest.tools/icmd"
)
@ -17,3 +19,82 @@ func TestRunGoodArgument(t *testing.T) {
Out: "Hello Cleveland!",
})
}
// TestClashWithGlobalArgs ensures correct behaviour when a plugin
// has an argument with the same name as one of the globals.
func TestClashWithGlobalArgs(t *testing.T) {
run, _, cleanup := prepare(t)
defer cleanup()
for _, tc := range []struct {
name string
args []string
expectedOut, expectedErr string
}{
{
name: "short-without-val",
args: []string{"-D"},
expectedOut: "Hello World!",
expectedErr: "Plugin debug mode enabled",
},
{
name: "long-without-val",
args: []string{"--debug"},
expectedOut: "Hello World!",
expectedErr: "Plugin debug mode enabled",
},
{
name: "short-with-val",
args: []string{"-c", "Christmas"},
expectedOut: "Merry Christmas!",
expectedErr: "",
},
{
name: "short-with-val",
args: []string{"--context", "Christmas"},
expectedOut: "Merry Christmas!",
expectedErr: "",
},
} {
t.Run(tc.name, func(t *testing.T) {
args := append([]string{"helloworld"}, tc.args...)
res := icmd.RunCmd(run(args...))
res.Assert(t, icmd.Expected{
ExitCode: 0,
Out: tc.expectedOut,
Err: tc.expectedErr,
})
})
}
}
// TestUnknownGlobal checks that unknown globals report errors
func TestUnknownGlobal(t *testing.T) {
run, _, cleanup := prepare(t)
defer cleanup()
t.Run("no-val", func(t *testing.T) {
res := icmd.RunCmd(run("--unknown", "helloworld"))
res.Assert(t, icmd.Expected{
ExitCode: 125,
})
assert.Assert(t, is.Equal(res.Stdout(), ""))
assert.Assert(t, is.Contains(res.Stderr(), "unknown flag: --unknown"))
})
t.Run("separate-val", func(t *testing.T) {
res := icmd.RunCmd(run("--unknown", "foo", "helloworld"))
res.Assert(t, icmd.Expected{
ExitCode: 125,
})
assert.Assert(t, is.Equal(res.Stdout(), ""))
assert.Assert(t, is.Contains(res.Stderr(), "unknown flag: --unknown"))
})
t.Run("joined-val", func(t *testing.T) {
res := icmd.RunCmd(run("--unknown=foo", "helloworld"))
res.Assert(t, icmd.Expected{
ExitCode: 125,
})
assert.Assert(t, is.Equal(res.Stdout(), ""))
assert.Assert(t, is.Contains(res.Stderr(), "unknown flag: --unknown"))
})
}

View File

@ -4,6 +4,8 @@ Usage: docker helloworld [OPTIONS] COMMAND
A basic Hello World plugin for tests
Options:
-c, --context string Is it Christmas?
-D, --debug Enable debug
--who string Who are we addressing?
Commands: