2015-09-08 18:41:03 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2019-10-25 14:32:20 +00:00
|
|
|
"fmt"
|
2022-01-06 16:56:13 +00:00
|
|
|
"net/http"
|
2015-10-21 12:35:34 +00:00
|
|
|
"reflect"
|
|
|
|
"sort"
|
2019-10-25 14:32:20 +00:00
|
|
|
"strings"
|
2015-09-08 18:41:03 +00:00
|
|
|
"testing"
|
2019-10-07 20:19:32 +00:00
|
|
|
"time"
|
2015-09-14 20:16:42 +00:00
|
|
|
|
2019-03-29 18:47:40 +00:00
|
|
|
"github.com/hashicorp/nomad/api/internal/testutil"
|
2022-03-17 13:34:57 +00:00
|
|
|
"github.com/kr/pretty"
|
2017-10-13 23:43:00 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2022-03-17 13:34:57 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2015-09-08 18:41:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestAgent_Self(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2015-09-08 18:41:03 +00:00
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
// Get a handle on the Agent endpoints
|
|
|
|
a := c.Agent()
|
|
|
|
|
|
|
|
// Query the endpoint
|
|
|
|
res, err := a.Self()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that we got a valid response
|
2017-03-08 14:50:54 +00:00
|
|
|
if res.Member.Name == "" {
|
2015-09-08 18:41:03 +00:00
|
|
|
t.Fatalf("bad member name in response: %#v", res)
|
|
|
|
}
|
2015-09-08 19:13:39 +00:00
|
|
|
|
|
|
|
// Local cache was populated
|
|
|
|
if a.nodeName == "" || a.datacenter == "" || a.region == "" {
|
|
|
|
t.Fatalf("cache should be populated, got: %#v", a)
|
|
|
|
}
|
2015-09-08 18:41:03 +00:00
|
|
|
}
|
2015-09-08 18:51:20 +00:00
|
|
|
|
|
|
|
func TestAgent_NodeName(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2015-09-08 18:51:20 +00:00
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
a := c.Agent()
|
|
|
|
|
|
|
|
// Query the agent for the node name
|
|
|
|
res, err := a.NodeName()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if res == "" {
|
|
|
|
t.Fatalf("expected node name, got nothing")
|
|
|
|
}
|
|
|
|
}
|
2015-09-08 19:01:54 +00:00
|
|
|
|
|
|
|
func TestAgent_Datacenter(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2015-09-08 19:01:54 +00:00
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
a := c.Agent()
|
|
|
|
|
|
|
|
// Query the agent for the datacenter
|
|
|
|
dc, err := a.Datacenter()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if dc != "dc1" {
|
|
|
|
t.Fatalf("expected dc1, got: %q", dc)
|
|
|
|
}
|
|
|
|
}
|
2015-09-08 21:26:53 +00:00
|
|
|
|
|
|
|
func TestAgent_Join(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2015-09-11 22:40:54 +00:00
|
|
|
c1, s1 := makeClient(t, nil, nil)
|
|
|
|
defer s1.Stop()
|
2015-09-14 20:16:42 +00:00
|
|
|
a1 := c1.Agent()
|
2015-09-11 22:40:54 +00:00
|
|
|
|
2015-09-14 20:16:42 +00:00
|
|
|
_, s2 := makeClient(t, nil, func(c *testutil.TestServerConfig) {
|
2015-09-25 04:17:33 +00:00
|
|
|
c.Server.BootstrapExpect = 0
|
2015-09-11 22:40:54 +00:00
|
|
|
})
|
|
|
|
defer s2.Stop()
|
2015-09-08 21:26:53 +00:00
|
|
|
|
2018-03-12 18:26:37 +00:00
|
|
|
// Attempting to join a nonexistent host returns error
|
2015-09-11 22:40:54 +00:00
|
|
|
n, err := a1.Join("nope")
|
|
|
|
if err == nil {
|
2015-09-08 21:26:53 +00:00
|
|
|
t.Fatalf("expected error, got nothing")
|
|
|
|
}
|
2015-09-11 22:40:54 +00:00
|
|
|
if n != 0 {
|
|
|
|
t.Fatalf("expected 0 nodes, got: %d", n)
|
|
|
|
}
|
2015-09-08 21:26:53 +00:00
|
|
|
|
2015-09-11 22:40:54 +00:00
|
|
|
// Returns correctly if join succeeds
|
|
|
|
n, err = a1.Join(s2.SerfAddr)
|
|
|
|
if err != nil {
|
2015-09-08 21:26:53 +00:00
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
2015-09-11 22:40:54 +00:00
|
|
|
if n != 1 {
|
|
|
|
t.Fatalf("expected 1 node, got: %d", n)
|
|
|
|
}
|
2015-09-08 21:26:53 +00:00
|
|
|
}
|
2015-09-08 21:47:29 +00:00
|
|
|
|
|
|
|
func TestAgent_Members(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2015-09-08 21:47:29 +00:00
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
a := c.Agent()
|
|
|
|
|
|
|
|
// Query nomad for all the known members
|
|
|
|
mem, err := a.Members()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that we got the expected result
|
2016-11-08 23:48:47 +00:00
|
|
|
if n := len(mem.Members); n != 1 {
|
2015-09-08 21:47:29 +00:00
|
|
|
t.Fatalf("expected 1 member, got: %d", n)
|
|
|
|
}
|
2016-11-08 23:48:47 +00:00
|
|
|
if m := mem.Members[0]; m.Name == "" || m.Addr == "" || m.Port == 0 {
|
2015-09-08 21:47:29 +00:00
|
|
|
t.Fatalf("bad member: %#v", m)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAgent_ForceLeave(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2015-09-08 21:47:29 +00:00
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
a := c.Agent()
|
|
|
|
|
2018-03-12 18:26:37 +00:00
|
|
|
// Force-leave on a nonexistent node does not error
|
2015-09-08 21:47:29 +00:00
|
|
|
if err := a.ForceLeave("nope"); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: test force-leave on an existing node
|
|
|
|
}
|
2015-09-25 04:17:33 +00:00
|
|
|
|
2015-10-21 12:35:34 +00:00
|
|
|
func (a *AgentMember) String() string {
|
|
|
|
return "{Name: " + a.Name + " Region: " + a.Tags["region"] + " DC: " + a.Tags["dc"] + "}"
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAgents_Sort(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2015-10-21 12:35:34 +00:00
|
|
|
var sortTests = []struct {
|
|
|
|
in []*AgentMember
|
|
|
|
out []*AgentMember
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
[]*AgentMember{
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-2.vac.us-east",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-east", "dc": "us-east-1c"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-1.global",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "global", "dc": "dc1"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-1.vac.us-east",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-east", "dc": "us-east-1c"}},
|
|
|
|
},
|
|
|
|
[]*AgentMember{
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-1.global",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "global", "dc": "dc1"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-1.vac.us-east",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-east", "dc": "us-east-1c"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-2.vac.us-east",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-east", "dc": "us-east-1c"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]*AgentMember{
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-02.tam.us-east",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-east", "dc": "tampa"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-02.pal.us-west",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-west", "dc": "palo_alto"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-01.pal.us-west",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-west", "dc": "palo_alto"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-01.tam.us-east",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-east", "dc": "tampa"}},
|
|
|
|
},
|
|
|
|
[]*AgentMember{
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-01.tam.us-east",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-east", "dc": "tampa"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-02.tam.us-east",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-east", "dc": "tampa"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-01.pal.us-west",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-west", "dc": "palo_alto"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-02.pal.us-west",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-west", "dc": "palo_alto"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]*AgentMember{
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-02.tam.us-east",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-east", "dc": "tampa"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-02.ams.europe",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "europe", "dc": "amsterdam"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-01.tam.us-east",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-east", "dc": "tampa"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-01.ams.europe",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "europe", "dc": "amsterdam"}},
|
|
|
|
},
|
|
|
|
[]*AgentMember{
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-01.ams.europe",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "europe", "dc": "amsterdam"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-02.ams.europe",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "europe", "dc": "amsterdam"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-01.tam.us-east",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-east", "dc": "tampa"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-02.tam.us-east",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "us-east", "dc": "tampa"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]*AgentMember{
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-02.ber.europe",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "europe", "dc": "berlin"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-02.ams.europe",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "europe", "dc": "amsterdam"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-01.ams.europe",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "europe", "dc": "amsterdam"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-01.ber.europe",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "europe", "dc": "berlin"}},
|
|
|
|
},
|
|
|
|
[]*AgentMember{
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-01.ams.europe",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "europe", "dc": "amsterdam"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-02.ams.europe",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "europe", "dc": "amsterdam"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-01.ber.europe",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "europe", "dc": "berlin"}},
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-02.ber.europe",
|
2015-10-21 12:35:34 +00:00
|
|
|
Tags: map[string]string{"region": "europe", "dc": "berlin"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]*AgentMember{
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-1.global"},
|
|
|
|
{Name: "nomad-3.global"},
|
|
|
|
{Name: "nomad-2.global"},
|
2015-10-21 12:35:34 +00:00
|
|
|
},
|
|
|
|
[]*AgentMember{
|
2017-09-26 22:26:33 +00:00
|
|
|
{Name: "nomad-1.global"},
|
|
|
|
{Name: "nomad-2.global"},
|
|
|
|
{Name: "nomad-3.global"},
|
2015-10-21 12:35:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range sortTests {
|
|
|
|
sort.Sort(AgentMembersNameSort(tt.in))
|
|
|
|
if !reflect.DeepEqual(tt.in, tt.out) {
|
2018-03-11 17:57:01 +00:00
|
|
|
t.Errorf("\nexpected: %s\nget : %s", tt.in, tt.out)
|
2015-10-21 12:35:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-13 23:43:00 +00:00
|
|
|
|
|
|
|
func TestAgent_Health(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2017-10-13 23:43:00 +00:00
|
|
|
assert := assert.New(t)
|
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
a := c.Agent()
|
|
|
|
|
|
|
|
health, err := a.Health()
|
|
|
|
assert.Nil(err)
|
|
|
|
assert.True(health.Server.Ok)
|
|
|
|
}
|
2019-10-07 20:19:32 +00:00
|
|
|
|
2019-10-30 13:28:24 +00:00
|
|
|
// TestAgent_MonitorWithNode tests the Monitor endpoint
|
|
|
|
// passing in a log level and node ie, which tests monitor
|
|
|
|
// functionality for a specific client node
|
2019-10-25 14:32:20 +00:00
|
|
|
func TestAgent_MonitorWithNode(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2019-10-25 14:32:20 +00:00
|
|
|
rpcPort := 0
|
|
|
|
c, s := makeClient(t, nil, func(c *testutil.TestServerConfig) {
|
|
|
|
rpcPort = c.Ports.RPC
|
|
|
|
c.Client = &testutil.ClientConfig{
|
|
|
|
Enabled: true,
|
|
|
|
}
|
|
|
|
})
|
2019-10-07 20:19:32 +00:00
|
|
|
defer s.Stop()
|
|
|
|
|
2019-10-25 14:32:20 +00:00
|
|
|
require.NoError(t, c.Agent().SetServers([]string{fmt.Sprintf("127.0.0.1:%d", rpcPort)}))
|
|
|
|
|
2019-10-07 20:19:32 +00:00
|
|
|
agent := c.Agent()
|
|
|
|
|
2019-10-25 14:32:20 +00:00
|
|
|
index := uint64(0)
|
|
|
|
var node *NodeListStub
|
|
|
|
// grab a node
|
|
|
|
testutil.WaitForResult(func() (bool, error) {
|
|
|
|
nodes, qm, err := c.Nodes().List(&QueryOptions{WaitIndex: index})
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
index = qm.LastIndex
|
|
|
|
if len(nodes) != 1 {
|
|
|
|
return false, fmt.Errorf("expected 1 node but found: %s", pretty.Sprint(nodes))
|
|
|
|
}
|
|
|
|
if nodes[0].Status != "ready" {
|
|
|
|
return false, fmt.Errorf("node not ready: %s", nodes[0].Status)
|
|
|
|
}
|
|
|
|
node = nodes[0]
|
|
|
|
return true, nil
|
|
|
|
}, func(err error) {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
})
|
|
|
|
|
2019-10-10 19:30:37 +00:00
|
|
|
doneCh := make(chan struct{})
|
2019-10-24 16:47:46 +00:00
|
|
|
q := &QueryOptions{
|
|
|
|
Params: map[string]string{
|
2019-10-30 13:36:39 +00:00
|
|
|
"log_level": "debug",
|
|
|
|
"node_id": node.ID,
|
2019-10-24 16:47:46 +00:00
|
|
|
},
|
|
|
|
}
|
2019-10-24 20:55:23 +00:00
|
|
|
|
2019-11-01 14:33:28 +00:00
|
|
|
frames, errCh := agent.Monitor(doneCh, q)
|
2019-10-15 14:33:07 +00:00
|
|
|
defer close(doneCh)
|
|
|
|
|
|
|
|
// make a request to generate some logs
|
2019-11-01 14:33:28 +00:00
|
|
|
_, err := agent.NodeName()
|
2019-10-15 14:33:07 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
2019-10-25 14:32:20 +00:00
|
|
|
// Wait for a log message
|
|
|
|
OUTER:
|
2019-10-15 14:33:07 +00:00
|
|
|
for {
|
|
|
|
select {
|
2019-11-01 14:33:28 +00:00
|
|
|
case f := <-frames:
|
|
|
|
if strings.Contains(string(f.Data), "[DEBUG]") {
|
2019-10-25 14:32:20 +00:00
|
|
|
break OUTER
|
2019-10-15 14:33:07 +00:00
|
|
|
}
|
2019-11-01 14:33:28 +00:00
|
|
|
case err := <-errCh:
|
|
|
|
t.Errorf("Error: %v", err)
|
2019-10-25 14:32:20 +00:00
|
|
|
case <-time.After(2 * time.Second):
|
|
|
|
require.Fail(t, "failed to get a DEBUG log message")
|
2019-10-15 14:33:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-30 13:28:24 +00:00
|
|
|
|
|
|
|
// TestAgent_Monitor tests the Monitor endpoint
|
|
|
|
// passing in only a log level, which tests the servers
|
|
|
|
// monitor functionality
|
2019-10-25 14:32:20 +00:00
|
|
|
func TestAgent_Monitor(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2019-10-15 14:33:07 +00:00
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
agent := c.Agent()
|
|
|
|
|
2019-10-24 16:47:46 +00:00
|
|
|
q := &QueryOptions{
|
|
|
|
Params: map[string]string{
|
2019-10-30 13:36:39 +00:00
|
|
|
"log_level": "debug",
|
2019-10-24 16:47:46 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-10-15 14:33:07 +00:00
|
|
|
doneCh := make(chan struct{})
|
2019-11-01 14:33:28 +00:00
|
|
|
frames, errCh := agent.Monitor(doneCh, q)
|
2019-10-10 19:30:37 +00:00
|
|
|
defer close(doneCh)
|
2019-10-07 20:19:32 +00:00
|
|
|
|
2019-10-10 19:30:37 +00:00
|
|
|
// make a request to generate some logs
|
2019-11-01 14:33:28 +00:00
|
|
|
_, err := agent.Region()
|
2019-10-10 19:30:37 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
2019-10-25 14:32:20 +00:00
|
|
|
// Wait for a log message
|
|
|
|
OUTER:
|
2019-10-10 19:30:37 +00:00
|
|
|
for {
|
|
|
|
select {
|
2019-11-01 14:33:28 +00:00
|
|
|
case log := <-frames:
|
|
|
|
if log == nil {
|
|
|
|
continue
|
|
|
|
}
|
2019-10-30 20:56:24 +00:00
|
|
|
if strings.Contains(string(log.Data), "[DEBUG]") {
|
2019-10-25 14:32:20 +00:00
|
|
|
break OUTER
|
2019-10-10 19:30:37 +00:00
|
|
|
}
|
2019-11-01 14:33:28 +00:00
|
|
|
case err := <-errCh:
|
|
|
|
t.Fatalf("error: %v", err)
|
2019-10-25 14:32:20 +00:00
|
|
|
case <-time.After(2 * time.Second):
|
|
|
|
require.Fail(t, "failed to get a DEBUG log message")
|
2019-10-07 20:19:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-12 16:56:07 +00:00
|
|
|
|
|
|
|
func TestAgentCPUProfile(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2019-12-12 16:56:07 +00:00
|
|
|
|
|
|
|
c, s, token := makeACLClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
agent := c.Agent()
|
|
|
|
|
|
|
|
q := &QueryOptions{
|
|
|
|
AuthToken: token.SecretID,
|
|
|
|
}
|
|
|
|
|
2019-12-12 21:52:13 +00:00
|
|
|
// Valid local request
|
|
|
|
{
|
2019-12-20 15:42:20 +00:00
|
|
|
opts := PprofOptions{
|
|
|
|
Seconds: 1,
|
|
|
|
}
|
|
|
|
resp, err := agent.CPUProfile(opts, q)
|
2019-12-12 21:52:13 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, resp)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Invalid server request
|
|
|
|
{
|
2019-12-20 15:42:20 +00:00
|
|
|
opts := PprofOptions{
|
|
|
|
Seconds: 1,
|
|
|
|
ServerID: "unknown.global",
|
|
|
|
}
|
|
|
|
resp, err := agent.CPUProfile(opts, q)
|
2019-12-12 21:52:13 +00:00
|
|
|
require.Error(t, err)
|
2020-01-29 18:55:14 +00:00
|
|
|
require.Contains(t, err.Error(), "500 (unknown Nomad server unknown.global)")
|
2019-12-12 21:52:13 +00:00
|
|
|
require.Nil(t, resp)
|
|
|
|
}
|
|
|
|
|
2019-12-12 16:56:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestAgentTrace(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2019-12-12 16:56:07 +00:00
|
|
|
|
|
|
|
c, s, token := makeACLClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
agent := c.Agent()
|
|
|
|
|
|
|
|
q := &QueryOptions{
|
|
|
|
AuthToken: token.SecretID,
|
|
|
|
}
|
|
|
|
|
2019-12-20 15:42:20 +00:00
|
|
|
resp, err := agent.Trace(PprofOptions{}, q)
|
2019-12-12 16:56:07 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, resp)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAgentProfile(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2019-12-12 16:56:07 +00:00
|
|
|
|
|
|
|
c, s, token := makeACLClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
agent := c.Agent()
|
|
|
|
|
|
|
|
q := &QueryOptions{
|
|
|
|
AuthToken: token.SecretID,
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2019-12-20 15:42:20 +00:00
|
|
|
resp, err := agent.Lookup("heap", PprofOptions{}, q)
|
2019-12-12 16:56:07 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, resp)
|
|
|
|
}
|
|
|
|
|
|
|
|
// unknown profile
|
|
|
|
{
|
2019-12-20 15:42:20 +00:00
|
|
|
resp, err := agent.Lookup("invalid", PprofOptions{}, q)
|
2019-12-12 16:56:07 +00:00
|
|
|
require.Error(t, err)
|
|
|
|
require.Contains(t, err.Error(), "Unexpected response code: 404")
|
|
|
|
require.Nil(t, resp)
|
|
|
|
}
|
|
|
|
}
|
2022-01-06 16:56:13 +00:00
|
|
|
|
|
|
|
func TestAgent_SchedulerWorkerConfig(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2022-01-06 16:56:13 +00:00
|
|
|
|
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
a := c.Agent()
|
|
|
|
|
|
|
|
config, err := a.GetSchedulerWorkerConfig(nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, config)
|
|
|
|
newConfig := SchedulerWorkerPoolArgs{NumSchedulers: 0, EnabledSchedulers: []string{"_core", "system"}}
|
|
|
|
resp, err := a.SetSchedulerWorkerConfig(newConfig, nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.NotEqual(t, config, resp)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAgent_SchedulerWorkerConfig_BadRequest(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2022-01-06 16:56:13 +00:00
|
|
|
|
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
a := c.Agent()
|
|
|
|
|
|
|
|
config, err := a.GetSchedulerWorkerConfig(nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, config)
|
|
|
|
newConfig := SchedulerWorkerPoolArgs{NumSchedulers: -1, EnabledSchedulers: []string{"_core", "system"}}
|
|
|
|
_, err = a.SetSchedulerWorkerConfig(newConfig, nil)
|
|
|
|
require.Error(t, err)
|
|
|
|
require.Contains(t, err.Error(), fmt.Sprintf("%v (%s)", http.StatusBadRequest, "Invalid request"))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAgent_SchedulerWorkersInfo(t *testing.T) {
|
2022-03-17 13:34:57 +00:00
|
|
|
testutil.Parallel(t)
|
2022-01-06 16:56:13 +00:00
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
a := c.Agent()
|
|
|
|
|
|
|
|
info, err := a.GetSchedulerWorkersInfo(nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, info)
|
|
|
|
defaultSchedulers := []string{"batch", "system", "sysbatch", "service", "_core"}
|
|
|
|
for _, worker := range info.Schedulers {
|
|
|
|
require.ElementsMatch(t, defaultSchedulers, worker.EnabledSchedulers)
|
|
|
|
}
|
|
|
|
}
|