open-nomad/command/job_stop_test.go

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

78 lines
2.0 KiB
Go
Raw Normal View History

2015-09-17 00:35:58 +00:00
package command
import (
"strings"
"testing"
"github.com/hashicorp/nomad/ci"
2017-08-22 20:22:29 +00:00
"github.com/hashicorp/nomad/nomad/mock"
"github.com/hashicorp/nomad/nomad/structs"
2015-09-17 00:35:58 +00:00
"github.com/mitchellh/cli"
2017-08-22 20:22:29 +00:00
"github.com/posener/complete"
"github.com/stretchr/testify/assert"
2015-09-17 00:35:58 +00:00
)
func TestStopCommand_Implements(t *testing.T) {
ci.Parallel(t)
2018-03-21 00:37:28 +00:00
var _ cli.Command = &JobStopCommand{}
2015-09-17 00:35:58 +00:00
}
func TestStopCommand_Fails(t *testing.T) {
ci.Parallel(t)
2017-07-21 04:07:32 +00:00
srv, _, url := testServer(t, false, nil)
defer srv.Shutdown()
2015-09-17 00:35:58 +00:00
2020-10-05 14:07:41 +00:00
ui := cli.NewMockUi()
2018-03-21 00:37:28 +00:00
cmd := &JobStopCommand{Meta: Meta{Ui: ui}}
2015-09-17 00:35:58 +00:00
// 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)) {
2015-09-17 00:35:58 +00:00
t.Fatalf("expected help output, got: %s", out)
}
ui.ErrorWriter.Reset()
// Fails on nonexistent job ID
2015-09-17 00:35:58 +00:00
if code := cmd.Run([]string{"-address=" + url, "nope"}); code != 1 {
t.Fatalf("expect exit 1, got: %d", code)
}
if out := ui.ErrorWriter.String(); !strings.Contains(out, "No job(s) with prefix or id") {
2015-09-17 00:35:58 +00:00
t.Fatalf("expect not found error, got: %s", out)
}
ui.ErrorWriter.Reset()
// Fails on connection failure
if code := cmd.Run([]string{"-address=nope", "nope"}); code != 1 {
t.Fatalf("expected exit code 1, got: %d", code)
}
if out := ui.ErrorWriter.String(); !strings.Contains(out, "Error deregistering job") {
t.Fatalf("expected failed query error, got: %s", out)
}
}
2017-08-22 20:22:29 +00:00
func TestStopCommand_AutocompleteArgs(t *testing.T) {
ci.Parallel(t)
2017-08-22 20:22:29 +00:00
assert := assert.New(t)
srv, _, url := testServer(t, true, nil)
defer srv.Shutdown()
2020-10-05 14:07:41 +00:00
ui := cli.NewMockUi()
2018-03-21 00:37:28 +00:00
cmd := &JobStopCommand{Meta: Meta{Ui: ui, flagAddress: url}}
2017-08-22 20:22:29 +00:00
// Create a fake job
2017-08-22 20:22:29 +00:00
state := srv.Agent.Server().State()
j := mock.Job()
assert.Nil(state.UpsertJob(structs.MsgTypeTestSetup, 1000, j))
2017-08-22 20:22:29 +00:00
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])
}