2017-10-13 21:36:02 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2019-10-24 14:41:54 +00:00
|
|
|
"github.com/hashicorp/nomad/api"
|
2017-10-13 21:36:02 +00:00
|
|
|
"github.com/mitchellh/cli"
|
2019-10-24 14:41:54 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2017-10-13 21:36:02 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestQuotaApplyCommand_Implements(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
var _ cli.Command = &QuotaApplyCommand{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestQuotaApplyCommand_Fails(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
ui := new(cli.MockUi)
|
|
|
|
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)
|
|
|
|
}
|
2018-04-18 17:51:17 +00:00
|
|
|
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)
|
|
|
|
}
|
2018-04-18 17:51:17 +00:00
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2019-10-24 14:41:54 +00:00
|
|
|
func TestQuotaApplyNetwork(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
mbits := 20
|
|
|
|
|
|
|
|
cases := []struct {
|
|
|
|
hcl string
|
|
|
|
q *api.QuotaSpec
|
|
|
|
err string
|
|
|
|
}{{
|
|
|
|
hcl: `limit {region = "global", region_limit {network {mbits = 20}}}`,
|
|
|
|
q: &api.QuotaSpec{
|
|
|
|
Limits: []*api.QuotaLimit{{
|
|
|
|
Region: "global",
|
|
|
|
RegionLimit: &api.Resources{
|
|
|
|
Networks: []*api.NetworkResource{{
|
|
|
|
MBits: &mbits,
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
err: "",
|
|
|
|
}, {
|
|
|
|
hcl: `limit {region = "global", region_limit {network { mbits = 20, device = "eth0"}}}`,
|
|
|
|
q: nil,
|
2019-12-17 17:44:47 +00:00
|
|
|
err: "network -> invalid key: device",
|
2019-10-24 14:41:54 +00:00
|
|
|
}}
|
|
|
|
|
|
|
|
for _, c := range cases {
|
|
|
|
t.Run(c.hcl, func(t *testing.T) {
|
|
|
|
q, err := parseQuotaSpec([]byte(c.hcl))
|
|
|
|
require.Equal(t, c.q, q)
|
|
|
|
if c.err != "" {
|
2019-12-17 17:44:47 +00:00
|
|
|
require.Contains(t, err.Error(), c.err)
|
2019-10-24 14:41:54 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|