open-nomad/command/job_dispatch_test.go

73 lines
1.9 KiB
Go
Raw Normal View History

2016-12-05 23:10:23 +00:00
package command
import (
"strings"
"testing"
"github.com/hashicorp/nomad/nomad/mock"
2016-12-05 23:10:23 +00:00
"github.com/mitchellh/cli"
"github.com/posener/complete"
"github.com/stretchr/testify/assert"
2016-12-05 23:10:23 +00:00
)
func TestJobDispatchCommand_Implements(t *testing.T) {
2017-07-21 04:24:21 +00:00
t.Parallel()
2016-12-05 23:10:23 +00:00
var _ cli.Command = &JobDispatchCommand{}
}
func TestJobDispatchCommand_Fails(t *testing.T) {
2017-07-21 04:24:21 +00:00
t.Parallel()
2016-12-05 23:10:23 +00:00
ui := new(cli.MockUi)
cmd := &JobDispatchCommand{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)) {
2016-12-05 23:10:23 +00:00
t.Fatalf("expected help output, got: %s", out)
}
ui.ErrorWriter.Reset()
// Fails when specified file does not exist
if code := cmd.Run([]string{"foo", "/unicorns/leprechauns"}); code != 1 {
t.Fatalf("expect exit 1, got: %d", code)
}
if out := ui.ErrorWriter.String(); !strings.Contains(out, "Error reading input data") {
t.Fatalf("expect error reading input data: %v", out)
2016-12-05 23:10:23 +00:00
}
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, "Failed to dispatch") {
t.Fatalf("expected failed query error, got: %s", out)
}
ui.ErrorWriter.Reset()
}
func TestJobDispatchCommand_AutocompleteArgs(t *testing.T) {
assert := assert.New(t)
t.Parallel()
srv, _, url := testServer(t, true, nil)
defer srv.Shutdown()
ui := new(cli.MockUi)
cmd := &JobDispatchCommand{Meta: Meta{Ui: ui, flagAddress: url}}
// Create a fake job
state := srv.Agent.Server().State()
j := mock.Job()
assert.Nil(state.UpsertJob(1000, j))
prefix := j.ID[:len(j.ID)-5]
args := complete.Args{Last: prefix}
predictor := cmd.AutocompleteArgs()
res := predictor.Predict(args)
assert.Equal(1, len(res))
assert.Equal(j.ID, res[0])
}