open-nomad/client/consul/consul_testing.go

114 lines
3.2 KiB
Go
Raw Normal View History

2018-06-11 20:33:18 +00:00
package consul
import (
"fmt"
"sync"
"time"
2018-06-11 20:33:18 +00:00
2018-09-13 17:43:40 +00:00
log "github.com/hashicorp/go-hclog"
2018-06-11 20:33:18 +00:00
"github.com/hashicorp/nomad/command/agent/consul"
2019-01-09 21:36:43 +00:00
testing "github.com/mitchellh/go-testing-interface"
2018-06-11 20:33:18 +00:00
)
// MockConsulOp represents the register/deregister operations.
type MockConsulOp struct {
Op string // add, remove, or update
AllocID string
Name string // task or group name
OccurredAt time.Time
2018-06-11 20:33:18 +00:00
}
func NewMockConsulOp(op, allocID, name string) MockConsulOp {
switch op {
case "add", "remove", "update", "alloc_registrations",
"add_group", "remove_group", "update_group", "update_ttl":
default:
2018-06-11 20:33:18 +00:00
panic(fmt.Errorf("invalid consul op: %s", op))
}
return MockConsulOp{
Op: op,
AllocID: allocID,
Name: name,
OccurredAt: time.Now(),
2018-06-11 20:33:18 +00:00
}
}
// MockConsulServiceClient implements the ConsulServiceAPI interface to record
// and log task registration/deregistration.
type MockConsulServiceClient struct {
ops []MockConsulOp
2018-06-11 20:33:18 +00:00
mu sync.Mutex
2018-09-13 17:43:40 +00:00
logger log.Logger
2018-06-11 20:33:18 +00:00
// AllocRegistrationsFn allows injecting return values for the
// AllocRegistrations function.
AllocRegistrationsFn func(allocID string) (*consul.AllocRegistration, error)
}
2018-09-13 17:43:40 +00:00
func NewMockConsulServiceClient(t testing.T, logger log.Logger) *MockConsulServiceClient {
logger = logger.Named("mock_consul")
2018-06-11 20:33:18 +00:00
m := MockConsulServiceClient{
2018-09-18 00:44:25 +00:00
ops: make([]MockConsulOp, 0, 20),
2018-09-13 17:43:40 +00:00
logger: logger,
2018-06-11 20:33:18 +00:00
}
return &m
}
func (m *MockConsulServiceClient) UpdateWorkload(old, newSvcs *consul.WorkloadServices) error {
m.mu.Lock()
defer m.mu.Unlock()
m.logger.Trace("UpdateWorkload", "alloc_id", newSvcs.AllocID, "name", newSvcs.Name(),
2019-01-09 21:36:43 +00:00
"old_services", len(old.Services), "new_services", len(newSvcs.Services),
)
m.ops = append(m.ops, NewMockConsulOp("update", newSvcs.AllocID, newSvcs.Name()))
2018-06-11 20:33:18 +00:00
return nil
}
func (m *MockConsulServiceClient) RegisterWorkload(svcs *consul.WorkloadServices) error {
2018-06-11 20:33:18 +00:00
m.mu.Lock()
defer m.mu.Unlock()
m.logger.Trace("RegisterWorkload", "alloc_id", svcs.AllocID, "name", svcs.Name(),
"services", len(svcs.Services),
2019-01-09 21:36:43 +00:00
)
m.ops = append(m.ops, NewMockConsulOp("add", svcs.AllocID, svcs.Name()))
2018-06-11 20:33:18 +00:00
return nil
}
func (m *MockConsulServiceClient) RemoveWorkload(svcs *consul.WorkloadServices) {
2018-06-11 20:33:18 +00:00
m.mu.Lock()
defer m.mu.Unlock()
m.logger.Trace("RemoveWorkload", "alloc_id", svcs.AllocID, "name", svcs.Name(),
"services", len(svcs.Services),
2019-01-09 21:36:43 +00:00
)
m.ops = append(m.ops, NewMockConsulOp("remove", svcs.AllocID, svcs.Name()))
2018-06-11 20:33:18 +00:00
}
func (m *MockConsulServiceClient) AllocRegistrations(allocID string) (*consul.AllocRegistration, error) {
m.mu.Lock()
defer m.mu.Unlock()
2018-09-13 17:43:40 +00:00
m.logger.Trace("AllocRegistrations", "alloc_id", allocID)
2018-09-18 00:44:25 +00:00
m.ops = append(m.ops, NewMockConsulOp("alloc_registrations", allocID, ""))
2018-06-11 20:33:18 +00:00
if m.AllocRegistrationsFn != nil {
return m.AllocRegistrationsFn(allocID)
}
return nil, nil
}
func (m *MockConsulServiceClient) UpdateTTL(checkID, output, status string) error {
// TODO(tgross): this method is here so we can implement the
// interface but the locking we need for testing creates a lot
// of opportunities for deadlocks in testing that will never
// appear in live code.
m.logger.Trace("UpdateTTL", "check_id", checkID, "status", status)
return nil
}
func (m *MockConsulServiceClient) GetOps() []MockConsulOp {
m.mu.Lock()
defer m.mu.Unlock()
return m.ops
}