2018-06-11 20:33:18 +00:00
|
|
|
package consul
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
|
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"
|
|
|
|
"github.com/mitchellh/go-testing-interface"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MockConsulOp represents the register/deregister operations.
|
|
|
|
type MockConsulOp struct {
|
|
|
|
Op string // add, remove, or update
|
|
|
|
AllocID string
|
|
|
|
Task string
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewMockConsulOp(op, allocID, task string) MockConsulOp {
|
|
|
|
if op != "add" && op != "remove" && op != "update" && op != "alloc_registrations" {
|
|
|
|
panic(fmt.Errorf("invalid consul op: %s", op))
|
|
|
|
}
|
|
|
|
return MockConsulOp{
|
|
|
|
Op: op,
|
|
|
|
AllocID: allocID,
|
|
|
|
Task: task,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MockConsulServiceClient implements the ConsulServiceAPI interface to record
|
|
|
|
// and log task registration/deregistration.
|
|
|
|
type MockConsulServiceClient struct {
|
2018-09-14 00:27:14 +00:00
|
|
|
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) UpdateTask(old, new *consul.TaskServices) error {
|
|
|
|
m.mu.Lock()
|
|
|
|
defer m.mu.Unlock()
|
2018-09-13 17:43:40 +00:00
|
|
|
m.logger.Trace("UpdateTask", "alloc_id", new.AllocID, "task", new.Name)
|
2018-09-18 00:44:25 +00:00
|
|
|
m.ops = append(m.ops, NewMockConsulOp("update", new.AllocID, new.Name))
|
2018-06-11 20:33:18 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockConsulServiceClient) RegisterTask(task *consul.TaskServices) error {
|
|
|
|
m.mu.Lock()
|
|
|
|
defer m.mu.Unlock()
|
2018-09-13 17:43:40 +00:00
|
|
|
m.logger.Trace("RegisterTask", "alloc_id", task.AllocID, "task", task.Name)
|
2018-09-18 00:44:25 +00:00
|
|
|
m.ops = append(m.ops, NewMockConsulOp("add", task.AllocID, task.Name))
|
2018-06-11 20:33:18 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockConsulServiceClient) RemoveTask(task *consul.TaskServices) {
|
|
|
|
m.mu.Lock()
|
|
|
|
defer m.mu.Unlock()
|
2018-09-13 17:43:40 +00:00
|
|
|
m.logger.Trace("RemoveTask", "alloc_id", task.AllocID, "task", task.Name)
|
2018-09-18 00:44:25 +00:00
|
|
|
m.ops = append(m.ops, NewMockConsulOp("remove", task.AllocID, task.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
|
|
|
|
}
|
2018-09-14 00:27:14 +00:00
|
|
|
|
|
|
|
func (m *MockConsulServiceClient) GetOps() []MockConsulOp {
|
|
|
|
m.mu.Lock()
|
|
|
|
defer m.mu.Unlock()
|
|
|
|
return m.ops
|
|
|
|
}
|