// +build ent package command import ( "strings" "testing" "github.com/mitchellh/cli" "github.com/posener/complete" "github.com/stretchr/testify/assert" ) func TestQuotaStatusCommand_Implements(t *testing.T) { t.Parallel() var _ cli.Command = &QuotaStatusCommand{} } func TestQuotaStatusCommand_Fails(t *testing.T) { t.Parallel() ui := new(cli.MockUi) cmd := &QuotaStatusCommand{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, cmd.Help()) { t.Fatalf("expected help output, got: %s", out) } ui.ErrorWriter.Reset() if code := cmd.Run([]string{"-address=nope", "foo"}); code != 1 { t.Fatalf("expected exit code 1, got: %d", code) } if out := ui.ErrorWriter.String(); !strings.Contains(out, "retrieving quota") { t.Fatalf("connection error, got: %s", out) } ui.ErrorWriter.Reset() } func TestQuotaStatusCommand_Good(t *testing.T) { t.Parallel() // Create a server srv, client, url := testServer(t, true, nil) defer srv.Shutdown() ui := new(cli.MockUi) cmd := &QuotaStatusCommand{Meta: Meta{Ui: ui}} // Create a quota to delete qs := testQuotaSpec() _, err := client.Quotas().Register(qs, nil) assert.Nil(t, err) // Delete a namespace if code := cmd.Run([]string{"-address=" + url, qs.Name}); code != 0 { t.Fatalf("expected exit 0, got: %d; %v", code, ui.ErrorWriter.String()) } // Check for basic spec out := ui.OutputWriter.String() if !strings.Contains(out, "= test") { t.Fatalf("expected quota, got: %s", out) } // Check for usage if !strings.Contains(out, "0 / 100") { t.Fatalf("expected quota, got: %s", out) } } func TestQuotaStatusCommand_AutocompleteArgs(t *testing.T) { assert := assert.New(t) t.Parallel() srv, client, url := testServer(t, true, nil) defer srv.Shutdown() ui := new(cli.MockUi) cmd := &QuotaStatusCommand{Meta: Meta{Ui: ui, flagAddress: url}} // Create a quota qs := testQuotaSpec() _, err := client.Quotas().Register(qs, nil) assert.Nil(err) args := complete.Args{Last: "t"} predictor := cmd.AutocompleteArgs() res := predictor.Predict(args) assert.Equal(1, len(res)) assert.Equal(qs.Name, res[0]) }