90 lines
2.1 KiB
Go
90 lines
2.1 KiB
Go
// +build ent
|
|
|
|
package command
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/mitchellh/cli"
|
|
"github.com/posener/complete"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestQuotaInspectCommand_Implements(t *testing.T) {
|
|
t.Parallel()
|
|
var _ cli.Command = &QuotaInspectCommand{}
|
|
}
|
|
|
|
func TestQuotaInspectCommand_Fails(t *testing.T) {
|
|
t.Parallel()
|
|
ui := cli.NewMockUi()
|
|
cmd := &QuotaInspectCommand{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)) {
|
|
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 TestQuotaInspectCommand_Good(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
// Create a server
|
|
srv, client, url := testServer(t, true, nil)
|
|
defer srv.Shutdown()
|
|
|
|
ui := cli.NewMockUi()
|
|
cmd := &QuotaInspectCommand{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())
|
|
}
|
|
|
|
out := ui.OutputWriter.String()
|
|
if !strings.Contains(out, "Usages") || !strings.Contains(out, qs.Name) {
|
|
t.Fatalf("expected quota, got: %s", out)
|
|
}
|
|
}
|
|
|
|
func TestQuotaInspectCommand_AutocompleteArgs(t *testing.T) {
|
|
assert := assert.New(t)
|
|
t.Parallel()
|
|
|
|
srv, client, url := testServer(t, true, nil)
|
|
defer srv.Shutdown()
|
|
|
|
ui := cli.NewMockUi()
|
|
cmd := &QuotaInspectCommand{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])
|
|
}
|