2016-07-20 22:18:54 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-03-15 12:42:43 +00:00
|
|
|
"github.com/hashicorp/nomad/ci"
|
2017-08-22 20:11:32 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/mock"
|
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
2016-07-20 22:18:54 +00:00
|
|
|
"github.com/mitchellh/cli"
|
2017-08-22 20:11:32 +00:00
|
|
|
"github.com/posener/complete"
|
2022-08-18 13:51:53 +00:00
|
|
|
"github.com/shoenig/test/must"
|
2016-07-20 22:18:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestLogsCommand_Implements(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2018-03-21 00:37:28 +00:00
|
|
|
var _ cli.Command = &AllocLogsCommand{}
|
2016-07-20 22:18:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestLogsCommand_Fails(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2017-07-21 04:07:32 +00:00
|
|
|
srv, _, url := testServer(t, false, nil)
|
2022-08-18 13:51:53 +00:00
|
|
|
defer stopTestAgent(srv)
|
2016-07-20 22:18:54 +00:00
|
|
|
|
2020-10-05 14:07:41 +00:00
|
|
|
ui := cli.NewMockUi()
|
2018-03-21 00:37:28 +00:00
|
|
|
cmd := &AllocLogsCommand{Meta: Meta{Ui: ui}}
|
2016-07-20 22:18:54 +00:00
|
|
|
|
|
|
|
// Fails on misuse
|
2022-08-18 13:51:53 +00:00
|
|
|
code := cmd.Run([]string{"some", "bad", "args"})
|
|
|
|
must.One(t, code)
|
|
|
|
|
|
|
|
out := ui.ErrorWriter.String()
|
|
|
|
must.StrContains(t, out, commandErrorText(cmd))
|
|
|
|
|
2016-07-20 22:18:54 +00:00
|
|
|
ui.ErrorWriter.Reset()
|
|
|
|
|
|
|
|
// Fails on connection failure
|
2022-08-18 13:51:53 +00:00
|
|
|
code = cmd.Run([]string{"-address=nope", "foobar"})
|
|
|
|
must.One(t, code)
|
|
|
|
|
|
|
|
out = ui.ErrorWriter.String()
|
|
|
|
must.StrContains(t, out, "Error querying allocation")
|
|
|
|
|
2016-07-20 22:18:54 +00:00
|
|
|
ui.ErrorWriter.Reset()
|
|
|
|
|
|
|
|
// Fails on missing alloc
|
2022-08-18 13:51:53 +00:00
|
|
|
code = cmd.Run([]string{"-address=" + url, "26470238-5CF2-438F-8772-DC67CFB0705C"})
|
|
|
|
must.One(t, code)
|
|
|
|
|
|
|
|
out = ui.ErrorWriter.String()
|
|
|
|
must.StrContains(t, out, "No allocation(s) with prefix or id")
|
|
|
|
|
2016-07-20 22:18:54 +00:00
|
|
|
ui.ErrorWriter.Reset()
|
|
|
|
|
|
|
|
// Fail on identifier with too few characters
|
2022-08-18 13:51:53 +00:00
|
|
|
code = cmd.Run([]string{"-address=" + url, "2"})
|
|
|
|
must.One(t, code)
|
|
|
|
|
|
|
|
out = ui.ErrorWriter.String()
|
|
|
|
must.StrContains(t, out, "must contain at least two characters.")
|
|
|
|
|
2016-07-20 22:18:54 +00:00
|
|
|
ui.ErrorWriter.Reset()
|
|
|
|
|
|
|
|
// Identifiers with uneven length should produce a query result
|
2022-08-18 13:51:53 +00:00
|
|
|
code = cmd.Run([]string{"-address=" + url, "123"})
|
|
|
|
must.One(t, code)
|
|
|
|
|
|
|
|
out = ui.ErrorWriter.String()
|
|
|
|
must.StrContains(t, out, "No allocation(s) with prefix or id")
|
2017-08-22 20:11:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestLogsCommand_AutocompleteArgs(t *testing.T) {
|
2022-03-15 12:42:43 +00:00
|
|
|
ci.Parallel(t)
|
2017-08-22 20:11:32 +00:00
|
|
|
|
|
|
|
srv, _, url := testServer(t, true, nil)
|
2022-08-18 13:51:53 +00:00
|
|
|
defer stopTestAgent(srv)
|
2017-08-22 20:11:32 +00:00
|
|
|
|
2020-10-05 14:07:41 +00:00
|
|
|
ui := cli.NewMockUi()
|
2018-03-21 00:37:28 +00:00
|
|
|
cmd := &AllocLogsCommand{Meta: Meta{Ui: ui, flagAddress: url}}
|
2017-08-22 20:11:32 +00:00
|
|
|
|
|
|
|
// Create a fake alloc
|
|
|
|
state := srv.Agent.Server().State()
|
|
|
|
a := mock.Alloc()
|
2022-08-18 13:51:53 +00:00
|
|
|
must.NoError(t, state.UpsertAllocs(structs.MsgTypeTestSetup, 1000, []*structs.Allocation{a}))
|
2017-08-22 20:11:32 +00:00
|
|
|
|
|
|
|
prefix := a.ID[:5]
|
|
|
|
args := complete.Args{Last: prefix}
|
|
|
|
predictor := cmd.AutocompleteArgs()
|
|
|
|
|
|
|
|
res := predictor.Predict(args)
|
2022-08-18 13:51:53 +00:00
|
|
|
must.Len(t, 1, res)
|
|
|
|
must.Eq(t, a.ID, res[0])
|
2016-07-20 22:18:54 +00:00
|
|
|
}
|