open-nomad/command/quota_apply_test.go

38 lines
938 B
Go
Raw Normal View History

2017-10-13 21:36:02 +00:00
package command
import (
"strings"
"testing"
"github.com/hashicorp/nomad/ci"
2017-10-13 21:36:02 +00:00
"github.com/mitchellh/cli"
)
func TestQuotaApplyCommand_Implements(t *testing.T) {
ci.Parallel(t)
2017-10-13 21:36:02 +00:00
var _ cli.Command = &QuotaApplyCommand{}
}
func TestQuotaApplyCommand_Fails(t *testing.T) {
ci.Parallel(t)
2020-10-05 14:07:41 +00:00
ui := cli.NewMockUi()
2017-10-13 21:36:02 +00:00
cmd := &QuotaApplyCommand{Meta: Meta{Ui: ui}}
// Fails on misuse
if code := cmd.Run([]string{"some", "bad", "args"}); code != 1 {
t.Fatalf("expected exit code 1, got: %d", code)
}
if out := ui.ErrorWriter.String(); !strings.Contains(out, commandErrorText(cmd)) {
2017-10-13 21:36:02 +00:00
t.Fatalf("expected help output, got: %s", out)
}
ui.ErrorWriter.Reset()
if code := cmd.Run([]string{"-address=nope"}); code != 1 {
t.Fatalf("expected exit code 1, got: %d", code)
}
if out := ui.ErrorWriter.String(); !strings.Contains(out, commandErrorText(cmd)) {
2017-10-13 21:36:02 +00:00
t.Fatalf("name required error, got: %s", out)
}
ui.ErrorWriter.Reset()
}