commands: move operator autopilot command to separate pkg

This commit is contained in:
Frank Schroeder 2017-10-17 08:32:17 +02:00 committed by Frank Schröder
parent c024fcaaa5
commit 393bf50e71
5 changed files with 43 additions and 46 deletions

View File

@ -28,6 +28,7 @@ import (
"github.com/hashicorp/consul/command/members" "github.com/hashicorp/consul/command/members"
"github.com/hashicorp/consul/command/monitor" "github.com/hashicorp/consul/command/monitor"
"github.com/hashicorp/consul/command/oper" "github.com/hashicorp/consul/command/oper"
"github.com/hashicorp/consul/command/operauto"
"github.com/hashicorp/consul/command/operraft" "github.com/hashicorp/consul/command/operraft"
"github.com/hashicorp/consul/command/operraftlist" "github.com/hashicorp/consul/command/operraftlist"
"github.com/hashicorp/consul/command/operraftremove" "github.com/hashicorp/consul/command/operraftremove"
@ -150,12 +151,7 @@ func init() {
}, },
"operator autopilot": func() (cli.Command, error) { "operator autopilot": func() (cli.Command, error) {
return &OperatorAutopilotCommand{ return operauto.New(), nil
BaseCommand: BaseCommand{
Flags: FlagSetNone,
UI: ui,
},
}, nil
}, },
"operator autopilot get-config": func() (cli.Command, error) { "operator autopilot get-config": func() (cli.Command, error) {

View File

@ -1,28 +0,0 @@
package command
import (
"github.com/mitchellh/cli"
)
type OperatorAutopilotCommand struct {
BaseCommand
}
func (c *OperatorAutopilotCommand) Help() string {
c.InitFlagSet()
return c.HelpCommand(`
Usage: consul operator autopilot <subcommand> [options]
The Autopilot operator command is used to interact with Consul's Autopilot
subsystem. The command can be used to view or modify the current configuration.
`)
}
func (c *OperatorAutopilotCommand) Synopsis() string {
return "Provides tools for modifying Autopilot configuration"
}
func (c *OperatorAutopilotCommand) Run(args []string) int {
return cli.RunResultHelp
}

View File

@ -1,12 +0,0 @@
package command
import (
"testing"
"github.com/mitchellh/cli"
)
func TestOperator_Autopilot_Implements(t *testing.T) {
t.Parallel()
var _ cli.Command = &OperatorAutopilotCommand{}
}

View File

@ -0,0 +1,28 @@
package operauto
import (
"github.com/mitchellh/cli"
)
func New() *cmd {
return &cmd{}
}
type cmd struct{}
func (c *cmd) Run(args []string) int {
return cli.RunResultHelp
}
func (c *cmd) Synopsis() string {
return "Provides tools for modifying Autopilot configuration"
}
func (c *cmd) Help() string {
s := `Usage: consul operator autopilot <subcommand> [options]
The Autopilot operator command is used to interact with Consul's Autopilot
subsystem. The command can be used to view or modify the current configuration.`
return s
}

View File

@ -0,0 +1,13 @@
package operauto
import (
"strings"
"testing"
)
func TestOperatorAutopilotCommand_noTabs(t *testing.T) {
t.Parallel()
if strings.ContainsRune(New().Help(), '\t') {
t.Fatal("usage has tabs")
}
}