2015-01-06 18:40:00 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2018-09-12 16:07:47 +00:00
|
|
|
"reflect"
|
2015-01-06 18:40:00 +00:00
|
|
|
"testing"
|
2018-09-06 10:34:28 +00:00
|
|
|
"time"
|
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
"github.com/hashicorp/consul/testutil"
|
2017-04-29 16:34:02 +00:00
|
|
|
"github.com/hashicorp/consul/testutil/retry"
|
|
|
|
"github.com/pascaldekloe/goe/verify"
|
2018-10-11 11:50:05 +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_CatalogDatacenters(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
|
|
|
catalog := c.Catalog()
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2015-01-08 02:29:42 +00:00
|
|
|
datacenters, err := catalog.Datacenters()
|
|
|
|
if err != nil {
|
2017-05-09 05:31:41 +00:00
|
|
|
r.Fatal(err)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
if len(datacenters) < 1 {
|
|
|
|
r.Fatal("got 0 datacenters want at least one")
|
2015-01-08 02:29:42 +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_CatalogNodes(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
|
|
|
catalog := c.Catalog()
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.RunWith(retry.ThreeTimes(), t, func(r *retry.R) {
|
2015-01-08 02:29:42 +00:00
|
|
|
nodes, meta, err := catalog.Nodes(nil)
|
2018-08-15 15:16:05 +00:00
|
|
|
// We're not concerned about the createIndex of an agent
|
|
|
|
// Hence we're setting it to the default value
|
|
|
|
nodes[0].CreateIndex = 0
|
2015-01-08 02:29:42 +00:00
|
|
|
if err != nil {
|
2017-05-09 05:31:41 +00:00
|
|
|
r.Fatal(err)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2018-08-06 23:46:09 +00:00
|
|
|
if meta.LastIndex < 2 {
|
|
|
|
r.Fatal("Last index must be greater than 1")
|
2017-04-29 16:34:02 +00:00
|
|
|
}
|
|
|
|
want := []*Node{
|
|
|
|
{
|
|
|
|
ID: s.Config.NodeID,
|
|
|
|
Node: s.Config.NodeName,
|
|
|
|
Address: "127.0.0.1",
|
|
|
|
Datacenter: "dc1",
|
|
|
|
TaggedAddresses: map[string]string{
|
|
|
|
"lan": "127.0.0.1",
|
|
|
|
"wan": "127.0.0.1",
|
|
|
|
},
|
2017-08-14 14:36:07 +00:00
|
|
|
Meta: map[string]string{
|
|
|
|
"consul-network-segment": "",
|
|
|
|
},
|
2018-08-15 15:16:05 +00:00
|
|
|
// CreateIndex will never always be meta.LastIndex - 1
|
|
|
|
// The purpose of this test is not to test CreateIndex value of an agent
|
|
|
|
// rather to check if the client agent can get the correct number
|
|
|
|
// of agents with a particular service, KV pair, etc...
|
|
|
|
// Hence reverting this to the default value here.
|
|
|
|
CreateIndex: 0,
|
2017-04-29 16:34:02 +00:00
|
|
|
ModifyIndex: meta.LastIndex,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if !verify.Values(r, "", nodes, want) {
|
|
|
|
r.FailNow()
|
2015-01-08 02:29:42 +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_CatalogNodes_MetaFilter(t *testing.T) {
|
2017-09-25 18:40:42 +00:00
|
|
|
t.Parallel()
|
2017-01-11 23:44:13 +00:00
|
|
|
meta := map[string]string{"somekey": "somevalue"}
|
|
|
|
c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) {
|
|
|
|
conf.NodeMeta = meta
|
|
|
|
})
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
catalog := c.Catalog()
|
|
|
|
// Make sure we get the node back when filtering by its metadata
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2017-01-11 23:44:13 +00:00
|
|
|
nodes, meta, err := catalog.Nodes(&QueryOptions{NodeMeta: meta})
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if meta.LastIndex == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", meta)
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(nodes) == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", nodes)
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := nodes[0].TaggedAddresses["wan"]; !ok {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", nodes[0])
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if v, ok := nodes[0].Meta["somekey"]; !ok || v != "somevalue" {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", nodes[0].Meta)
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 12:02:24 +00:00
|
|
|
if nodes[0].Datacenter != "dc1" {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad datacenter: %v", nodes[0])
|
2017-04-18 12:02:24 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2017-04-18 12:02:24 +00:00
|
|
|
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2017-04-29 16:34:02 +00:00
|
|
|
// Get nothing back when we use an invalid filter
|
2017-01-12 01:44:22 +00:00
|
|
|
nodes, meta, err := catalog.Nodes(&QueryOptions{NodeMeta: map[string]string{"nope": "nope"}})
|
2017-01-11 23:44:13 +00:00
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if meta.LastIndex == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", meta)
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(nodes) != 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", nodes)
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
2017-06-30 21:05:02 +00:00
|
|
|
func TestAPI_CatalogServices(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
|
|
|
catalog := c.Catalog()
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2015-01-08 02:29:42 +00:00
|
|
|
services, meta, err := catalog.Services(nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2015-01-06 18:40:00 +00:00
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
if meta.LastIndex == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", meta)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2015-01-06 18:40:00 +00:00
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
if len(services) == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", services)
|
2015-01-08 02:29:42 +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_CatalogServices_NodeMetaFilter(t *testing.T) {
|
2017-09-25 18:40:42 +00:00
|
|
|
t.Parallel()
|
2017-01-11 23:44:13 +00:00
|
|
|
meta := map[string]string{"somekey": "somevalue"}
|
|
|
|
c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) {
|
|
|
|
conf.NodeMeta = meta
|
|
|
|
})
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
catalog := c.Catalog()
|
|
|
|
// Make sure we get the service back when filtering by the node's metadata
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2017-01-11 23:44:13 +00:00
|
|
|
services, meta, err := catalog.Services(&QueryOptions{NodeMeta: meta})
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if meta.LastIndex == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", meta)
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(services) == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", services)
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2017-01-11 23:44:13 +00:00
|
|
|
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2017-04-29 16:34:02 +00:00
|
|
|
// Get nothing back when using an invalid filter
|
2017-01-12 01:44:22 +00:00
|
|
|
services, meta, err := catalog.Services(&QueryOptions{NodeMeta: map[string]string{"nope": "nope"}})
|
2017-01-11 23:44:13 +00:00
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if meta.LastIndex == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", meta)
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(services) != 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", services)
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
2017-06-30 21:05:02 +00:00
|
|
|
func TestAPI_CatalogService(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
|
|
|
catalog := c.Catalog()
|
2018-03-26 15:51:43 +00:00
|
|
|
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2015-01-08 02:29:42 +00:00
|
|
|
services, meta, err := catalog.Service("consul", "", nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2015-01-06 18:40:00 +00:00
|
|
|
|
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(services) == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", services)
|
2017-01-14 01:08:43 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 12:02:24 +00:00
|
|
|
if services[0].Datacenter != "dc1" {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad datacenter: %v", services[0])
|
2017-04-18 12:02:24 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2017-01-14 01:08:43 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 16:07:47 +00:00
|
|
|
func TestAPI_CatalogServiceUnmanagedProxy(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c, s := makeClient(t)
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
catalog := c.Catalog()
|
|
|
|
|
|
|
|
proxyReg := testUnmanagedProxyRegistration(t)
|
|
|
|
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
_, err := catalog.Register(proxyReg, nil)
|
|
|
|
r.Check(err)
|
|
|
|
|
|
|
|
services, meta, err := catalog.Service("web-proxy", "", nil)
|
|
|
|
if err != nil {
|
|
|
|
r.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if meta.LastIndex == 0 {
|
|
|
|
r.Fatalf("Bad: %v", meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(services) == 0 {
|
|
|
|
r.Fatalf("Bad: %v", services)
|
|
|
|
}
|
|
|
|
|
|
|
|
if services[0].Datacenter != "dc1" {
|
|
|
|
r.Fatalf("Bad datacenter: %v", services[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(services[0].ServiceProxy, proxyReg.Service.Proxy) {
|
|
|
|
r.Fatalf("bad proxy.\nwant: %v\n got: %v", proxyReg.Service.Proxy,
|
|
|
|
services[0].ServiceProxy)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-09-06 10:34:28 +00:00
|
|
|
func TestAPI_CatalogServiceCached(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c, s := makeClient(t)
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
catalog := c.Catalog()
|
|
|
|
|
|
|
|
q := &QueryOptions{
|
|
|
|
UseCache: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
services, meta, err := catalog.Service("consul", "", q)
|
|
|
|
if err != nil {
|
|
|
|
r.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if meta.LastIndex == 0 {
|
|
|
|
r.Fatalf("Bad: %v", meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(services) == 0 {
|
|
|
|
r.Fatalf("Bad: %v", services)
|
|
|
|
}
|
|
|
|
|
|
|
|
if services[0].Datacenter != "dc1" {
|
|
|
|
r.Fatalf("Bad datacenter: %v", services[0])
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
require := require.New(t)
|
|
|
|
|
|
|
|
// Got success, next hit must be cache hit
|
|
|
|
_, meta, err := catalog.Service("consul", "", q)
|
|
|
|
require.NoError(err)
|
|
|
|
require.True(meta.CacheHit)
|
|
|
|
require.Equal(time.Duration(0), meta.CacheAge)
|
|
|
|
}
|
|
|
|
|
2018-10-11 11:50:05 +00:00
|
|
|
func TestAPI_CatalogService_SingleTag(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) {
|
|
|
|
conf.NodeName = "node123"
|
|
|
|
})
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
agent := c.Agent()
|
|
|
|
catalog := c.Catalog()
|
|
|
|
|
|
|
|
reg := &AgentServiceRegistration{
|
|
|
|
Name: "foo",
|
|
|
|
ID: "foo1",
|
|
|
|
Tags: []string{"bar"},
|
|
|
|
}
|
|
|
|
require.NoError(t, agent.ServiceRegister(reg))
|
|
|
|
defer agent.ServiceDeregister("foo1")
|
|
|
|
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
services, meta, err := catalog.Service("foo", "bar", nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotEqual(t, meta.LastIndex, 0)
|
|
|
|
require.Len(t, services, 1)
|
|
|
|
require.Equal(t, services[0].ServiceID, "foo1")
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAPI_CatalogService_MultipleTags(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c, s := makeClientWithConfig(t, nil, func(conf *testutil.TestServerConfig) {
|
|
|
|
conf.NodeName = "node123"
|
|
|
|
})
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
agent := c.Agent()
|
|
|
|
catalog := c.Catalog()
|
|
|
|
|
|
|
|
// Make two services with a check
|
|
|
|
reg := &AgentServiceRegistration{
|
|
|
|
Name: "foo",
|
|
|
|
ID: "foo1",
|
|
|
|
Tags: []string{"bar"},
|
|
|
|
}
|
|
|
|
require.NoError(t, agent.ServiceRegister(reg))
|
|
|
|
defer agent.ServiceDeregister("foo1")
|
|
|
|
|
|
|
|
reg2 := &AgentServiceRegistration{
|
|
|
|
Name: "foo",
|
|
|
|
ID: "foo2",
|
|
|
|
Tags: []string{"bar", "v2"},
|
|
|
|
}
|
|
|
|
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 := catalog.ServiceMultipleTags("foo", []string{"bar"}, nil)
|
|
|
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotEqual(t, meta.LastIndex, 0)
|
|
|
|
|
|
|
|
// Should be 2 services with the `bar` tag
|
|
|
|
require.Len(t, services, 2)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Test searching with two tags (one result)
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
services, meta, err := catalog.ServiceMultipleTags("foo", []string{"bar", "v2"}, nil)
|
|
|
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotEqual(t, meta.LastIndex, 0)
|
|
|
|
|
|
|
|
// Should be exactly 1 service, named "foo2"
|
|
|
|
require.Len(t, services, 1)
|
|
|
|
require.Equal(t, services[0].ServiceID, "foo2")
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-30 21:05:02 +00:00
|
|
|
func TestAPI_CatalogService_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()
|
|
|
|
|
|
|
|
catalog := c.Catalog()
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2017-01-14 01:08:43 +00:00
|
|
|
services, meta, err := catalog.Service("consul", "", &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
|
|
|
}
|
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
if meta.LastIndex == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", meta)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2015-01-06 18:40:00 +00:00
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
if len(services) == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", services)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 12:02:24 +00:00
|
|
|
if services[0].Datacenter != "dc1" {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad datacenter: %v", services[0])
|
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-09-12 16:07:47 +00:00
|
|
|
func testUpstreams(t *testing.T) []Upstream {
|
|
|
|
return []Upstream{
|
|
|
|
{
|
|
|
|
DestinationName: "db",
|
|
|
|
LocalBindPort: 9191,
|
|
|
|
Config: map[string]interface{}{
|
|
|
|
"connect_timeout_ms": float64(1000),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
DestinationType: UpstreamDestTypePreparedQuery,
|
|
|
|
DestinationName: "geo-cache",
|
|
|
|
LocalBindPort: 8181,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func testExpectUpstreamsWithDefaults(t *testing.T, upstreams []Upstream) []Upstream {
|
|
|
|
ups := make([]Upstream, len(upstreams))
|
|
|
|
for i := range upstreams {
|
|
|
|
ups[i] = upstreams[i]
|
|
|
|
// Fill in default fields we expect to have back explicitly in a response
|
|
|
|
if ups[i].DestinationType == "" {
|
|
|
|
ups[i].DestinationType = UpstreamDestTypeService
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ups
|
|
|
|
}
|
|
|
|
|
|
|
|
// testUnmanagedProxy returns a fully configured external proxy service suitable
|
|
|
|
// for checking that all the config fields make it back in a response intact.
|
|
|
|
func testUnmanagedProxy(t *testing.T) *AgentService {
|
|
|
|
return &AgentService{
|
|
|
|
Kind: ServiceKindConnectProxy,
|
|
|
|
Proxy: &AgentServiceConnectProxyConfig{
|
|
|
|
DestinationServiceName: "web",
|
|
|
|
DestinationServiceID: "web1",
|
|
|
|
LocalServiceAddress: "127.0.0.2",
|
|
|
|
LocalServicePort: 8080,
|
|
|
|
Upstreams: testUpstreams(t),
|
|
|
|
},
|
|
|
|
ID: "web-proxy1",
|
|
|
|
Service: "web-proxy",
|
|
|
|
Port: 8001,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// testUnmanagedProxyRegistration returns a *CatalogRegistration for a fully
|
|
|
|
// configured external proxy.
|
|
|
|
func testUnmanagedProxyRegistration(t *testing.T) *CatalogRegistration {
|
|
|
|
return &CatalogRegistration{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
Node: "foobar",
|
|
|
|
Address: "192.168.10.10",
|
|
|
|
Service: testUnmanagedProxy(t),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-26 15:51:43 +00:00
|
|
|
func TestAPI_CatalogConnect(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c, s := makeClient(t)
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
catalog := c.Catalog()
|
|
|
|
|
|
|
|
// Register service and proxy instances to test against.
|
2018-09-12 16:07:47 +00:00
|
|
|
proxyReg := testUnmanagedProxyRegistration(t)
|
|
|
|
|
|
|
|
proxy := proxyReg.Service
|
|
|
|
|
|
|
|
// DEPRECATED (ProxyDestination) - remove this case when the field is removed
|
|
|
|
deprecatedProxyReg := testUnmanagedProxyRegistration(t)
|
|
|
|
deprecatedProxyReg.Service.ProxyDestination = deprecatedProxyReg.Service.Proxy.DestinationServiceName
|
|
|
|
deprecatedProxyReg.Service.Proxy = nil
|
|
|
|
|
2018-03-26 15:51:43 +00:00
|
|
|
service := &AgentService{
|
2018-09-12 16:07:47 +00:00
|
|
|
ID: proxyReg.Service.Proxy.DestinationServiceID,
|
|
|
|
Service: proxyReg.Service.Proxy.DestinationServiceName,
|
2018-03-26 15:51:43 +00:00
|
|
|
Port: 8000,
|
|
|
|
}
|
|
|
|
check := &AgentCheck{
|
|
|
|
Node: "foobar",
|
2018-09-12 16:07:47 +00:00
|
|
|
CheckID: "service:" + service.ID,
|
2018-03-26 15:51:43 +00:00
|
|
|
Name: "Redis health check",
|
|
|
|
Notes: "Script based health check",
|
|
|
|
Status: HealthPassing,
|
2018-09-12 16:07:47 +00:00
|
|
|
ServiceID: service.ID,
|
2018-03-26 15:51:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
reg := &CatalogRegistration{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
Node: "foobar",
|
|
|
|
Address: "192.168.10.10",
|
|
|
|
Service: service,
|
|
|
|
Check: check,
|
|
|
|
}
|
|
|
|
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
if _, err := catalog.Register(reg, nil); err != nil {
|
|
|
|
r.Fatal(err)
|
|
|
|
}
|
2018-09-12 16:07:47 +00:00
|
|
|
// First try to register deprecated proxy, shouldn't error
|
|
|
|
if _, err := catalog.Register(deprecatedProxyReg, nil); err != nil {
|
|
|
|
r.Fatal(err)
|
|
|
|
}
|
2018-03-26 15:51:43 +00:00
|
|
|
if _, err := catalog.Register(proxyReg, nil); err != nil {
|
|
|
|
r.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2018-09-12 16:07:47 +00:00
|
|
|
services, meta, err := catalog.Connect(proxyReg.Service.Proxy.DestinationServiceName, "", nil)
|
2018-03-26 15:51:43 +00:00
|
|
|
if err != nil {
|
|
|
|
r.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if meta.LastIndex == 0 {
|
|
|
|
r.Fatalf("Bad: %v", meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(services) == 0 {
|
|
|
|
r.Fatalf("Bad: %v", services)
|
|
|
|
}
|
|
|
|
|
|
|
|
if services[0].Datacenter != "dc1" {
|
|
|
|
r.Fatalf("Bad datacenter: %v", services[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
if services[0].ServicePort != proxy.Port {
|
|
|
|
r.Fatalf("Returned port should be for proxy: %v", services[0])
|
2018-06-05 17:56:42 +00:00
|
|
|
}
|
2018-09-06 10:34:28 +00:00
|
|
|
|
2018-09-12 16:07:47 +00:00
|
|
|
if !reflect.DeepEqual(services[0].ServiceProxy, proxy.Proxy) {
|
|
|
|
r.Fatalf("Returned proxy config should match:\nWant: %v\n Got: %v",
|
|
|
|
proxy.Proxy, services[0].ServiceProxy)
|
|
|
|
}
|
|
|
|
})
|
2018-06-05 17:56:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestAPI_CatalogConnectNative(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c, s := makeClient(t)
|
|
|
|
defer s.Stop()
|
|
|
|
|
|
|
|
catalog := c.Catalog()
|
|
|
|
|
|
|
|
// Register service and proxy instances to test against.
|
|
|
|
service := &AgentService{
|
|
|
|
ID: "redis1",
|
|
|
|
Service: "redis",
|
|
|
|
Port: 8000,
|
|
|
|
Connect: &AgentServiceConnect{Native: true},
|
|
|
|
}
|
|
|
|
check := &AgentCheck{
|
|
|
|
Node: "foobar",
|
|
|
|
CheckID: "service:redis1",
|
|
|
|
Name: "Redis health check",
|
|
|
|
Notes: "Script based health check",
|
|
|
|
Status: HealthPassing,
|
|
|
|
ServiceID: "redis1",
|
|
|
|
}
|
|
|
|
|
|
|
|
reg := &CatalogRegistration{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
Node: "foobar",
|
|
|
|
Address: "192.168.10.10",
|
|
|
|
Service: service,
|
|
|
|
Check: check,
|
|
|
|
}
|
|
|
|
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
if _, err := catalog.Register(reg, nil); err != nil {
|
|
|
|
r.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
services, meta, err := catalog.Connect("redis", "", nil)
|
|
|
|
if err != nil {
|
|
|
|
r.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if meta.LastIndex == 0 {
|
|
|
|
r.Fatalf("Bad: %v", meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(services) == 0 {
|
|
|
|
r.Fatalf("Bad: %v", services)
|
|
|
|
}
|
|
|
|
|
|
|
|
if services[0].Datacenter != "dc1" {
|
|
|
|
r.Fatalf("Bad datacenter: %v", services[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
if services[0].ServicePort != service.Port {
|
|
|
|
r.Fatalf("Returned port should be for proxy: %v", services[0])
|
2018-03-26 15:51:43 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-30 21:05:02 +00:00
|
|
|
func TestAPI_CatalogNode(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
|
|
|
catalog := c.Catalog()
|
2018-09-12 16:07:47 +00:00
|
|
|
|
|
|
|
name, err := c.Agent().NodeName()
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
proxyReg := testUnmanagedProxyRegistration(t)
|
|
|
|
proxyReg.Node = name
|
|
|
|
proxyReg.SkipNodeUpdate = true
|
|
|
|
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2018-09-12 16:07:47 +00:00
|
|
|
// Register a connect proxy to ensure all it's config fields are returned
|
|
|
|
_, err := catalog.Register(proxyReg, nil)
|
|
|
|
r.Check(err)
|
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
info, meta, err := catalog.Node(name, nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if meta.LastIndex == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", meta)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2016-08-16 17:30:30 +00:00
|
|
|
|
2018-09-12 16:07:47 +00:00
|
|
|
if len(info.Services) != 2 {
|
|
|
|
r.Fatalf("Bad: %v (len %d)", info, len(info.Services))
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
|
|
|
|
2016-08-16 17:30:30 +00:00
|
|
|
if _, ok := info.Node.TaggedAddresses["wan"]; !ok {
|
2018-09-12 16:07:47 +00:00
|
|
|
r.Fatalf("Bad: %v", info.Node.TaggedAddresses)
|
2016-08-16 17:30:30 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 12:02:24 +00:00
|
|
|
if info.Node.Datacenter != "dc1" {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad datacenter: %v", info)
|
2017-04-18 12:02:24 +00:00
|
|
|
}
|
2018-09-12 16:07:47 +00:00
|
|
|
|
|
|
|
if _, ok := info.Services["web-proxy1"]; !ok {
|
|
|
|
r.Fatalf("Missing proxy service: %v", info.Services)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(proxyReg.Service.Proxy, info.Services["web-proxy1"].Proxy) {
|
|
|
|
r.Fatalf("Bad proxy config:\nwant %v\n got: %v", proxyReg.Service.Proxy,
|
|
|
|
info.Services["web-proxy"].Proxy)
|
|
|
|
}
|
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_CatalogRegistration(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
|
|
|
catalog := c.Catalog()
|
|
|
|
|
|
|
|
service := &AgentService{
|
|
|
|
ID: "redis1",
|
|
|
|
Service: "redis",
|
|
|
|
Tags: []string{"master", "v1"},
|
|
|
|
Port: 8000,
|
|
|
|
}
|
|
|
|
|
|
|
|
check := &AgentCheck{
|
|
|
|
Node: "foobar",
|
2018-10-29 16:39:25 +00:00
|
|
|
CheckID: "service:redis1-a",
|
2015-01-06 18:40:00 +00:00
|
|
|
Name: "Redis health check",
|
|
|
|
Notes: "Script based health check",
|
2016-04-23 23:01:59 +00:00
|
|
|
Status: HealthPassing,
|
2015-01-06 18:40:00 +00:00
|
|
|
ServiceID: "redis1",
|
|
|
|
}
|
2018-12-12 20:09:42 +00:00
|
|
|
|
2018-10-29 16:39:25 +00:00
|
|
|
checks := HealthChecks{
|
|
|
|
&HealthCheck{
|
|
|
|
Node: "foobar",
|
|
|
|
CheckID: "service:redis1-b",
|
|
|
|
Name: "Redis health check",
|
|
|
|
Notes: "Script based health check",
|
|
|
|
Status: HealthPassing,
|
|
|
|
ServiceID: "redis1",
|
|
|
|
},
|
|
|
|
}
|
2015-01-06 18:40:00 +00:00
|
|
|
|
|
|
|
reg := &CatalogRegistration{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
Node: "foobar",
|
|
|
|
Address: "192.168.10.10",
|
2017-01-11 23:44:13 +00:00
|
|
|
NodeMeta: map[string]string{"somekey": "somevalue"},
|
2015-01-06 18:40:00 +00:00
|
|
|
Service: service,
|
2018-10-29 16:39:25 +00:00
|
|
|
// Specifying both Check and Checks is accepted by Consul
|
|
|
|
Check: check,
|
|
|
|
Checks: checks,
|
2015-01-06 18:40:00 +00:00
|
|
|
}
|
2018-03-26 15:51:43 +00:00
|
|
|
// Register a connect proxy for that service too
|
|
|
|
proxy := &AgentService{
|
2018-09-12 16:07:47 +00:00
|
|
|
ID: "redis-proxy1",
|
|
|
|
Service: "redis-proxy",
|
|
|
|
Port: 8001,
|
|
|
|
Kind: ServiceKindConnectProxy,
|
|
|
|
Proxy: &AgentServiceConnectProxyConfig{
|
|
|
|
DestinationServiceName: service.Service,
|
|
|
|
},
|
2018-03-26 15:51:43 +00:00
|
|
|
}
|
|
|
|
proxyReg := &CatalogRegistration{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
Node: "foobar",
|
|
|
|
Address: "192.168.10.10",
|
|
|
|
NodeMeta: map[string]string{"somekey": "somevalue"},
|
|
|
|
Service: proxy,
|
|
|
|
}
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2015-01-08 02:29:42 +00:00
|
|
|
if _, err := catalog.Register(reg, nil); err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2018-03-26 15:51:43 +00:00
|
|
|
if _, err := catalog.Register(proxyReg, nil); err != nil {
|
|
|
|
r.Fatal(err)
|
|
|
|
}
|
2015-01-06 18:40:00 +00:00
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
node, _, err := catalog.Node("foobar", nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2015-01-06 18:40:00 +00:00
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
if _, ok := node.Services["redis1"]; !ok {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal("missing service: redis1")
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2015-01-06 18:40:00 +00:00
|
|
|
|
2018-03-26 15:51:43 +00:00
|
|
|
if _, ok := node.Services["redis-proxy1"]; !ok {
|
|
|
|
r.Fatal("missing service: redis-proxy1")
|
|
|
|
}
|
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
health, _, err := c.Health().Node("foobar", nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2015-01-06 18:40:00 +00:00
|
|
|
|
2018-10-29 16:39:25 +00:00
|
|
|
if health[0].CheckID != "service:redis1-a" {
|
|
|
|
r.Fatal("missing checkid service:redis1-a")
|
|
|
|
}
|
|
|
|
|
|
|
|
if health[1].CheckID != "service:redis1-b" {
|
|
|
|
r.Fatal("missing checkid service:redis1-b")
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2015-01-06 18:40:00 +00:00
|
|
|
|
2017-01-11 23:44:13 +00:00
|
|
|
if v, ok := node.Node.Meta["somekey"]; !ok || v != "somevalue" {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal("missing node meta pair somekey:somevalue")
|
2017-01-11 23:44:13 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2015-01-06 18:40:00 +00:00
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
// Test catalog deregistration of the previously registered service
|
2015-01-06 18:40:00 +00:00
|
|
|
dereg := &CatalogDeregistration{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
Node: "foobar",
|
|
|
|
Address: "192.168.10.10",
|
|
|
|
ServiceID: "redis1",
|
|
|
|
}
|
|
|
|
|
2018-03-26 15:51:43 +00:00
|
|
|
// ... and proxy
|
|
|
|
deregProxy := &CatalogDeregistration{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
Node: "foobar",
|
|
|
|
Address: "192.168.10.10",
|
|
|
|
ServiceID: "redis-proxy1",
|
|
|
|
}
|
|
|
|
|
2015-01-06 23:26:50 +00:00
|
|
|
if _, err := catalog.Deregister(dereg, nil); err != nil {
|
2015-01-06 18:40:00 +00:00
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2018-03-26 15:51:43 +00:00
|
|
|
if _, err := catalog.Deregister(deregProxy, nil); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2015-01-08 02:29:42 +00:00
|
|
|
node, _, err := catalog.Node("foobar", nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2015-01-06 18:40:00 +00:00
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
if _, ok := node.Services["redis1"]; ok {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal("ServiceID:redis1 is not deregistered")
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2018-03-26 15:51:43 +00:00
|
|
|
|
|
|
|
if _, ok := node.Services["redis-proxy1"]; ok {
|
|
|
|
r.Fatal("ServiceID:redis-proxy1 is not deregistered")
|
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2015-01-06 18:40:00 +00:00
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
// Test deregistration of the previously registered check
|
2015-01-06 18:40:00 +00:00
|
|
|
dereg = &CatalogDeregistration{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
Node: "foobar",
|
|
|
|
Address: "192.168.10.10",
|
2018-10-29 16:39:25 +00:00
|
|
|
CheckID: "service:redis1-a",
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := catalog.Deregister(dereg, nil); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
dereg = &CatalogDeregistration{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
Node: "foobar",
|
|
|
|
Address: "192.168.10.10",
|
|
|
|
CheckID: "service:redis1-b",
|
2015-01-06 18:40:00 +00:00
|
|
|
}
|
|
|
|
|
2015-01-06 23:26:50 +00:00
|
|
|
if _, err := catalog.Deregister(dereg, nil); err != nil {
|
2015-01-06 18:40:00 +00:00
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2015-01-08 02:29:42 +00:00
|
|
|
health, _, err := c.Health().Node("foobar", nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2015-01-06 18:40:00 +00:00
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
if len(health) != 0 {
|
2018-10-29 16:39:25 +00:00
|
|
|
r.Fatal("CheckID:service:redis1-a or CheckID:service:redis1-a is not deregistered")
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2015-01-08 02:29:42 +00:00
|
|
|
|
|
|
|
// Test node deregistration of the previously registered node
|
2015-01-06 18:40:00 +00:00
|
|
|
dereg = &CatalogDeregistration{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
Node: "foobar",
|
|
|
|
Address: "192.168.10.10",
|
|
|
|
}
|
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
if _, err := catalog.Deregister(dereg, nil); err != nil {
|
2015-01-06 18:40:00 +00:00
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2015-01-08 02:29:42 +00:00
|
|
|
node, _, err := catalog.Node("foobar", nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2015-01-06 18:40:00 +00:00
|
|
|
|
2015-01-08 02:29:42 +00:00
|
|
|
if node != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("node is not deregistered: %v", node)
|
2015-01-08 02:29:42 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2015-01-06 18:40:00 +00:00
|
|
|
}
|
2016-02-16 19:45:29 +00:00
|
|
|
|
2017-06-30 21:05:02 +00:00
|
|
|
func TestAPI_CatalogEnableTagOverride(t *testing.T) {
|
2016-02-16 19:45:29 +00:00
|
|
|
t.Parallel()
|
|
|
|
c, s := makeClient(t)
|
|
|
|
defer s.Stop()
|
2018-12-12 20:09:42 +00:00
|
|
|
s.WaitForSerfCheck(t)
|
2016-02-16 19:45:29 +00:00
|
|
|
|
|
|
|
catalog := c.Catalog()
|
|
|
|
|
|
|
|
service := &AgentService{
|
|
|
|
ID: "redis1",
|
|
|
|
Service: "redis",
|
|
|
|
Tags: []string{"master", "v1"},
|
|
|
|
Port: 8000,
|
|
|
|
}
|
|
|
|
|
|
|
|
reg := &CatalogRegistration{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
Node: "foobar",
|
|
|
|
Address: "192.168.10.10",
|
|
|
|
Service: service,
|
|
|
|
}
|
|
|
|
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2016-02-16 19:45:29 +00:00
|
|
|
if _, err := catalog.Register(reg, nil); err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
node, _, err := catalog.Node("foobar", nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := node.Services["redis1"]; !ok {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal("missing service: redis1")
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|
|
|
|
if node.Services["redis1"].EnableTagOverride != false {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal("tag override set")
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
services, _, err := catalog.Service("redis", "", nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(services) < 1 || services[0].ServiceName != "redis" {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal("missing service: redis")
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|
|
|
|
if services[0].ServiceEnableTagOverride != false {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal("tag override set")
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2016-02-16 19:45:29 +00:00
|
|
|
|
|
|
|
service.EnableTagOverride = true
|
2017-04-29 16:34:02 +00:00
|
|
|
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2016-02-16 19:45:29 +00:00
|
|
|
if _, err := catalog.Register(reg, nil); err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
node, _, err := catalog.Node("foobar", nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := node.Services["redis1"]; !ok {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal("missing service: redis1")
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|
|
|
|
if node.Services["redis1"].EnableTagOverride != true {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal("tag override not set")
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
services, _, err := catalog.Service("redis", "", nil)
|
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(services) < 1 || services[0].ServiceName != "redis" {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal("missing service: redis")
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|
|
|
|
if services[0].ServiceEnableTagOverride != true {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal("tag override not set")
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2016-02-16 19:45:29 +00:00
|
|
|
}
|