2015-01-06 18:40:00 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2015-01-07 00:18:50 +00:00
|
|
|
"fmt"
|
2015-01-06 18:40:00 +00:00
|
|
|
"testing"
|
2015-01-07 00:18:50 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/consul/testutil"
|
2017-04-29 16:34:02 +00:00
|
|
|
"github.com/hashicorp/consul/testutil/retry"
|
2017-04-27 23:03:05 +00:00
|
|
|
"github.com/pascaldekloe/goe/verify"
|
2018-06-07 09:17:44 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2015-01-06 18:40:00 +00:00
|
|
|
)
|
|
|
|
|
2017-06-30 21:05:02 +00:00
|
|
|
func TestAPI_HealthNode(t *testing.T) {
|
2015-05-08 17:27:24 +00:00
|
|
|
t.Parallel()
|
2015-01-06 23:26:50 +00:00
|
|
|
c, s := makeClient(t)
|
2015-03-03 02:18:38 +00:00
|
|
|
defer s.Stop()
|
2015-01-06 23:26:50 +00:00
|
|
|
|
2015-01-06 18:40:00 +00:00
|
|
|
agent := c.Agent()
|
|
|
|
health := c.Health()
|
|
|
|
|
|
|
|
info, err := agent.Self()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
name := info["Config"]["NodeName"].(string)
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2015-01-13 19:25:19 +00:00
|
|
|
checks, meta, err := health.Node(name, nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-01-13 19:25:19 +00:00
|
|
|
}
|
|
|
|
if meta.LastIndex == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("bad: %v", meta)
|
2015-01-13 19:25:19 +00:00
|
|
|
}
|
|
|
|
if len(checks) == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("bad: %v", checks)
|
2015-01-13 19:25:19 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2015-01-06 18:40:00 +00:00
|
|
|
}
|
|
|
|
|
2017-06-30 20:58:55 +00:00
|
|
|
func TestAPI_HealthChecks_AggregatedStatus(t *testing.T) {
|
2016-11-29 21:15:20 +00:00
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
cases := []struct {
|
|
|
|
name string
|
|
|
|
checks HealthChecks
|
|
|
|
exp string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"empty",
|
|
|
|
nil,
|
|
|
|
HealthPassing,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"passing",
|
|
|
|
HealthChecks{
|
|
|
|
&HealthCheck{
|
|
|
|
Status: HealthPassing,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HealthPassing,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"warning",
|
|
|
|
HealthChecks{
|
|
|
|
&HealthCheck{
|
|
|
|
Status: HealthWarning,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HealthWarning,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"critical",
|
|
|
|
HealthChecks{
|
|
|
|
&HealthCheck{
|
|
|
|
Status: HealthCritical,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HealthCritical,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"node_maintenance",
|
|
|
|
HealthChecks{
|
|
|
|
&HealthCheck{
|
|
|
|
CheckID: NodeMaint,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HealthMaint,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"service_maintenance",
|
|
|
|
HealthChecks{
|
|
|
|
&HealthCheck{
|
|
|
|
CheckID: ServiceMaintPrefix + "service",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HealthMaint,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"unknown",
|
|
|
|
HealthChecks{
|
|
|
|
&HealthCheck{
|
|
|
|
Status: "nope-nope-noper",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"maintenance_over_critical",
|
|
|
|
HealthChecks{
|
|
|
|
&HealthCheck{
|
|
|
|
CheckID: NodeMaint,
|
|
|
|
},
|
|
|
|
&HealthCheck{
|
|
|
|
Status: HealthCritical,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HealthMaint,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"critical_over_warning",
|
|
|
|
HealthChecks{
|
|
|
|
&HealthCheck{
|
|
|
|
Status: HealthCritical,
|
|
|
|
},
|
|
|
|
&HealthCheck{
|
|
|
|
Status: HealthWarning,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HealthCritical,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"warning_over_passing",
|
|
|
|
HealthChecks{
|
|
|
|
&HealthCheck{
|
|
|
|
Status: HealthWarning,
|
|
|
|
},
|
|
|
|
&HealthCheck{
|
|
|
|
Status: HealthPassing,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HealthWarning,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"lots",
|
|
|
|
HealthChecks{
|
|
|
|
&HealthCheck{
|
|
|
|
Status: HealthPassing,
|
|
|
|
},
|
|
|
|
&HealthCheck{
|
|
|
|
Status: HealthPassing,
|
|
|
|
},
|
|
|
|
&HealthCheck{
|
|
|
|
Status: HealthPassing,
|
|
|
|
},
|
|
|
|
&HealthCheck{
|
|
|
|
Status: HealthWarning,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HealthWarning,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tc := range cases {
|
|
|
|
t.Run(fmt.Sprintf("%d_%s", i, tc.name), func(t *testing.T) {
|
|
|
|
act := tc.checks.AggregatedStatus()
|
|
|
|
if tc.exp != act {
|
|
|
|
t.Errorf("\nexp: %#v\nact: %#v", tc.exp, act)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-30 21:05:02 +00:00
|
|
|
func TestAPI_HealthChecks(t *testing.T) {
|
2015-05-08 17:27:24 +00:00
|
|
|
t.Parallel()
|
2017-04-27 23:03:05 +00:00
|
|
|
c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) {
|
|
|
|
conf.NodeName = "node123"
|
|
|
|
})
|
2015-03-03 02:18:38 +00:00
|
|
|
defer s.Stop()
|
2015-01-06 23:26:50 +00:00
|
|
|
|
2015-01-06 18:40:00 +00:00
|
|
|
agent := c.Agent()
|
|
|
|
health := c.Health()
|
|
|
|
|
|
|
|
// Make a service with a check
|
|
|
|
reg := &AgentServiceRegistration{
|
|
|
|
Name: "foo",
|
2017-04-27 23:03:05 +00:00
|
|
|
Tags: []string{"bar"},
|
2015-01-06 18:40:00 +00:00
|
|
|
Check: &AgentServiceCheck{
|
|
|
|
TTL: "15s",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if err := agent.ServiceRegister(reg); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
defer agent.ServiceDeregister("foo")
|
|
|
|
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2017-04-27 23:03:05 +00:00
|
|
|
checks := HealthChecks{
|
|
|
|
&HealthCheck{
|
|
|
|
Node: "node123",
|
|
|
|
CheckID: "service:foo",
|
|
|
|
Name: "Service 'foo' check",
|
|
|
|
Status: "critical",
|
|
|
|
ServiceID: "foo",
|
|
|
|
ServiceName: "foo",
|
|
|
|
ServiceTags: []string{"bar"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
out, meta, err := health.Checks("foo", nil)
|
2015-01-07 00:18:50 +00:00
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-01-07 00:18:50 +00:00
|
|
|
}
|
|
|
|
if meta.LastIndex == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("bad: %v", meta)
|
2015-01-07 00:18:50 +00:00
|
|
|
}
|
2017-04-27 23:03:05 +00:00
|
|
|
if got, want := out, checks; !verify.Values(t, "checks", got, want) {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal("health.Checks failed")
|
2015-01-07 00:18:50 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2015-01-06 18:40:00 +00:00
|
|
|
}
|
|
|
|
|
2017-06-30 21:05:02 +00:00
|
|
|
func TestAPI_HealthChecks_NodeMetaFilter(t *testing.T) {
|
2017-01-14 01:08:43 +00:00
|
|
|
t.Parallel()
|
|
|
|
meta := map[string]string{"somekey": "somevalue"}
|
|
|
|
c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) {
|
|
|
|
conf.NodeMeta = meta
|
|
|
|
})
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
agent := c.Agent()
|
|
|
|
health := c.Health()
|
|
|
|
|
|
|
|
// Make a service with a check
|
|
|
|
reg := &AgentServiceRegistration{
|
|
|
|
Name: "foo",
|
|
|
|
Check: &AgentServiceCheck{
|
|
|
|
TTL: "15s",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if err := agent.ServiceRegister(reg); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
defer agent.ServiceDeregister("foo")
|
|
|
|
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2017-01-14 01:08:43 +00:00
|
|
|
checks, meta, err := health.Checks("foo", &QueryOptions{NodeMeta: meta})
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2017-01-14 01:08:43 +00:00
|
|
|
}
|
|
|
|
if meta.LastIndex == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("bad: %v", meta)
|
2017-01-14 01:08:43 +00:00
|
|
|
}
|
|
|
|
if len(checks) == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", checks)
|
2017-01-14 01:08:43 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2017-01-14 01:08:43 +00:00
|
|
|
}
|
|
|
|
|
2017-06-30 21:05:02 +00:00
|
|
|
func TestAPI_HealthService(t *testing.T) {
|
2017-09-25 18:40:42 +00:00
|
|
|
t.Parallel()
|
2015-01-06 23:26:50 +00:00
|
|
|
c, s := makeClient(t)
|
2015-03-03 02:18:38 +00:00
|
|
|
defer s.Stop()
|
2015-01-06 23:26:50 +00:00
|
|
|
|
2015-01-06 18:40:00 +00:00
|
|
|
health := c.Health()
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2015-01-07 00:48:54 +00:00
|
|
|
// consul service should always exist...
|
|
|
|
checks, meta, err := health.Service("consul", "", true, nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-01-07 00:48:54 +00:00
|
|
|
}
|
|
|
|
if meta.LastIndex == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("bad: %v", meta)
|
2015-01-07 00:48:54 +00:00
|
|
|
}
|
|
|
|
if len(checks) == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", checks)
|
2015-01-07 00:48:54 +00:00
|
|
|
}
|
2016-08-16 17:30:30 +00:00
|
|
|
if _, ok := checks[0].Node.TaggedAddresses["wan"]; !ok {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", checks[0].Node)
|
2016-08-16 17:30:30 +00:00
|
|
|
}
|
2017-04-18 12:02:24 +00:00
|
|
|
if checks[0].Node.Datacenter != "dc1" {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad datacenter: %v", checks[0].Node)
|
2017-04-18 12:02:24 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2015-01-06 18:40:00 +00:00
|
|
|
}
|
|
|
|
|
2018-10-11 11:50:05 +00:00
|
|
|
func TestAPI_HealthService_SingleTag(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) {
|
|
|
|
conf.NodeName = "node123"
|
|
|
|
})
|
|
|
|
defer s.Stop()
|
|
|
|
agent := c.Agent()
|
|
|
|
health := c.Health()
|
|
|
|
reg := &AgentServiceRegistration{
|
|
|
|
Name: "foo",
|
|
|
|
ID: "foo1",
|
|
|
|
Tags: []string{"bar"},
|
|
|
|
Check: &AgentServiceCheck{
|
|
|
|
Status: HealthPassing,
|
|
|
|
TTL: "15s",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
require.NoError(t, agent.ServiceRegister(reg))
|
|
|
|
defer agent.ServiceDeregister("foo1")
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
services, meta, err := health.Service("foo", "bar", true, nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotEqual(t, meta.LastIndex, 0)
|
|
|
|
require.Len(t, services, 1)
|
|
|
|
require.Equal(t, services[0].Service.ID, "foo1")
|
|
|
|
})
|
|
|
|
}
|
|
|
|
func TestAPI_HealthService_MultipleTags(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) {
|
|
|
|
conf.NodeName = "node123"
|
|
|
|
})
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
agent := c.Agent()
|
|
|
|
health := c.Health()
|
|
|
|
|
|
|
|
// Make two services with a check
|
|
|
|
reg := &AgentServiceRegistration{
|
|
|
|
Name: "foo",
|
|
|
|
ID: "foo1",
|
|
|
|
Tags: []string{"bar"},
|
|
|
|
Check: &AgentServiceCheck{
|
|
|
|
Status: HealthPassing,
|
|
|
|
TTL: "15s",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
require.NoError(t, agent.ServiceRegister(reg))
|
|
|
|
defer agent.ServiceDeregister("foo1")
|
|
|
|
|
|
|
|
reg2 := &AgentServiceRegistration{
|
|
|
|
Name: "foo",
|
|
|
|
ID: "foo2",
|
|
|
|
Tags: []string{"bar", "v2"},
|
|
|
|
Check: &AgentServiceCheck{
|
|
|
|
Status: HealthPassing,
|
|
|
|
TTL: "15s",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
require.NoError(t, agent.ServiceRegister(reg2))
|
|
|
|
defer agent.ServiceDeregister("foo2")
|
|
|
|
|
|
|
|
// Test searching with one tag (two results)
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
services, meta, err := health.ServiceMultipleTags("foo", []string{"bar"}, true, nil)
|
|
|
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotEqual(t, meta.LastIndex, 0)
|
|
|
|
require.Len(t, services, 2)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Test searching with two tags (one result)
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
services, meta, err := health.ServiceMultipleTags("foo", []string{"bar", "v2"}, true, nil)
|
|
|
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotEqual(t, meta.LastIndex, 0)
|
|
|
|
require.Len(t, services, 1)
|
|
|
|
require.Equal(t, services[0].Service.ID, "foo2")
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAPI_HealthService_NodeMetaFilter(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
meta := map[string]string{"somekey": "somevalue"}
|
|
|
|
c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) {
|
|
|
|
conf.NodeMeta = meta
|
|
|
|
})
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
health := c.Health()
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
// consul service should always exist...
|
|
|
|
checks, meta, err := health.Service("consul", "", true, &QueryOptions{NodeMeta: meta})
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotEqual(t, meta.LastIndex, 0)
|
|
|
|
require.NotEqual(t, len(checks), 0)
|
|
|
|
require.Equal(t, checks[0].Node.Datacenter, "dc1")
|
|
|
|
require.Contains(t, checks[0].Node.TaggedAddresses, "wan")
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-03-26 15:51:43 +00:00
|
|
|
func TestAPI_HealthConnect(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c, s := makeClient(t)
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
agent := c.Agent()
|
|
|
|
health := c.Health()
|
|
|
|
|
|
|
|
// Make a service with a proxy
|
|
|
|
reg := &AgentServiceRegistration{
|
|
|
|
Name: "foo",
|
|
|
|
Port: 8000,
|
|
|
|
}
|
|
|
|
err := agent.ServiceRegister(reg)
|
2018-06-07 09:17:44 +00:00
|
|
|
require.NoError(t, err)
|
2018-03-26 15:51:43 +00:00
|
|
|
defer agent.ServiceDeregister("foo")
|
|
|
|
|
|
|
|
// Register the proxy
|
|
|
|
proxyReg := &AgentServiceRegistration{
|
2018-09-12 16:07:47 +00:00
|
|
|
Name: "foo-proxy",
|
|
|
|
Port: 8001,
|
|
|
|
Kind: ServiceKindConnectProxy,
|
|
|
|
Proxy: &AgentServiceConnectProxyConfig{
|
|
|
|
DestinationServiceName: "foo",
|
|
|
|
},
|
2018-03-26 15:51:43 +00:00
|
|
|
}
|
|
|
|
err = agent.ServiceRegister(proxyReg)
|
2018-06-07 09:17:44 +00:00
|
|
|
require.NoError(t, err)
|
2018-03-26 15:51:43 +00:00
|
|
|
defer agent.ServiceDeregister("foo-proxy")
|
|
|
|
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
services, meta, err := health.Connect("foo", "", true, nil)
|
|
|
|
if err != nil {
|
|
|
|
r.Fatal(err)
|
|
|
|
}
|
|
|
|
if meta.LastIndex == 0 {
|
|
|
|
r.Fatalf("bad: %v", meta)
|
|
|
|
}
|
|
|
|
// Should be exactly 1 service - the original shouldn't show up as a connect
|
|
|
|
// endpoint, only it's proxy.
|
|
|
|
if len(services) != 1 {
|
|
|
|
r.Fatalf("Bad: %v", services)
|
|
|
|
}
|
|
|
|
if services[0].Node.Datacenter != "dc1" {
|
|
|
|
r.Fatalf("Bad datacenter: %v", services[0].Node)
|
|
|
|
}
|
|
|
|
if services[0].Service.Port != proxyReg.Port {
|
|
|
|
r.Fatalf("Bad port: %v", services[0])
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-30 21:05:02 +00:00
|
|
|
func TestAPI_HealthState(t *testing.T) {
|
2015-05-08 17:27:24 +00:00
|
|
|
t.Parallel()
|
2015-01-06 23:26:50 +00:00
|
|
|
c, s := makeClient(t)
|
2015-03-03 02:18:38 +00:00
|
|
|
defer s.Stop()
|
2015-01-06 23:26:50 +00:00
|
|
|
|
2015-01-06 18:40:00 +00:00
|
|
|
health := c.Health()
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2015-01-07 00:48:54 +00:00
|
|
|
checks, meta, err := health.State("any", nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-01-07 00:48:54 +00:00
|
|
|
}
|
|
|
|
if meta.LastIndex == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("bad: %v", meta)
|
2015-01-07 00:48:54 +00:00
|
|
|
}
|
|
|
|
if len(checks) == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", checks)
|
2015-01-07 00:48:54 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2015-01-06 18:40:00 +00:00
|
|
|
}
|
2017-01-14 01:08:43 +00:00
|
|
|
|
2017-06-30 21:05:02 +00:00
|
|
|
func TestAPI_HealthState_NodeMetaFilter(t *testing.T) {
|
2017-01-14 01:08:43 +00:00
|
|
|
t.Parallel()
|
|
|
|
meta := map[string]string{"somekey": "somevalue"}
|
|
|
|
c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) {
|
|
|
|
conf.NodeMeta = meta
|
|
|
|
})
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
health := c.Health()
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2017-01-14 01:08:43 +00:00
|
|
|
checks, meta, err := health.State("any", &QueryOptions{NodeMeta: meta})
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2017-01-14 01:08:43 +00:00
|
|
|
}
|
|
|
|
if meta.LastIndex == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("bad: %v", meta)
|
2017-01-14 01:08:43 +00:00
|
|
|
}
|
|
|
|
if len(checks) == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", checks)
|
2017-01-14 01:08:43 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2017-01-14 01:08:43 +00:00
|
|
|
}
|