command/services/deregister: tests for flag validation
This commit is contained in:
parent
0f82c9570b
commit
6459387cd8
|
@ -45,6 +45,9 @@ func (c *cmd) Run(args []string) int {
|
||||||
if len(args) == 0 && c.flagId == "" {
|
if len(args) == 0 && c.flagId == "" {
|
||||||
c.UI.Error("Service deregistration requires at least one argument or -id.")
|
c.UI.Error("Service deregistration requires at least one argument or -id.")
|
||||||
return 1
|
return 1
|
||||||
|
} else if len(args) > 0 && c.flagId != "" {
|
||||||
|
c.UI.Error("Service deregistration requires arguments or -id, not both.")
|
||||||
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
svcs := []*api.AgentServiceRegistration{&api.AgentServiceRegistration{
|
svcs := []*api.AgentServiceRegistration{&api.AgentServiceRegistration{
|
||||||
|
|
|
@ -19,6 +19,47 @@ func TestCommand_noTabs(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestCommand_Validation(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
ui := cli.NewMockUi()
|
||||||
|
c := New(ui)
|
||||||
|
|
||||||
|
cases := map[string]struct {
|
||||||
|
args []string
|
||||||
|
output string
|
||||||
|
}{
|
||||||
|
"no args or id": {
|
||||||
|
[]string{},
|
||||||
|
"at least one",
|
||||||
|
},
|
||||||
|
"args and -id": {
|
||||||
|
[]string{"-id", "web", "foo.json"},
|
||||||
|
"not both",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for name, tc := range cases {
|
||||||
|
t.Run(name, func(t *testing.T) {
|
||||||
|
require := require.New(t)
|
||||||
|
|
||||||
|
c.init()
|
||||||
|
|
||||||
|
// Ensure our buffer is always clear
|
||||||
|
if ui.ErrorWriter != nil {
|
||||||
|
ui.ErrorWriter.Reset()
|
||||||
|
}
|
||||||
|
if ui.OutputWriter != nil {
|
||||||
|
ui.OutputWriter.Reset()
|
||||||
|
}
|
||||||
|
|
||||||
|
require.Equal(1, c.Run(tc.args))
|
||||||
|
output := ui.ErrorWriter.String()
|
||||||
|
require.Contains(output, tc.output)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestCommand_File_id(t *testing.T) {
|
func TestCommand_File_id(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue