open-nomad/command/quota_inspect_test.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

108 lines
2.5 KiB
Go
Raw Permalink Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
//go:build ent
2017-10-13 21:36:02 +00:00
// +build ent
package command
import (
"encoding/json"
2017-10-13 21:36:02 +00:00
"testing"
"github.com/hashicorp/nomad/api"
"github.com/hashicorp/nomad/ci"
2017-10-13 21:36:02 +00:00
"github.com/mitchellh/cli"
"github.com/posener/complete"
"github.com/shoenig/test/must"
2017-10-13 21:36:02 +00:00
)
func TestQuotaInspectCommand_Implements(t *testing.T) {
ci.Parallel(t)
2017-10-13 21:36:02 +00:00
var _ cli.Command = &QuotaInspectCommand{}
}
func TestQuotaInspectCommand_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 := &QuotaInspectCommand{Meta: Meta{Ui: ui}}
// Fails on misuse
code := cmd.Run([]string{"some", "bad", "args"})
must.One(t, code)
must.StrContains(t, ui.ErrorWriter.String(), commandErrorText(cmd))
2017-10-13 21:36:02 +00:00
ui.ErrorWriter.Reset()
code = cmd.Run([]string{"-address=nope", "foo"})
must.One(t, code)
must.StrContains(t, ui.ErrorWriter.String(), "retrieving quota")
2017-10-13 21:36:02 +00:00
ui.ErrorWriter.Reset()
}
func TestQuotaInspectCommand_Run(t *testing.T) {
ci.Parallel(t)
2017-10-13 21:36:02 +00:00
// Create a server
srv, client, url := testServer(t, true, nil)
defer srv.Shutdown()
2020-10-05 14:07:41 +00:00
ui := cli.NewMockUi()
2017-10-13 21:36:02 +00:00
cmd := &QuotaInspectCommand{Meta: Meta{Ui: ui}}
// Create a quota to delete
qs := testQuotaSpec()
_, err := client.Quotas().Register(qs, nil)
must.NoError(t, err, must.Sprint("unexpected error:", err))
2017-10-13 21:36:02 +00:00
// Delete a quota
code := cmd.Run([]string{"-address=" + url, qs.Name})
must.Zero(t, code)
2017-10-13 21:36:02 +00:00
out := ui.OutputWriter.String()
must.StrContains(t, out, "Usages")
must.StrContains(t, out, qs.Name)
ui.OutputWriter.Reset()
// List json
must.Zero(t, cmd.Run([]string{"-address=" + url, "-json", qs.Name}))
outJson := api.QuotaSpec{}
err = json.Unmarshal(ui.OutputWriter.Bytes(), &outJson)
must.NoError(t, err, must.Sprint("unexpected error:", err))
ui.OutputWriter.Reset()
// Go template to format the output
code = cmd.Run([]string{"-address=" + url, "-t", "{{ .Name }}", qs.Name})
must.Zero(t, code)
out = ui.OutputWriter.String()
must.StrContains(t, out, qs.Name)
ui.OutputWriter.Reset()
2017-10-13 21:36:02 +00:00
}
func TestQuotaInspectCommand_AutocompleteArgs(t *testing.T) {
ci.Parallel(t)
2017-10-13 21:36:02 +00:00
srv, client, url := testServer(t, true, nil)
defer srv.Shutdown()
2020-10-05 14:07:41 +00:00
ui := cli.NewMockUi()
2017-10-13 21:36:02 +00:00
cmd := &QuotaInspectCommand{Meta: Meta{Ui: ui, flagAddress: url}}
// Create a quota
qs := testQuotaSpec()
_, err := client.Quotas().Register(qs, nil)
must.NoError(t, err)
2017-10-13 21:36:02 +00:00
args := complete.Args{Last: "q"}
2017-10-13 21:36:02 +00:00
predictor := cmd.AutocompleteArgs()
res := predictor.Predict(args)
must.One(t, len(res))
must.StrContains(t, qs.Name, res[0])
2017-10-13 21:36:02 +00:00
}