2020-07-15 15:54:50 +00:00
|
|
|
package state
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
2020-10-28 19:19:24 +00:00
|
|
|
"github.com/google/go-cmp/cmp"
|
|
|
|
"github.com/google/go-cmp/cmp/cmpopts"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
2020-07-15 15:54:50 +00:00
|
|
|
"github.com/hashicorp/consul/agent/consul/stream"
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
|
|
"github.com/hashicorp/consul/api"
|
2020-11-14 00:25:28 +00:00
|
|
|
"github.com/hashicorp/consul/proto/pbcommon"
|
2020-09-08 22:13:24 +00:00
|
|
|
"github.com/hashicorp/consul/proto/pbsubscribe"
|
2020-07-15 15:54:50 +00:00
|
|
|
"github.com/hashicorp/consul/types"
|
|
|
|
)
|
|
|
|
|
2020-11-14 00:25:28 +00:00
|
|
|
func TestServiceHealthSnapshot(t *testing.T) {
|
|
|
|
store := NewStateStore(nil)
|
|
|
|
|
|
|
|
counter := newIndexCounter()
|
|
|
|
err := store.EnsureRegistration(counter.Next(), testServiceRegistration(t, "db"))
|
|
|
|
require.NoError(t, err)
|
|
|
|
err = store.EnsureRegistration(counter.Next(), testServiceRegistration(t, "web"))
|
|
|
|
require.NoError(t, err)
|
|
|
|
err = store.EnsureRegistration(counter.Next(), testServiceRegistration(t, "web", regNode2))
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
fn := serviceHealthSnapshot((*readDB)(store.db.db), topicServiceHealth)
|
|
|
|
buf := &snapshotAppender{}
|
|
|
|
req := stream.SubscribeRequest{Key: "web"}
|
|
|
|
|
|
|
|
idx, err := fn(req, buf)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, counter.Last(), idx)
|
|
|
|
|
|
|
|
expected := [][]stream.Event{
|
|
|
|
{
|
|
|
|
testServiceHealthEvent(t, "web", func(e *stream.Event) error {
|
|
|
|
e.Index = counter.Last()
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
csn.Node.CreateIndex = 1
|
|
|
|
csn.Node.ModifyIndex = 1
|
|
|
|
csn.Service.CreateIndex = 2
|
|
|
|
csn.Service.ModifyIndex = 2
|
|
|
|
csn.Checks[0].CreateIndex = 1
|
|
|
|
csn.Checks[0].ModifyIndex = 1
|
|
|
|
csn.Checks[1].CreateIndex = 2
|
|
|
|
csn.Checks[1].ModifyIndex = 2
|
|
|
|
return nil
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
testServiceHealthEvent(t, "web", evNode2, func(e *stream.Event) error {
|
|
|
|
e.Index = counter.Last()
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
csn.Node.CreateIndex = 3
|
|
|
|
csn.Node.ModifyIndex = 3
|
|
|
|
csn.Service.CreateIndex = 3
|
|
|
|
csn.Service.ModifyIndex = 3
|
|
|
|
for i := range csn.Checks {
|
|
|
|
csn.Checks[i].CreateIndex = 3
|
|
|
|
csn.Checks[i].ModifyIndex = 3
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
assertDeepEqual(t, expected, buf.events, cmpEvents)
|
|
|
|
}
|
|
|
|
|
2020-12-04 21:34:29 +00:00
|
|
|
func TestServiceHealthSnapshot_ConnectTopic(t *testing.T) {
|
|
|
|
store := NewStateStore(nil)
|
|
|
|
|
|
|
|
counter := newIndexCounter()
|
|
|
|
err := store.EnsureRegistration(counter.Next(), testServiceRegistration(t, "db"))
|
|
|
|
require.NoError(t, err)
|
|
|
|
err = store.EnsureRegistration(counter.Next(), testServiceRegistration(t, "web"))
|
|
|
|
require.NoError(t, err)
|
|
|
|
err = store.EnsureRegistration(counter.Next(), testServiceRegistration(t, "web", regSidecar))
|
|
|
|
require.NoError(t, err)
|
|
|
|
err = store.EnsureRegistration(counter.Next(), testServiceRegistration(t, "web", regNode2))
|
|
|
|
require.NoError(t, err)
|
|
|
|
err = store.EnsureRegistration(counter.Next(), testServiceRegistration(t, "web", regNode2, regSidecar))
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
2021-02-27 00:39:05 +00:00
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "web",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
|
|
|
err = store.EnsureConfigEntry(counter.Next(), configEntry)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
err = store.EnsureRegistration(counter.Next(), testServiceRegistration(t, "tgate1", regTerminatingGateway))
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
2020-12-04 21:34:29 +00:00
|
|
|
fn := serviceHealthSnapshot((*readDB)(store.db.db), topicServiceHealthConnect)
|
|
|
|
buf := &snapshotAppender{}
|
|
|
|
req := stream.SubscribeRequest{Key: "web", Topic: topicServiceHealthConnect}
|
|
|
|
|
|
|
|
idx, err := fn(req, buf)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, counter.Last(), idx)
|
|
|
|
|
|
|
|
expected := [][]stream.Event{
|
|
|
|
{
|
2021-02-27 00:39:05 +00:00
|
|
|
testServiceHealthEvent(t, "web", evConnectTopic, evSidecar, func(e *stream.Event) error {
|
2020-12-04 21:34:29 +00:00
|
|
|
e.Index = counter.Last()
|
|
|
|
ep := e.Payload.(EventPayloadCheckServiceNode)
|
|
|
|
e.Payload = ep
|
|
|
|
csn := ep.Value
|
|
|
|
csn.Node.CreateIndex = 1
|
|
|
|
csn.Node.ModifyIndex = 1
|
|
|
|
csn.Service.CreateIndex = 3
|
|
|
|
csn.Service.ModifyIndex = 3
|
|
|
|
csn.Checks[0].CreateIndex = 1
|
|
|
|
csn.Checks[0].ModifyIndex = 1
|
|
|
|
csn.Checks[1].CreateIndex = 3
|
|
|
|
csn.Checks[1].ModifyIndex = 3
|
|
|
|
return nil
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
2021-02-27 00:39:05 +00:00
|
|
|
testServiceHealthEvent(t, "web", evConnectTopic, evNode2, evSidecar, func(e *stream.Event) error {
|
2020-12-04 21:34:29 +00:00
|
|
|
e.Index = counter.Last()
|
|
|
|
ep := e.Payload.(EventPayloadCheckServiceNode)
|
|
|
|
e.Payload = ep
|
|
|
|
csn := ep.Value
|
|
|
|
csn.Node.CreateIndex = 4
|
|
|
|
csn.Node.ModifyIndex = 4
|
|
|
|
csn.Service.CreateIndex = 5
|
|
|
|
csn.Service.ModifyIndex = 5
|
|
|
|
csn.Checks[0].CreateIndex = 4
|
|
|
|
csn.Checks[0].ModifyIndex = 4
|
|
|
|
csn.Checks[1].CreateIndex = 5
|
|
|
|
csn.Checks[1].ModifyIndex = 5
|
|
|
|
return nil
|
|
|
|
}),
|
|
|
|
},
|
2021-02-27 00:39:05 +00:00
|
|
|
{
|
|
|
|
testServiceHealthEvent(t, "tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("web"),
|
|
|
|
func(e *stream.Event) error {
|
|
|
|
e.Index = counter.Last()
|
|
|
|
ep := e.Payload.(EventPayloadCheckServiceNode)
|
|
|
|
e.Payload = ep
|
|
|
|
csn := ep.Value
|
|
|
|
csn.Node.CreateIndex = 1
|
|
|
|
csn.Node.ModifyIndex = 1
|
|
|
|
csn.Service.CreateIndex = 7
|
|
|
|
csn.Service.ModifyIndex = 7
|
|
|
|
csn.Checks[0].CreateIndex = 1
|
|
|
|
csn.Checks[0].ModifyIndex = 1
|
|
|
|
csn.Checks[1].CreateIndex = 7
|
|
|
|
csn.Checks[1].ModifyIndex = 7
|
|
|
|
return nil
|
|
|
|
}),
|
|
|
|
},
|
2020-12-04 21:34:29 +00:00
|
|
|
}
|
|
|
|
assertDeepEqual(t, expected, buf.events, cmpEvents)
|
|
|
|
}
|
|
|
|
|
2020-11-14 00:25:28 +00:00
|
|
|
type snapshotAppender struct {
|
|
|
|
events [][]stream.Event
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *snapshotAppender) Append(events []stream.Event) {
|
|
|
|
s.events = append(s.events, events)
|
|
|
|
}
|
|
|
|
|
|
|
|
type indexCounter struct {
|
|
|
|
value uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *indexCounter) Next() uint64 {
|
|
|
|
c.value++
|
|
|
|
return c.value
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *indexCounter) Last() uint64 {
|
|
|
|
return c.value
|
|
|
|
}
|
|
|
|
|
|
|
|
func newIndexCounter() *indexCounter {
|
|
|
|
return &indexCounter{}
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ stream.SnapshotAppender = (*snapshotAppender)(nil)
|
|
|
|
|
2021-01-29 20:40:07 +00:00
|
|
|
type serviceHealthTestCase struct {
|
|
|
|
Name string
|
|
|
|
Setup func(s *Store, tx *txn) error
|
|
|
|
Mutate func(s *Store, tx *txn) error
|
|
|
|
WantEvents []stream.Event
|
|
|
|
WantErr bool
|
|
|
|
}
|
|
|
|
|
2020-07-15 15:54:50 +00:00
|
|
|
func TestServiceHealthEventsFromChanges(t *testing.T) {
|
2021-01-11 22:12:51 +00:00
|
|
|
setupIndex := uint64(10)
|
|
|
|
mutateIndex := uint64(100)
|
|
|
|
|
2021-01-29 20:40:07 +00:00
|
|
|
cases := []serviceHealthTestCase{
|
2020-07-15 15:54:50 +00:00
|
|
|
{
|
|
|
|
Name: "irrelevant events",
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
return kvsSetTxn(tx, tx.Index, &structs.DirEntry{
|
|
|
|
Key: "foo",
|
|
|
|
Value: []byte("bar"),
|
|
|
|
}, false)
|
|
|
|
},
|
|
|
|
WantEvents: nil,
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "service reg, new node",
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthEvent(t, "web"),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "service reg, existing node",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db"), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// Should only publish new service
|
|
|
|
testServiceHealthEvent(t, "web", evNodeUnchanged),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "service dereg, existing node",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
return s.deleteServiceTxn(tx, tx.Index, "node1", "web", nil)
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// Should only publish deregistration for that service
|
|
|
|
testServiceHealthDeregistrationEvent(t, "web"),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "node dereg",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
2020-11-11 16:21:42 +00:00
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false, testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-11-11 16:21:42 +00:00
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false, testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
return s.deleteNodeTxn(tx, tx.Index, "node1")
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// Should publish deregistration events for all services
|
|
|
|
testServiceHealthDeregistrationEvent(t, "db"),
|
|
|
|
testServiceHealthDeregistrationEvent(t, "web"),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "connect native reg, new node",
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
2020-11-11 16:21:42 +00:00
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false, testServiceRegistration(t, "web", regConnectNative), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// We should see both a regular service health event as well as a connect
|
|
|
|
// one.
|
|
|
|
testServiceHealthEvent(t, "web", evConnectNative),
|
|
|
|
testServiceHealthEvent(t, "web", evConnectNative, evConnectTopic),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "connect native reg, existing node",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
2020-11-11 16:21:42 +00:00
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false, testServiceRegistration(t, "db"), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
2020-11-11 16:21:42 +00:00
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false, testServiceRegistration(t, "web", regConnectNative), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// We should see both a regular service health event as well as a connect
|
|
|
|
// one.
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evNodeUnchanged,
|
|
|
|
evConnectNative),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evNodeUnchanged,
|
|
|
|
evConnectNative,
|
|
|
|
evConnectTopic),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "connect native dereg, existing node",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
2020-11-11 16:21:42 +00:00
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false, testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-11-11 16:21:42 +00:00
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false, testServiceRegistration(t, "web", regConnectNative), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
return s.deleteServiceTxn(tx, tx.Index, "node1", "web", nil)
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// We should see both a regular service dereg event and a connect one
|
|
|
|
testServiceHealthDeregistrationEvent(t, "web", evConnectNative),
|
|
|
|
testServiceHealthDeregistrationEvent(t, "web", evConnectNative, evConnectTopic),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "connect sidecar reg, new node",
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
2020-11-11 16:21:42 +00:00
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false, testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-11-11 16:21:42 +00:00
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false, testServiceRegistration(t, "web", regSidecar), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// We should see both a regular service health event for the web service
|
|
|
|
// another for the sidecar service and a connect event for web.
|
|
|
|
testServiceHealthEvent(t, "web"),
|
|
|
|
testServiceHealthEvent(t, "web", evSidecar),
|
|
|
|
testServiceHealthEvent(t, "web", evConnectTopic, evSidecar),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "connect sidecar reg, existing node",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// We should see both a regular service health event for the proxy
|
|
|
|
// service and a connect one for the target service.
|
|
|
|
testServiceHealthEvent(t, "web", evSidecar, evNodeUnchanged),
|
|
|
|
testServiceHealthEvent(t, "web", evConnectTopic, evSidecar, evNodeUnchanged),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "connect sidecar dereg, existing node",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
// Delete only the sidecar
|
|
|
|
return s.deleteServiceTxn(tx, tx.Index, "node1", "web_sidecar_proxy", nil)
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// We should see both a regular service dereg event and a connect one
|
|
|
|
testServiceHealthDeregistrationEvent(t, "web", evSidecar),
|
|
|
|
testServiceHealthDeregistrationEvent(t, "web", evConnectTopic, evSidecar),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "connect sidecar mutate svc",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
// Change port of the target service instance
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regMutatePort), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// We should see the service topic update but not connect since proxy
|
|
|
|
// details didn't change.
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evMutatePort,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceMutated,
|
|
|
|
evChecksUnchanged,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "connect sidecar mutate sidecar",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
// Change port of the sidecar service instance
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar, regMutatePort), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// We should see the proxy service topic update and a connect update
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evSidecar,
|
|
|
|
evMutatePort,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceMutated,
|
|
|
|
evChecksUnchanged),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evConnectTopic,
|
|
|
|
evSidecar,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evMutatePort,
|
|
|
|
evServiceMutated,
|
|
|
|
evChecksUnchanged),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "connect sidecar rename service",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
// Change service name but not ID, update proxy too
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regRenameService), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar, regRenameService), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// We should see events to deregister the old service instance and the
|
|
|
|
// old connect instance since we changed topic key for both. Then new
|
|
|
|
// service and connect registrations. The proxy instance should also
|
|
|
|
// change since it's not proxying a different service.
|
|
|
|
testServiceHealthDeregistrationEvent(t, "web"),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evRenameService,
|
|
|
|
evServiceMutated,
|
|
|
|
evNodeUnchanged,
|
2021-01-29 20:06:41 +00:00
|
|
|
evServiceChecksMutated,
|
2020-07-15 15:54:50 +00:00
|
|
|
),
|
|
|
|
testServiceHealthDeregistrationEvent(t, "web",
|
|
|
|
evConnectTopic,
|
|
|
|
evSidecar,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evSidecar,
|
|
|
|
evRenameService,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceMutated,
|
|
|
|
evChecksUnchanged,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evConnectTopic,
|
|
|
|
evSidecar,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evRenameService,
|
|
|
|
evServiceMutated,
|
|
|
|
evChecksUnchanged,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "connect sidecar change destination service",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
// Register a web_changed service
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web_changed"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Also a web
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// And a sidecar initially for web, will be moved to target web_changed
|
|
|
|
// in Mutate.
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
// Change only the destination service of the proxy without a service
|
|
|
|
// rename or deleting and recreating the proxy. This is far fetched but
|
|
|
|
// still valid.
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar, regRenameService), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// We should only see service health events for the sidecar service
|
|
|
|
// since the actual target services didn't change. But also should see
|
|
|
|
// Connect topic dereg for the old name to update existing subscribers
|
|
|
|
// for Connect/web.
|
|
|
|
testServiceHealthDeregistrationEvent(t, "web",
|
|
|
|
evConnectTopic,
|
|
|
|
evSidecar,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evSidecar,
|
|
|
|
evRenameService,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceMutated,
|
|
|
|
evChecksUnchanged,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evConnectTopic,
|
|
|
|
evSidecar,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evRenameService,
|
|
|
|
evServiceMutated,
|
|
|
|
evChecksUnchanged,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "multi-service node update",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
// Register a db service
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Also a web
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// With a connect sidecar
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
// Change only the node meta.
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testNodeRegistration(t, regNodeMeta), false)
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// We should see updates for all services and a connect update for the
|
|
|
|
// sidecar's destination.
|
|
|
|
testServiceHealthEvent(t, "db",
|
|
|
|
evNodeMeta,
|
|
|
|
evNodeMutated,
|
|
|
|
evServiceUnchanged,
|
|
|
|
evChecksUnchanged,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evNodeMeta,
|
|
|
|
evNodeMutated,
|
|
|
|
evServiceUnchanged,
|
|
|
|
evChecksUnchanged,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evSidecar,
|
|
|
|
evNodeMeta,
|
|
|
|
evNodeMutated,
|
|
|
|
evServiceUnchanged,
|
|
|
|
evChecksUnchanged,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evConnectTopic,
|
|
|
|
evSidecar,
|
|
|
|
evNodeMeta,
|
|
|
|
evNodeMutated,
|
|
|
|
evServiceUnchanged,
|
|
|
|
evChecksUnchanged,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "multi-service node rename",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
// Register a db service
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Also a web
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// With a connect sidecar
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
// Change only the node NAME but not it's ID. We do it for every service
|
|
|
|
// though since this is effectively what client agent anti-entropy would
|
|
|
|
// do on a node rename. If we only rename the node it will have no
|
|
|
|
// services registered afterwards.
|
|
|
|
// Register a db service
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db", regRenameNode), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Also a web
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regRenameNode), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// With a connect sidecar
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar, regRenameNode), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// Node rename is implemented internally as a node delete and new node
|
|
|
|
// insert after some renaming validation. So we should see full set of
|
|
|
|
// new events for health, then the deletions of old services, then the
|
|
|
|
// connect update and delete pair.
|
|
|
|
testServiceHealthEvent(t, "db",
|
|
|
|
evRenameNode,
|
|
|
|
// Although we delete and re-insert, we do maintain the CreatedIndex
|
|
|
|
// of the node record from the old one.
|
|
|
|
evNodeMutated,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evRenameNode,
|
|
|
|
evNodeMutated,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evSidecar,
|
|
|
|
evRenameNode,
|
|
|
|
evNodeMutated,
|
|
|
|
),
|
|
|
|
// dereg events for old node name services
|
|
|
|
testServiceHealthDeregistrationEvent(t, "db"),
|
|
|
|
testServiceHealthDeregistrationEvent(t, "web"),
|
|
|
|
testServiceHealthDeregistrationEvent(t, "web", evSidecar),
|
|
|
|
// Connect topic updates are last due to the way we add them
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evConnectTopic,
|
|
|
|
evSidecar,
|
|
|
|
evRenameNode,
|
|
|
|
evNodeMutated,
|
|
|
|
),
|
|
|
|
testServiceHealthDeregistrationEvent(t, "web", evConnectTopic, evSidecar),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "multi-service node check failure",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
// Register a db service
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Also a web
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// With a connect sidecar
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
// Change only the node-level check status
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regNodeCheckFail), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthEvent(t, "db",
|
|
|
|
evNodeCheckFail,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceUnchanged,
|
|
|
|
// Only the node check changed. This needs to come after evNodeUnchanged
|
|
|
|
evNodeChecksMutated,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evNodeCheckFail,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceUnchanged,
|
|
|
|
evNodeChecksMutated,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evSidecar,
|
|
|
|
evNodeCheckFail,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceUnchanged,
|
|
|
|
evNodeChecksMutated,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evConnectTopic,
|
|
|
|
evSidecar,
|
|
|
|
evNodeCheckFail,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceUnchanged,
|
|
|
|
evNodeChecksMutated,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "multi-service node service check failure",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
// Register a db service
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Also a web
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// With a connect sidecar
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
// Change the service-level check status
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regServiceCheckFail), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Also change the service-level check status for the proxy. This is
|
|
|
|
// analogous to what would happen with an alias check on the client side
|
|
|
|
// - the proxies check would get updated at roughly the same time as the
|
|
|
|
// target service check updates.
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar, regServiceCheckFail), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// Should only see the events for that one service change, the sidecar
|
|
|
|
// service and hence the connect topic for that service.
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evServiceCheckFail,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceUnchanged,
|
2021-01-29 20:06:41 +00:00
|
|
|
evServiceChecksMutated,
|
2020-07-15 15:54:50 +00:00
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evSidecar,
|
|
|
|
evServiceCheckFail,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceUnchanged,
|
2021-01-29 20:06:41 +00:00
|
|
|
evServiceChecksMutated,
|
2020-07-15 15:54:50 +00:00
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evConnectTopic,
|
|
|
|
evSidecar,
|
|
|
|
evServiceCheckFail,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceUnchanged,
|
2021-01-29 20:06:41 +00:00
|
|
|
evServiceChecksMutated,
|
2020-07-15 15:54:50 +00:00
|
|
|
),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "multi-service node node-level check delete",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
// Register a db service
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Also a web
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// With a connect sidecar
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
// Delete only the node-level check
|
|
|
|
if err := s.deleteCheckTxn(tx, tx.Index, "node1", "serf-health", nil); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthEvent(t, "db",
|
|
|
|
evNodeCheckDelete,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceUnchanged,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evNodeCheckDelete,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceUnchanged,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evSidecar,
|
|
|
|
evNodeCheckDelete,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceUnchanged,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evConnectTopic,
|
|
|
|
evSidecar,
|
|
|
|
evNodeCheckDelete,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceUnchanged,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "multi-service node service check delete",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
// Register a db service
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Also a web
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// With a connect sidecar
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
// Delete the service-level check for the main service
|
|
|
|
if err := s.deleteCheckTxn(tx, tx.Index, "node1", "service:web", nil); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Also delete for a proxy
|
|
|
|
if err := s.deleteCheckTxn(tx, tx.Index, "node1", "service:web_sidecar_proxy", nil); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// Should only see the events for that one service change, the sidecar
|
|
|
|
// service and hence the connect topic for that service.
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evServiceCheckFail,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceUnchanged,
|
|
|
|
evServiceCheckDelete,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evSidecar,
|
|
|
|
evServiceCheckFail,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceUnchanged,
|
|
|
|
evServiceCheckDelete,
|
|
|
|
),
|
|
|
|
testServiceHealthEvent(t, "web",
|
|
|
|
evConnectTopic,
|
|
|
|
evSidecar,
|
|
|
|
evServiceCheckFail,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceUnchanged,
|
|
|
|
evServiceCheckDelete,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
WantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "many services on many nodes in one TX",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
// Node1
|
|
|
|
|
|
|
|
// Register a db service
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "db"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Node2
|
|
|
|
// Also a web
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regNode2), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// With a connect sidecar
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar, regNode2), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
// In one transaction the operator moves the web service and it's
|
|
|
|
// sidecar from node2 back to node1 and deletes them from node2
|
|
|
|
|
|
|
|
if err := s.deleteServiceTxn(tx, tx.Index, "node2", "web", nil); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := s.deleteServiceTxn(tx, tx.Index, "node2", "web_sidecar_proxy", nil); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register those on node1
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web"), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "web", regSidecar), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// And for good measure, add a new connect-native service to node2
|
|
|
|
if err := s.ensureRegistrationTxn(tx, tx.Index, false,
|
2020-11-11 16:21:42 +00:00
|
|
|
testServiceRegistration(t, "api", regConnectNative, regNode2), false); err != nil {
|
2020-07-15 15:54:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
2020-10-27 18:40:06 +00:00
|
|
|
|
2020-07-15 15:54:50 +00:00
|
|
|
WantEvents: []stream.Event{
|
|
|
|
// We should see:
|
|
|
|
// - service dereg for web and proxy on node2
|
|
|
|
// - connect dereg for web on node2
|
|
|
|
// - service reg for web and proxy on node1
|
|
|
|
// - connect reg for web on node1
|
|
|
|
// - service reg for api on node2
|
|
|
|
// - connect reg for api on node2
|
|
|
|
testServiceHealthDeregistrationEvent(t, "web", evNode2),
|
|
|
|
testServiceHealthDeregistrationEvent(t, "web", evNode2, evSidecar),
|
2020-10-27 18:40:06 +00:00
|
|
|
testServiceHealthDeregistrationEvent(t, "web", evConnectTopic, evNode2, evSidecar),
|
2020-07-15 15:54:50 +00:00
|
|
|
|
|
|
|
testServiceHealthEvent(t, "web", evNodeUnchanged),
|
|
|
|
testServiceHealthEvent(t, "web", evSidecar, evNodeUnchanged),
|
|
|
|
testServiceHealthEvent(t, "web", evConnectTopic, evSidecar, evNodeUnchanged),
|
|
|
|
|
2020-10-27 18:40:06 +00:00
|
|
|
testServiceHealthEvent(t, "api", evNode2, evConnectNative, evNodeUnchanged),
|
|
|
|
testServiceHealthEvent(t, "api", evNode2, evConnectTopic, evConnectNative, evNodeUnchanged),
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
},
|
2020-12-17 22:46:24 +00:00
|
|
|
{
|
|
|
|
Name: "terminating gateway registered with no config entry",
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway), false)
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evServiceTermingGateway("tgate1")),
|
|
|
|
},
|
|
|
|
},
|
2021-01-26 22:23:02 +00:00
|
|
|
{
|
|
|
|
Name: "config entry created with no terminating gateway instance",
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
return ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-26 22:23:02 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{},
|
|
|
|
},
|
2020-12-17 22:46:24 +00:00
|
|
|
{
|
|
|
|
Name: "terminating gateway registered after config entry exists",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "srv2",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
return ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2020-12-17 22:46:24 +00:00
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
2021-01-20 20:10:48 +00:00
|
|
|
if err := s.ensureRegistrationTxn(
|
|
|
|
tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway), false,
|
|
|
|
); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(
|
|
|
|
tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway, regNode2), false)
|
2020-12-17 22:46:24 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evServiceTermingGateway("tgate1")),
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv1")),
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv2")),
|
2021-01-20 20:10:48 +00:00
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evServiceTermingGateway("tgate1"),
|
|
|
|
evNode2),
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv1"),
|
|
|
|
evNode2),
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv2"),
|
|
|
|
evNode2),
|
2020-12-17 22:46:24 +00:00
|
|
|
},
|
|
|
|
},
|
2021-01-26 22:23:02 +00:00
|
|
|
{
|
|
|
|
Name: "terminating gateway updated after config entry exists",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "srv2",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
err := ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-26 22:23:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(
|
|
|
|
tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway), false)
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
return s.ensureRegistrationTxn(
|
|
|
|
tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway, regNodeCheckFail), false)
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evServiceTermingGateway("tgate1"),
|
|
|
|
evNodeCheckFail,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evNodeChecksMutated,
|
|
|
|
evServiceUnchanged),
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv1"),
|
|
|
|
evNodeCheckFail,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evNodeChecksMutated,
|
|
|
|
evServiceUnchanged),
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv2"),
|
|
|
|
evNodeCheckFail,
|
|
|
|
evNodeUnchanged,
|
|
|
|
evNodeChecksMutated,
|
|
|
|
evServiceUnchanged),
|
|
|
|
},
|
|
|
|
},
|
2021-01-11 22:12:51 +00:00
|
|
|
{
|
|
|
|
Name: "terminating gateway config entry created after gateway exists",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway), false)
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "srv2",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
return ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-11 22:12:51 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv1"),
|
|
|
|
evServiceIndex(setupIndex)),
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv2"),
|
|
|
|
evServiceIndex(setupIndex)),
|
|
|
|
},
|
|
|
|
},
|
2021-01-20 20:10:48 +00:00
|
|
|
{
|
|
|
|
Name: "change the terminating gateway config entry to add a linked service",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
err := ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-20 20:10:48 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway), false)
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "srv2",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
return ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-20 20:10:48 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv2"),
|
|
|
|
evServiceIndex(setupIndex)),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "change the terminating gateway config entry to remove a linked service",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "srv2",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
err := ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-20 20:10:48 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway), false)
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv2",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
return ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-20 20:10:48 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthDeregistrationEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv1")),
|
|
|
|
},
|
|
|
|
},
|
2021-01-26 22:23:02 +00:00
|
|
|
{
|
|
|
|
Name: "update a linked service within a terminating gateway config entry",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
err := ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-26 22:23:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway), false)
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
CAFile: "foo.crt",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
return ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-26 22:23:02 +00:00
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthDeregistrationEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv1")),
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv1"),
|
|
|
|
evServiceIndex(setupIndex)),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "delete a terminating gateway config entry with a linked service",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
err := ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-26 22:23:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = s.ensureRegistrationTxn(tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway), false)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(
|
|
|
|
tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway, regNode2), false)
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
return deleteConfigEntryTxn(tx, tx.Index, structs.TerminatingGateway, "tgate1", structs.DefaultEnterpriseMeta())
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthDeregistrationEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv1")),
|
|
|
|
testServiceHealthDeregistrationEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv1"),
|
|
|
|
evNode2),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "create an instance of a linked service in a terminating gateway",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
err := ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-26 22:23:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway), false)
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false, testServiceRegistration(t, "srv1"), false)
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthEvent(t, "srv1", evNodeUnchanged),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "delete an instance of a linked service in a terminating gateway",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
err := ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-26 22:23:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = s.ensureRegistrationTxn(tx, tx.Index, false, testServiceRegistration(t, "srv1"), false)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway), false)
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
return s.deleteServiceTxn(tx, tx.Index, "node1", "srv1", nil)
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthDeregistrationEvent(t, "srv1"),
|
|
|
|
},
|
|
|
|
},
|
2021-01-29 20:06:41 +00:00
|
|
|
{
|
|
|
|
Name: "rename a terminating gateway instance",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
err := ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-29 20:06:41 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
configEntry = &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate2",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
err = ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-29 20:06:41 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway), false)
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
rename := func(req *structs.RegisterRequest) error {
|
|
|
|
req.Service.Service = "tgate2"
|
|
|
|
req.Checks[1].ServiceName = "tgate2"
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway, rename), false)
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthDeregistrationEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evServiceTermingGateway("tgate1")),
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evServiceTermingGateway(""),
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceMutated,
|
|
|
|
evServiceChecksMutated,
|
|
|
|
evTerminatingGatewayRenamed("tgate2")),
|
|
|
|
testServiceHealthDeregistrationEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv1")),
|
|
|
|
testServiceHealthEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv1"),
|
|
|
|
evNodeUnchanged,
|
|
|
|
evServiceMutated,
|
|
|
|
evServiceChecksMutated,
|
|
|
|
evTerminatingGatewayRenamed("tgate2")),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "delete a terminating gateway instance",
|
|
|
|
Setup: func(s *Store, tx *txn) error {
|
|
|
|
configEntry := &structs.TerminatingGatewayConfigEntry{
|
|
|
|
Kind: structs.TerminatingGateway,
|
|
|
|
Name: "tgate1",
|
|
|
|
Services: []structs.LinkedService{
|
|
|
|
{
|
|
|
|
Name: "srv1",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "srv2",
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
|
|
|
}
|
2021-02-26 18:34:14 +00:00
|
|
|
err := ensureConfigEntryTxn(tx, tx.Index, configEntry)
|
2021-01-29 20:06:41 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.ensureRegistrationTxn(tx, tx.Index, false,
|
|
|
|
testServiceRegistration(t, "tgate1", regTerminatingGateway), false)
|
|
|
|
},
|
|
|
|
Mutate: func(s *Store, tx *txn) error {
|
|
|
|
return s.deleteServiceTxn(tx, tx.Index, "node1", "tgate1", structs.DefaultEnterpriseMeta())
|
|
|
|
},
|
|
|
|
WantEvents: []stream.Event{
|
|
|
|
testServiceHealthDeregistrationEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evServiceTermingGateway("")),
|
|
|
|
testServiceHealthDeregistrationEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv1")),
|
|
|
|
testServiceHealthDeregistrationEvent(t,
|
|
|
|
"tgate1",
|
|
|
|
evConnectTopic,
|
|
|
|
evServiceTermingGateway("srv2")),
|
|
|
|
},
|
|
|
|
},
|
2020-07-15 15:54:50 +00:00
|
|
|
}
|
2021-01-29 20:40:07 +00:00
|
|
|
cases = withServiceHealthEnterpriseCases(cases)
|
2020-07-15 15:54:50 +00:00
|
|
|
|
|
|
|
for _, tc := range cases {
|
|
|
|
tc := tc
|
|
|
|
t.Run(tc.Name, func(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
if tc.Setup != nil {
|
|
|
|
// Bypass the publish mechanism for this test or we get into odd
|
|
|
|
// recursive stuff...
|
2021-01-11 22:12:51 +00:00
|
|
|
setupTx := s.db.WriteTxn(setupIndex)
|
2020-07-15 15:54:50 +00:00
|
|
|
require.NoError(t, tc.Setup(s, setupTx))
|
|
|
|
// Commit the underlying transaction without using wrapped Commit so we
|
|
|
|
// avoid the whole event publishing system for setup here. It _should_
|
|
|
|
// work but it makes debugging test hard as it will call the function
|
|
|
|
// under test for the setup data...
|
|
|
|
setupTx.Txn.Commit()
|
|
|
|
}
|
|
|
|
|
2021-01-11 22:12:51 +00:00
|
|
|
tx := s.db.WriteTxn(mutateIndex)
|
2020-07-15 15:54:50 +00:00
|
|
|
require.NoError(t, tc.Mutate(s, tx))
|
|
|
|
|
|
|
|
// Note we call the func under test directly rather than publishChanges so
|
|
|
|
// we can test this in isolation.
|
|
|
|
got, err := ServiceHealthEventsFromChanges(tx, Changes{Changes: tx.Changes(), Index: 100})
|
|
|
|
if tc.WantErr {
|
|
|
|
require.Error(t, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
2021-01-20 20:10:48 +00:00
|
|
|
assertDeepEqual(t, tc.WantEvents, got, cmpPartialOrderEvents, cmpopts.EquateEmpty())
|
2020-07-15 15:54:50 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-17 22:46:24 +00:00
|
|
|
func regTerminatingGateway(req *structs.RegisterRequest) error {
|
|
|
|
req.Service.Kind = structs.ServiceKindTerminatingGateway
|
|
|
|
req.Service.Port = 22000
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func evServiceTermingGateway(name string) func(e *stream.Event) error {
|
|
|
|
return func(e *stream.Event) error {
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
|
|
|
|
csn.Service.Kind = structs.ServiceKindTerminatingGateway
|
|
|
|
csn.Service.Port = 22000
|
|
|
|
|
|
|
|
if e.Topic == topicServiceHealthConnect {
|
|
|
|
payload := e.Payload.(EventPayloadCheckServiceNode)
|
2021-01-29 20:40:07 +00:00
|
|
|
payload.overrideKey = name
|
2020-12-17 22:46:24 +00:00
|
|
|
e.Payload = payload
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-11 22:12:51 +00:00
|
|
|
func evServiceIndex(idx uint64) func(e *stream.Event) error {
|
|
|
|
return func(e *stream.Event) error {
|
|
|
|
payload := e.Payload.(EventPayloadCheckServiceNode)
|
|
|
|
payload.Value.Node.CreateIndex = idx
|
|
|
|
payload.Value.Node.ModifyIndex = idx
|
|
|
|
payload.Value.Service.CreateIndex = idx
|
|
|
|
payload.Value.Service.ModifyIndex = idx
|
|
|
|
for _, check := range payload.Value.Checks {
|
|
|
|
check.CreateIndex = idx
|
|
|
|
check.ModifyIndex = idx
|
|
|
|
}
|
|
|
|
e.Payload = payload
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-28 19:19:24 +00:00
|
|
|
func assertDeepEqual(t *testing.T, x, y interface{}, opts ...cmp.Option) {
|
|
|
|
t.Helper()
|
|
|
|
if diff := cmp.Diff(x, y, opts...); diff != "" {
|
|
|
|
t.Fatalf("assertion failed: values are not equal\n--- expected\n+++ actual\n%v", diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// cmpPartialOrderEvents returns a compare option which sorts events so that
|
2021-03-09 19:00:29 +00:00
|
|
|
// all events for a particular topic are grouped together. The sort is
|
|
|
|
// stable so events with the same key retain their relative order.
|
|
|
|
//
|
|
|
|
// This sort should match the logic in EventPayloadCheckServiceNode.MatchesKey
|
|
|
|
// to avoid masking bugs.
|
2020-10-28 19:19:24 +00:00
|
|
|
var cmpPartialOrderEvents = cmp.Options{
|
|
|
|
cmpopts.SortSlices(func(i, j stream.Event) bool {
|
|
|
|
key := func(e stream.Event) string {
|
2021-03-09 19:00:29 +00:00
|
|
|
payload := e.Payload.(EventPayloadCheckServiceNode)
|
|
|
|
csn := payload.Value
|
|
|
|
|
|
|
|
name := csn.Service.Service
|
|
|
|
if payload.overrideKey != "" {
|
|
|
|
name = payload.overrideKey
|
|
|
|
}
|
2021-02-22 17:50:52 +00:00
|
|
|
ns := csn.Service.EnterpriseMeta.NamespaceOrDefault()
|
2021-03-09 19:00:29 +00:00
|
|
|
if payload.overrideNamespace != "" {
|
|
|
|
ns = payload.overrideNamespace
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%s/%s/%s/%s", e.Topic, csn.Node.Node, ns, name)
|
2020-10-28 19:19:24 +00:00
|
|
|
}
|
|
|
|
return key(i) < key(j)
|
|
|
|
}),
|
|
|
|
cmpEvents,
|
|
|
|
}
|
|
|
|
|
|
|
|
var cmpEvents = cmp.Options{
|
|
|
|
cmp.AllowUnexported(EventPayloadCheckServiceNode{}),
|
|
|
|
}
|
|
|
|
|
2020-07-15 15:54:50 +00:00
|
|
|
type regOption func(req *structs.RegisterRequest) error
|
|
|
|
|
|
|
|
func testNodeRegistration(t *testing.T, opts ...regOption) *structs.RegisterRequest {
|
|
|
|
r := &structs.RegisterRequest{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
ID: "11111111-2222-3333-4444-555555555555",
|
|
|
|
Node: "node1",
|
|
|
|
Address: "10.10.10.10",
|
|
|
|
Checks: structs.HealthChecks{
|
|
|
|
&structs.HealthCheck{
|
|
|
|
CheckID: "serf-health",
|
|
|
|
Name: "serf-health",
|
|
|
|
Node: "node1",
|
|
|
|
Status: api.HealthPassing,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, opt := range opts {
|
|
|
|
err := opt(r)
|
|
|
|
require.NoError(t, err)
|
|
|
|
}
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
func testServiceRegistration(t *testing.T, svc string, opts ...regOption) *structs.RegisterRequest {
|
|
|
|
// note: don't pass opts or they might get applied twice!
|
|
|
|
r := testNodeRegistration(t)
|
|
|
|
r.Service = &structs.NodeService{
|
|
|
|
ID: svc,
|
|
|
|
Service: svc,
|
|
|
|
Port: 8080,
|
|
|
|
}
|
|
|
|
r.Checks = append(r.Checks,
|
|
|
|
&structs.HealthCheck{
|
|
|
|
CheckID: types.CheckID("service:" + svc),
|
|
|
|
Name: "service:" + svc,
|
|
|
|
Node: "node1",
|
|
|
|
ServiceID: svc,
|
|
|
|
ServiceName: svc,
|
|
|
|
Type: "ttl",
|
|
|
|
Status: api.HealthPassing,
|
|
|
|
})
|
|
|
|
for _, opt := range opts {
|
|
|
|
err := opt(r)
|
2021-02-03 20:49:14 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("expected no error, got %v", err)
|
|
|
|
}
|
2020-07-15 15:54:50 +00:00
|
|
|
}
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
type eventOption func(e *stream.Event) error
|
|
|
|
|
|
|
|
func testServiceHealthEvent(t *testing.T, svc string, opts ...eventOption) stream.Event {
|
|
|
|
e := newTestEventServiceHealthRegister(100, 1, svc)
|
|
|
|
|
|
|
|
// Normalize a few things that are different in the generic event which was
|
|
|
|
// based on original code here but made more general. This means we don't have
|
|
|
|
// to change all the test loads...
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
csn.Node.ID = "11111111-2222-3333-4444-555555555555"
|
|
|
|
csn.Node.Address = "10.10.10.10"
|
|
|
|
|
|
|
|
for _, opt := range opts {
|
2021-01-29 20:53:45 +00:00
|
|
|
if err := opt(&e); err != nil {
|
|
|
|
t.Fatalf("expected no error, got %v", err)
|
|
|
|
}
|
2020-07-15 15:54:50 +00:00
|
|
|
}
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
|
|
|
|
func testServiceHealthDeregistrationEvent(t *testing.T, svc string, opts ...eventOption) stream.Event {
|
|
|
|
e := newTestEventServiceHealthDeregister(100, 1, svc)
|
|
|
|
for _, opt := range opts {
|
2021-02-03 20:49:14 +00:00
|
|
|
if err := opt(&e); err != nil {
|
|
|
|
t.Fatalf("expected no error, got %v", err)
|
|
|
|
}
|
2020-07-15 15:54:50 +00:00
|
|
|
}
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
|
|
|
|
// regConnectNative option converts the base registration into a Connect-native
|
|
|
|
// one.
|
|
|
|
func regConnectNative(req *structs.RegisterRequest) error {
|
|
|
|
if req.Service == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
req.Service.Connect.Native = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// regSidecar option converts the base registration request
|
|
|
|
// into the registration for it's sidecar service.
|
|
|
|
func regSidecar(req *structs.RegisterRequest) error {
|
|
|
|
if req.Service == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
svc := req.Service.Service
|
|
|
|
|
|
|
|
req.Service.Kind = structs.ServiceKindConnectProxy
|
|
|
|
req.Service.ID = svc + "_sidecar_proxy"
|
|
|
|
req.Service.Service = svc + "_sidecar_proxy"
|
|
|
|
req.Service.Port = 20000 + req.Service.Port
|
|
|
|
|
|
|
|
req.Service.Proxy.DestinationServiceName = svc
|
|
|
|
req.Service.Proxy.DestinationServiceID = svc
|
|
|
|
|
|
|
|
// Convert the check to point to the right ID now. This isn't totally
|
|
|
|
// realistic - sidecars should have alias checks etc but this is good enough
|
|
|
|
// to test this code path.
|
|
|
|
if len(req.Checks) >= 2 {
|
|
|
|
req.Checks[1].CheckID = types.CheckID("service:" + svc + "_sidecar_proxy")
|
|
|
|
req.Checks[1].ServiceID = svc + "_sidecar_proxy"
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// regNodeCheckFail option converts the base registration request
|
|
|
|
// into a registration with the node-level health check failing
|
|
|
|
func regNodeCheckFail(req *structs.RegisterRequest) error {
|
|
|
|
req.Checks[0].Status = api.HealthCritical
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// regServiceCheckFail option converts the base registration request
|
|
|
|
// into a registration with the service-level health check failing
|
|
|
|
func regServiceCheckFail(req *structs.RegisterRequest) error {
|
|
|
|
req.Checks[1].Status = api.HealthCritical
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// regMutatePort option alters the base registration service port by a relative
|
|
|
|
// amount to simulate a service change. Can be used with regSidecar since it's a
|
|
|
|
// relative change (+10).
|
|
|
|
func regMutatePort(req *structs.RegisterRequest) error {
|
|
|
|
if req.Service == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
req.Service.Port += 10
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// regRenameService option alters the base registration service name but not
|
|
|
|
// it's ID simulating a service being renamed while it's ID is maintained
|
|
|
|
// separately e.g. by a scheduler. This is an edge case but an important one as
|
|
|
|
// it changes which topic key events propagate.
|
|
|
|
func regRenameService(req *structs.RegisterRequest) error {
|
|
|
|
if req.Service == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
isSidecar := req.Service.Kind == structs.ServiceKindConnectProxy
|
|
|
|
|
|
|
|
if !isSidecar {
|
|
|
|
req.Service.Service += "_changed"
|
|
|
|
// Update service checks
|
|
|
|
if len(req.Checks) >= 2 {
|
|
|
|
req.Checks[1].ServiceName += "_changed"
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// This is a sidecar, it's not really realistic but lets only update the
|
|
|
|
// fields necessary to make it work again with the new service name to be sure
|
|
|
|
// we get the right result. This is certainly possible if not likely so a
|
|
|
|
// valid case.
|
|
|
|
|
|
|
|
// We don't need to update out own details, only the name of the destination
|
|
|
|
req.Service.Proxy.DestinationServiceName += "_changed"
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// regRenameNode option alters the base registration node name by adding the
|
|
|
|
// _changed suffix.
|
|
|
|
func regRenameNode(req *structs.RegisterRequest) error {
|
|
|
|
req.Node += "_changed"
|
|
|
|
for i := range req.Checks {
|
|
|
|
req.Checks[i].Node = req.Node
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// regNode2 option alters the base registration to be on a different node.
|
|
|
|
func regNode2(req *structs.RegisterRequest) error {
|
|
|
|
req.Node = "node2"
|
|
|
|
req.ID = "22222222-2222-3333-4444-555555555555"
|
|
|
|
for i := range req.Checks {
|
|
|
|
req.Checks[i].Node = req.Node
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// regNodeMeta option alters the base registration node to add some meta data.
|
|
|
|
func regNodeMeta(req *structs.RegisterRequest) error {
|
|
|
|
req.NodeMeta = map[string]string{"foo": "bar"}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evNodeUnchanged option converts the event to reset the node and node check
|
|
|
|
// raft indexes to the original value where we expect the node not to have been
|
|
|
|
// changed in the mutation.
|
|
|
|
func evNodeUnchanged(e *stream.Event) error {
|
|
|
|
// If the node wasn't touched, its modified index and check's modified
|
|
|
|
// indexes should be the original ones.
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
|
|
|
|
// Check this isn't a dereg event with made up/placeholder node info
|
|
|
|
if csn.Node.CreateIndex == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
csn.Node.CreateIndex = 10
|
|
|
|
csn.Node.ModifyIndex = 10
|
|
|
|
csn.Checks[0].CreateIndex = 10
|
|
|
|
csn.Checks[0].ModifyIndex = 10
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evServiceUnchanged option converts the event to reset the service and service
|
|
|
|
// check raft indexes to the original value where we expect the service record
|
|
|
|
// not to have been changed in the mutation.
|
|
|
|
func evServiceUnchanged(e *stream.Event) error {
|
|
|
|
// If the node wasn't touched, its modified index and check's modified
|
|
|
|
// indexes should be the original ones.
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
|
|
|
|
csn.Service.CreateIndex = 10
|
|
|
|
csn.Service.ModifyIndex = 10
|
|
|
|
if len(csn.Checks) > 1 {
|
|
|
|
csn.Checks[1].CreateIndex = 10
|
|
|
|
csn.Checks[1].ModifyIndex = 10
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evConnectNative option converts the base event to represent a connect-native
|
|
|
|
// service instance.
|
|
|
|
func evConnectNative(e *stream.Event) error {
|
|
|
|
getPayloadCheckServiceNode(e.Payload).Service.Connect.Native = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evConnectTopic option converts the base event to the equivalent event that
|
|
|
|
// should be published to the connect topic. When needed it should be applied
|
|
|
|
// first as several other options (notable evSidecar) change behavior subtly
|
2020-12-17 22:46:24 +00:00
|
|
|
// depending on which topic they are published to and they determine this from
|
2020-07-15 15:54:50 +00:00
|
|
|
// the event.
|
|
|
|
func evConnectTopic(e *stream.Event) error {
|
2020-09-15 19:04:33 +00:00
|
|
|
e.Topic = topicServiceHealthConnect
|
2020-07-15 15:54:50 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evSidecar option converts the base event to the health (not connect) event
|
|
|
|
// expected from the sidecar proxy registration for that service instead. When
|
|
|
|
// needed it should be applied after any option that changes topic (e.g.
|
|
|
|
// evConnectTopic) but before other options that might change behavior subtly
|
|
|
|
// depending on whether it's a sidecar or regular service event (e.g.
|
|
|
|
// evRenameService).
|
|
|
|
func evSidecar(e *stream.Event) error {
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
|
|
|
|
svc := csn.Service.Service
|
|
|
|
|
|
|
|
csn.Service.Kind = structs.ServiceKindConnectProxy
|
|
|
|
csn.Service.ID = svc + "_sidecar_proxy"
|
|
|
|
csn.Service.Service = svc + "_sidecar_proxy"
|
|
|
|
csn.Service.Port = 20000 + csn.Service.Port
|
|
|
|
|
|
|
|
csn.Service.Proxy.DestinationServiceName = svc
|
|
|
|
csn.Service.Proxy.DestinationServiceID = svc
|
|
|
|
|
|
|
|
// Convert the check to point to the right ID now. This isn't totally
|
|
|
|
// realistic - sidecars should have alias checks etc but this is good enough
|
|
|
|
// to test this code path.
|
|
|
|
if len(csn.Checks) >= 2 {
|
|
|
|
csn.Checks[1].CheckID = types.CheckID("service:" + svc + "_sidecar_proxy")
|
|
|
|
csn.Checks[1].ServiceID = svc + "_sidecar_proxy"
|
|
|
|
csn.Checks[1].ServiceName = svc + "_sidecar_proxy"
|
|
|
|
}
|
|
|
|
|
2020-10-27 18:40:06 +00:00
|
|
|
if e.Topic == topicServiceHealthConnect {
|
|
|
|
payload := e.Payload.(EventPayloadCheckServiceNode)
|
2021-01-29 20:40:07 +00:00
|
|
|
payload.overrideKey = svc
|
2020-10-27 18:40:06 +00:00
|
|
|
e.Payload = payload
|
2020-07-15 15:54:50 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evMutatePort option alters the base event service port by a relative
|
|
|
|
// amount to simulate a service change. Can be used with evSidecar since it's a
|
|
|
|
// relative change (+10).
|
|
|
|
func evMutatePort(e *stream.Event) error {
|
|
|
|
getPayloadCheckServiceNode(e.Payload).Service.Port += 10
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evNodeMutated option alters the base event node to set it's CreateIndex
|
|
|
|
// (but not modify index) to the setup index. This expresses that we expect the
|
|
|
|
// node record originally created in setup to have been mutated during the
|
|
|
|
// update.
|
|
|
|
func evNodeMutated(e *stream.Event) error {
|
|
|
|
getPayloadCheckServiceNode(e.Payload).Node.CreateIndex = 10
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evServiceMutated option alters the base event service to set it's CreateIndex
|
|
|
|
// (but not modify index) to the setup index. This expresses that we expect the
|
|
|
|
// service record originally created in setup to have been mutated during the
|
|
|
|
// update.
|
|
|
|
func evServiceMutated(e *stream.Event) error {
|
|
|
|
getPayloadCheckServiceNode(e.Payload).Service.CreateIndex = 10
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-01-29 20:06:41 +00:00
|
|
|
// evServiceChecksMutated option alters the base event service check to set it's
|
2020-07-15 15:54:50 +00:00
|
|
|
// CreateIndex (but not modify index) to the setup index. This expresses that we
|
|
|
|
// expect the service check records originally created in setup to have been
|
|
|
|
// mutated during the update. NOTE: this must be sequenced after
|
|
|
|
// evServiceUnchanged if both are used.
|
2021-01-29 20:06:41 +00:00
|
|
|
func evServiceChecksMutated(e *stream.Event) error {
|
2020-07-15 15:54:50 +00:00
|
|
|
getPayloadCheckServiceNode(e.Payload).Checks[1].CreateIndex = 10
|
|
|
|
getPayloadCheckServiceNode(e.Payload).Checks[1].ModifyIndex = 100
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evNodeChecksMutated option alters the base event node check to set it's
|
|
|
|
// CreateIndex (but not modify index) to the setup index. This expresses that we
|
|
|
|
// expect the node check records originally created in setup to have been
|
|
|
|
// mutated during the update. NOTE: this must be sequenced after evNodeUnchanged
|
|
|
|
// if both are used.
|
|
|
|
func evNodeChecksMutated(e *stream.Event) error {
|
|
|
|
getPayloadCheckServiceNode(e.Payload).Checks[0].CreateIndex = 10
|
|
|
|
getPayloadCheckServiceNode(e.Payload).Checks[0].ModifyIndex = 100
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evChecksUnchanged option alters the base event service to set all check raft
|
|
|
|
// indexes to the setup index. This expresses that we expect none of the checks
|
|
|
|
// to have changed in the update.
|
|
|
|
func evChecksUnchanged(e *stream.Event) error {
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
for i := range csn.Checks {
|
|
|
|
csn.Checks[i].CreateIndex = 10
|
|
|
|
csn.Checks[i].ModifyIndex = 10
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evRenameService option alters the base event service to change the service
|
|
|
|
// name but not ID simulating an in-place service rename.
|
|
|
|
func evRenameService(e *stream.Event) error {
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
|
2020-10-27 18:40:06 +00:00
|
|
|
if csn.Service.Kind != structs.ServiceKindConnectProxy {
|
2020-07-15 15:54:50 +00:00
|
|
|
csn.Service.Service += "_changed"
|
|
|
|
// Update service checks
|
|
|
|
if len(csn.Checks) >= 2 {
|
|
|
|
csn.Checks[1].ServiceName += "_changed"
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// This is a sidecar, it's not really realistic but lets only update the
|
|
|
|
// fields necessary to make it work again with the new service name to be sure
|
|
|
|
// we get the right result. This is certainly possible if not likely so a
|
|
|
|
// valid case.
|
|
|
|
|
2020-10-27 18:40:06 +00:00
|
|
|
// We don't need to update our own details, only the name of the destination
|
2020-07-15 15:54:50 +00:00
|
|
|
csn.Service.Proxy.DestinationServiceName += "_changed"
|
|
|
|
|
2020-09-15 19:04:33 +00:00
|
|
|
if e.Topic == topicServiceHealthConnect {
|
2020-10-27 18:40:06 +00:00
|
|
|
payload := e.Payload.(EventPayloadCheckServiceNode)
|
2021-01-29 20:40:07 +00:00
|
|
|
payload.overrideKey = csn.Service.Proxy.DestinationServiceName
|
2020-10-27 18:40:06 +00:00
|
|
|
e.Payload = payload
|
2020-07-15 15:54:50 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-01-29 20:06:41 +00:00
|
|
|
func evTerminatingGatewayRenamed(newName string) func(e *stream.Event) error {
|
|
|
|
return func(e *stream.Event) error {
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
csn.Service.Service = newName
|
|
|
|
csn.Checks[1].ServiceName = newName
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 15:54:50 +00:00
|
|
|
// evNodeMeta option alters the base event node to add some meta data.
|
|
|
|
func evNodeMeta(e *stream.Event) error {
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
csn.Node.Meta = map[string]string{"foo": "bar"}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evRenameNode option alters the base event node name.
|
|
|
|
func evRenameNode(e *stream.Event) error {
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
csn.Node.Node += "_changed"
|
|
|
|
for i := range csn.Checks {
|
|
|
|
csn.Checks[i].Node = csn.Node.Node
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evNode2 option alters the base event to refer to a different node
|
|
|
|
func evNode2(e *stream.Event) error {
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
csn.Node.Node = "node2"
|
|
|
|
// Only change ID if it's set (e.g. it's not in a deregistration event)
|
|
|
|
if csn.Node.ID != "" {
|
|
|
|
csn.Node.ID = "22222222-2222-3333-4444-555555555555"
|
|
|
|
}
|
|
|
|
for i := range csn.Checks {
|
|
|
|
csn.Checks[i].Node = csn.Node.Node
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evNodeCheckFail option alters the base event to set the node-level health
|
|
|
|
// check to be failing
|
|
|
|
func evNodeCheckFail(e *stream.Event) error {
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
csn.Checks[0].Status = api.HealthCritical
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evNodeCheckDelete option alters the base event to remove the node-level
|
|
|
|
// health check
|
|
|
|
func evNodeCheckDelete(e *stream.Event) error {
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
// Ensure this is idempotent as we sometimes get called multiple times..
|
|
|
|
if len(csn.Checks) > 0 && csn.Checks[0].ServiceID == "" {
|
|
|
|
csn.Checks = csn.Checks[1:]
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evServiceCheckFail option alters the base event to set the service-level health
|
|
|
|
// check to be failing
|
|
|
|
func evServiceCheckFail(e *stream.Event) error {
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
csn.Checks[1].Status = api.HealthCritical
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// evServiceCheckDelete option alters the base event to remove the service-level
|
|
|
|
// health check
|
|
|
|
func evServiceCheckDelete(e *stream.Event) error {
|
|
|
|
csn := getPayloadCheckServiceNode(e.Payload)
|
|
|
|
// Ensure this is idempotent as we sometimes get called multiple times..
|
|
|
|
if len(csn.Checks) > 1 && csn.Checks[1].ServiceID != "" {
|
|
|
|
csn.Checks = csn.Checks[0:1]
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// newTestEventServiceHealthRegister returns a realistically populated service
|
|
|
|
// health registration event. The nodeNum is a
|
|
|
|
// logical node and is used to create the node name ("node%d") but also change
|
|
|
|
// the node ID and IP address to make it a little more realistic for cases that
|
|
|
|
// need that. nodeNum should be less than 64k to make the IP address look
|
|
|
|
// realistic. Any other changes can be made on the returned event to avoid
|
|
|
|
// adding too many options to callers.
|
|
|
|
func newTestEventServiceHealthRegister(index uint64, nodeNum int, svc string) stream.Event {
|
|
|
|
node := fmt.Sprintf("node%d", nodeNum)
|
|
|
|
nodeID := types.NodeID(fmt.Sprintf("11111111-2222-3333-4444-%012d", nodeNum))
|
|
|
|
addr := fmt.Sprintf("10.10.%d.%d", nodeNum/256, nodeNum%256)
|
|
|
|
|
|
|
|
return stream.Event{
|
2020-09-15 19:04:33 +00:00
|
|
|
Topic: topicServiceHealth,
|
2020-07-15 15:54:50 +00:00
|
|
|
Index: index,
|
2020-09-08 22:13:24 +00:00
|
|
|
Payload: EventPayloadCheckServiceNode{
|
|
|
|
Op: pbsubscribe.CatalogOp_Register,
|
|
|
|
Value: &structs.CheckServiceNode{
|
2020-07-15 15:54:50 +00:00
|
|
|
Node: &structs.Node{
|
|
|
|
ID: nodeID,
|
|
|
|
Node: node,
|
|
|
|
Address: addr,
|
|
|
|
Datacenter: "dc1",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: index,
|
|
|
|
ModifyIndex: index,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Service: &structs.NodeService{
|
|
|
|
ID: svc,
|
|
|
|
Service: svc,
|
|
|
|
Port: 8080,
|
|
|
|
Weights: &structs.Weights{
|
|
|
|
Passing: 1,
|
|
|
|
Warning: 1,
|
|
|
|
},
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: index,
|
|
|
|
ModifyIndex: index,
|
|
|
|
},
|
2020-10-09 14:42:53 +00:00
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
Checks: []*structs.HealthCheck{
|
|
|
|
{
|
|
|
|
Node: node,
|
|
|
|
CheckID: "serf-health",
|
|
|
|
Name: "serf-health",
|
|
|
|
Status: "passing",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: index,
|
|
|
|
ModifyIndex: index,
|
|
|
|
},
|
2020-10-09 14:42:53 +00:00
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
Node: node,
|
|
|
|
CheckID: types.CheckID("service:" + svc),
|
|
|
|
Name: "service:" + svc,
|
|
|
|
ServiceID: svc,
|
|
|
|
ServiceName: svc,
|
|
|
|
Type: "ttl",
|
|
|
|
Status: "passing",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: index,
|
|
|
|
ModifyIndex: index,
|
|
|
|
},
|
2020-10-09 14:42:53 +00:00
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestEventServiceHealthDeregister returns a realistically populated service
|
|
|
|
// health deregistration event. The nodeNum is a
|
|
|
|
// logical node and is used to create the node name ("node%d") but also change
|
|
|
|
// the node ID and IP address to make it a little more realistic for cases that
|
|
|
|
// need that. nodeNum should be less than 64k to make the IP address look
|
|
|
|
// realistic. Any other changes can be made on the returned event to avoid
|
|
|
|
// adding too many options to callers.
|
|
|
|
func newTestEventServiceHealthDeregister(index uint64, nodeNum int, svc string) stream.Event {
|
|
|
|
return stream.Event{
|
2020-09-15 19:04:33 +00:00
|
|
|
Topic: topicServiceHealth,
|
2020-07-15 15:54:50 +00:00
|
|
|
Index: index,
|
2020-09-08 22:13:24 +00:00
|
|
|
Payload: EventPayloadCheckServiceNode{
|
|
|
|
Op: pbsubscribe.CatalogOp_Deregister,
|
|
|
|
Value: &structs.CheckServiceNode{
|
2020-07-15 15:54:50 +00:00
|
|
|
Node: &structs.Node{
|
|
|
|
Node: fmt.Sprintf("node%d", nodeNum),
|
|
|
|
},
|
|
|
|
Service: &structs.NodeService{
|
|
|
|
ID: svc,
|
|
|
|
Service: svc,
|
|
|
|
Port: 8080,
|
|
|
|
Weights: &structs.Weights{
|
|
|
|
Passing: 1,
|
|
|
|
Warning: 1,
|
|
|
|
},
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
// The original insertion index since a delete doesn't update
|
|
|
|
// this. This magic value came from state store tests where we
|
|
|
|
// setup at index 10 and then mutate at index 100. It can be
|
|
|
|
// modified by the caller later and makes it easier than having
|
|
|
|
// yet another argument in the common case.
|
|
|
|
CreateIndex: 10,
|
|
|
|
ModifyIndex: 10,
|
|
|
|
},
|
2020-10-09 14:42:53 +00:00
|
|
|
EnterpriseMeta: *structs.DefaultEnterpriseMeta(),
|
2020-07-15 15:54:50 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2020-10-28 23:25:15 +00:00
|
|
|
|
|
|
|
func TestEventPayloadCheckServiceNode_FilterByKey(t *testing.T) {
|
|
|
|
type testCase struct {
|
|
|
|
name string
|
|
|
|
payload EventPayloadCheckServiceNode
|
|
|
|
key string
|
|
|
|
namespace string
|
|
|
|
expected bool
|
|
|
|
}
|
|
|
|
|
|
|
|
fn := func(t *testing.T, tc testCase) {
|
|
|
|
if tc.namespace != "" && pbcommon.DefaultEnterpriseMeta.Namespace == "" {
|
|
|
|
t.Skip("cant test namespace matching without namespace support")
|
|
|
|
}
|
|
|
|
|
2020-11-06 00:18:37 +00:00
|
|
|
require.Equal(t, tc.expected, tc.payload.MatchesKey(tc.key, tc.namespace))
|
2020-10-28 23:25:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var testCases = []testCase{
|
|
|
|
{
|
|
|
|
name: "no key or namespace",
|
|
|
|
payload: newPayloadCheckServiceNode("srv1", "ns1"),
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no key, with namespace match",
|
|
|
|
payload: newPayloadCheckServiceNode("srv1", "ns1"),
|
|
|
|
namespace: "ns1",
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no namespace, with key match",
|
|
|
|
payload: newPayloadCheckServiceNode("srv1", "ns1"),
|
|
|
|
key: "srv1",
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "key match, namespace mismatch",
|
|
|
|
payload: newPayloadCheckServiceNode("srv1", "ns1"),
|
|
|
|
key: "srv1",
|
|
|
|
namespace: "ns2",
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "key mismatch, namespace match",
|
|
|
|
payload: newPayloadCheckServiceNode("srv1", "ns1"),
|
|
|
|
key: "srv2",
|
|
|
|
namespace: "ns1",
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "override key match",
|
2021-01-29 20:40:07 +00:00
|
|
|
payload: newPayloadCheckServiceNodeWithOverride("proxy", "ns1", "srv1", ""),
|
2020-10-28 23:25:15 +00:00
|
|
|
key: "srv1",
|
|
|
|
namespace: "ns1",
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
2021-01-29 20:40:07 +00:00
|
|
|
name: "override key mismatch",
|
|
|
|
payload: newPayloadCheckServiceNodeWithOverride("proxy", "ns1", "srv2", ""),
|
|
|
|
key: "proxy",
|
|
|
|
namespace: "ns1",
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "override namespace match",
|
|
|
|
payload: newPayloadCheckServiceNodeWithOverride("proxy", "ns1", "", "ns2"),
|
|
|
|
key: "proxy",
|
|
|
|
namespace: "ns2",
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "override namespace mismatch",
|
|
|
|
payload: newPayloadCheckServiceNodeWithOverride("proxy", "ns1", "", "ns3"),
|
|
|
|
key: "proxy",
|
|
|
|
namespace: "ns1",
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "override both key and namespace match",
|
|
|
|
payload: newPayloadCheckServiceNodeWithOverride("proxy", "ns1", "srv1", "ns2"),
|
|
|
|
key: "srv1",
|
|
|
|
namespace: "ns2",
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "override both key and namespace mismatch namespace",
|
|
|
|
payload: newPayloadCheckServiceNodeWithOverride("proxy", "ns1", "srv2", "ns3"),
|
2020-10-28 23:25:15 +00:00
|
|
|
key: "proxy",
|
|
|
|
namespace: "ns1",
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
fn(t, tc)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func newPayloadCheckServiceNode(service, namespace string) EventPayloadCheckServiceNode {
|
|
|
|
return EventPayloadCheckServiceNode{
|
|
|
|
Value: &structs.CheckServiceNode{
|
|
|
|
Service: &structs.NodeService{
|
|
|
|
Service: service,
|
2021-02-02 23:04:01 +00:00
|
|
|
EnterpriseMeta: structs.NewEnterpriseMeta(namespace),
|
2020-10-28 23:25:15 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-29 20:40:07 +00:00
|
|
|
func newPayloadCheckServiceNodeWithOverride(
|
|
|
|
service, namespace, overrideKey, overrideNamespace string) EventPayloadCheckServiceNode {
|
2020-10-28 23:25:15 +00:00
|
|
|
return EventPayloadCheckServiceNode{
|
|
|
|
Value: &structs.CheckServiceNode{
|
|
|
|
Service: &structs.NodeService{
|
|
|
|
Service: service,
|
2021-02-02 23:04:01 +00:00
|
|
|
EnterpriseMeta: structs.NewEnterpriseMeta(namespace),
|
2020-10-28 23:25:15 +00:00
|
|
|
},
|
|
|
|
},
|
2021-01-29 20:40:07 +00:00
|
|
|
overrideKey: overrideKey,
|
|
|
|
overrideNamespace: overrideNamespace,
|
2020-10-28 23:25:15 +00:00
|
|
|
}
|
|
|
|
}
|