2015-08-22 19:44:33 +00:00
|
|
|
package state
|
|
|
|
|
|
|
|
import (
|
2015-10-20 00:09:02 +00:00
|
|
|
crand "crypto/rand"
|
2015-08-25 01:10:23 +00:00
|
|
|
"fmt"
|
2015-08-22 19:44:33 +00:00
|
|
|
"testing"
|
2017-01-20 05:55:57 +00:00
|
|
|
"time"
|
2015-08-22 19:44:33 +00:00
|
|
|
|
pkg refactor
command/agent/* -> agent/*
command/consul/* -> agent/consul/*
command/agent/command{,_test}.go -> command/agent{,_test}.go
command/base/command.go -> command/base.go
command/base/* -> command/*
commands.go -> command/commands.go
The script which did the refactor is:
(
cd $GOPATH/src/github.com/hashicorp/consul
git mv command/agent/command.go command/agent.go
git mv command/agent/command_test.go command/agent_test.go
git mv command/agent/flag_slice_value{,_test}.go command/
git mv command/agent .
git mv command/base/command.go command/base.go
git mv command/base/config_util{,_test}.go command/
git mv commands.go command/
git mv consul agent
rmdir command/base/
gsed -i -e 's|package agent|package command|' command/agent{,_test}.go
gsed -i -e 's|package agent|package command|' command/flag_slice_value{,_test}.go
gsed -i -e 's|package base|package command|' command/base.go command/config_util{,_test}.go
gsed -i -e 's|package main|package command|' command/commands.go
gsed -i -e 's|base.Command|BaseCommand|' command/commands.go
gsed -i -e 's|agent.Command|AgentCommand|' command/commands.go
gsed -i -e 's|\tCommand:|\tBaseCommand:|' command/commands.go
gsed -i -e 's|base\.||' command/commands.go
gsed -i -e 's|command\.||' command/commands.go
gsed -i -e 's|command|c|' main.go
gsed -i -e 's|range Commands|range command.Commands|' main.go
gsed -i -e 's|Commands: Commands|Commands: command.Commands|' main.go
gsed -i -e 's|base\.BoolValue|BoolValue|' command/operator_autopilot_set.go
gsed -i -e 's|base\.DurationValue|DurationValue|' command/operator_autopilot_set.go
gsed -i -e 's|base\.StringValue|StringValue|' command/operator_autopilot_set.go
gsed -i -e 's|base\.UintValue|UintValue|' command/operator_autopilot_set.go
gsed -i -e 's|\bCommand\b|BaseCommand|' command/base.go
gsed -i -e 's|BaseCommand Options|Command Options|' command/base.go
gsed -i -e 's|base.Command|BaseCommand|' command/*.go
gsed -i -e 's|c\.Command|c.BaseCommand|g' command/*.go
gsed -i -e 's|\tCommand:|\tBaseCommand:|' command/*_test.go
gsed -i -e 's|base\.||' command/*_test.go
gsed -i -e 's|\bCommand\b|AgentCommand|' command/agent{,_test}.go
gsed -i -e 's|cmd.AgentCommand|cmd.BaseCommand|' command/agent.go
gsed -i -e 's|cli.AgentCommand = new(Command)|cli.Command = new(AgentCommand)|' command/agent_test.go
gsed -i -e 's|exec.AgentCommand|exec.Command|' command/agent_test.go
gsed -i -e 's|exec.BaseCommand|exec.Command|' command/agent_test.go
gsed -i -e 's|NewTestAgent|agent.NewTestAgent|' command/agent_test.go
gsed -i -e 's|= TestConfig|= agent.TestConfig|' command/agent_test.go
gsed -i -e 's|: RetryJoin|: agent.RetryJoin|' command/agent_test.go
gsed -i -e 's|\.\./\.\./|../|' command/config_util_test.go
gsed -i -e 's|\bverifyUniqueListeners|VerifyUniqueListeners|' agent/config{,_test}.go command/agent.go
gsed -i -e 's|\bserfLANKeyring\b|SerfLANKeyring|g' agent/{agent,keyring,testagent}.go command/agent.go
gsed -i -e 's|\bserfWANKeyring\b|SerfWANKeyring|g' agent/{agent,keyring,testagent}.go command/agent.go
gsed -i -e 's|\bNewAgent\b|agent.New|g' command/agent{,_test}.go
gsed -i -e 's|\bNewAgent|New|' agent/{acl_test,agent,testagent}.go
gsed -i -e 's|\bAgent\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bBool\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bConfig\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bDefaultConfig\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bDevConfig\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bMergeConfig\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bReadConfigPaths\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bParseMetaPair\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bSerfLANKeyring\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|\bSerfWANKeyring\b|agent.&|g' command/agent{,_test}.go
gsed -i -e 's|circonus\.agent|circonus|g' command/agent{,_test}.go
gsed -i -e 's|logger\.agent|logger|g' command/agent{,_test}.go
gsed -i -e 's|metrics\.agent|metrics|g' command/agent{,_test}.go
gsed -i -e 's|// agent.Agent|// agent|' command/agent{,_test}.go
gsed -i -e 's|a\.agent\.Config|a.Config|' command/agent{,_test}.go
gsed -i -e 's|agent\.AppendSliceValue|AppendSliceValue|' command/{configtest,validate}.go
gsed -i -e 's|consul/consul|agent/consul|' GNUmakefile
gsed -i -e 's|\.\./test|../../test|' agent/consul/server_test.go
# fix imports
f=$(grep -rl 'github.com/hashicorp/consul/command/agent' * | grep '\.go')
gsed -i -e 's|github.com/hashicorp/consul/command/agent|github.com/hashicorp/consul/agent|' $f
goimports -w $f
f=$(grep -rl 'github.com/hashicorp/consul/consul' * | grep '\.go')
gsed -i -e 's|github.com/hashicorp/consul/consul|github.com/hashicorp/consul/agent/consul|' $f
goimports -w $f
goimports -w command/*.go main.go
)
2017-06-09 22:28:28 +00:00
|
|
|
"github.com/hashicorp/consul/agent/consul/structs"
|
2016-06-06 20:19:31 +00:00
|
|
|
"github.com/hashicorp/consul/types"
|
2017-01-13 19:17:38 +00:00
|
|
|
"github.com/hashicorp/go-memdb"
|
2015-08-22 19:44:33 +00:00
|
|
|
)
|
|
|
|
|
2015-10-20 00:09:02 +00:00
|
|
|
func testUUID() string {
|
|
|
|
buf := make([]byte, 16)
|
|
|
|
if _, err := crand.Read(buf); err != nil {
|
|
|
|
panic(fmt.Errorf("failed to read random bytes: %v", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf("%08x-%04x-%04x-%04x-%12x",
|
|
|
|
buf[0:4],
|
|
|
|
buf[4:6],
|
|
|
|
buf[6:8],
|
|
|
|
buf[8:10],
|
|
|
|
buf[10:16])
|
|
|
|
}
|
|
|
|
|
2017-04-21 00:46:29 +00:00
|
|
|
func testStateStore(t *testing.T) *Store {
|
2015-10-12 07:42:09 +00:00
|
|
|
s, err := NewStateStore(nil)
|
2015-08-22 19:44:33 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if s == nil {
|
|
|
|
t.Fatalf("missing state store")
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
2017-04-21 00:46:29 +00:00
|
|
|
func testRegisterNode(t *testing.T, s *Store, idx uint64, nodeID string) {
|
2017-01-14 01:08:43 +00:00
|
|
|
testRegisterNodeWithMeta(t, s, idx, nodeID, nil)
|
|
|
|
}
|
|
|
|
|
2017-04-21 00:46:29 +00:00
|
|
|
func testRegisterNodeWithMeta(t *testing.T, s *Store, idx uint64, nodeID string, meta map[string]string) {
|
2017-01-14 01:08:43 +00:00
|
|
|
node := &structs.Node{Node: nodeID, Meta: meta}
|
2015-08-29 18:49:11 +00:00
|
|
|
if err := s.EnsureNode(idx, node); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
tx := s.db.Txn(false)
|
|
|
|
defer tx.Abort()
|
|
|
|
n, err := tx.First("nodes", "id", nodeID)
|
|
|
|
if err != nil {
|
2015-09-20 08:36:39 +00:00
|
|
|
t.Fatalf("err: %s", err)
|
2015-08-29 18:49:11 +00:00
|
|
|
}
|
|
|
|
if result, ok := n.(*structs.Node); !ok || result.Node != nodeID {
|
|
|
|
t.Fatalf("bad node: %#v", result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-21 00:46:29 +00:00
|
|
|
func testRegisterService(t *testing.T, s *Store, idx uint64, nodeID, serviceID string) {
|
2015-08-29 18:49:11 +00:00
|
|
|
svc := &structs.NodeService{
|
|
|
|
ID: serviceID,
|
2015-08-29 23:39:32 +00:00
|
|
|
Service: serviceID,
|
2015-08-29 18:49:11 +00:00
|
|
|
Address: "1.1.1.1",
|
|
|
|
Port: 1111,
|
|
|
|
}
|
|
|
|
if err := s.EnsureService(idx, nodeID, svc); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
tx := s.db.Txn(false)
|
|
|
|
defer tx.Abort()
|
|
|
|
service, err := tx.First("services", "id", nodeID, serviceID)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
2015-09-10 21:40:11 +00:00
|
|
|
if result, ok := service.(*structs.ServiceNode); !ok ||
|
|
|
|
result.Node != nodeID ||
|
|
|
|
result.ServiceID != serviceID {
|
2015-08-29 18:49:11 +00:00
|
|
|
t.Fatalf("bad service: %#v", result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-21 00:46:29 +00:00
|
|
|
func testRegisterCheck(t *testing.T, s *Store, idx uint64,
|
2016-06-06 20:19:31 +00:00
|
|
|
nodeID string, serviceID string, checkID types.CheckID, state string) {
|
2015-08-29 18:49:11 +00:00
|
|
|
chk := &structs.HealthCheck{
|
|
|
|
Node: nodeID,
|
|
|
|
CheckID: checkID,
|
|
|
|
ServiceID: serviceID,
|
2015-09-01 00:38:33 +00:00
|
|
|
Status: state,
|
2015-08-29 18:49:11 +00:00
|
|
|
}
|
|
|
|
if err := s.EnsureCheck(idx, chk); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
tx := s.db.Txn(false)
|
|
|
|
defer tx.Abort()
|
2016-06-07 20:24:51 +00:00
|
|
|
c, err := tx.First("checks", "id", nodeID, string(checkID))
|
2015-08-29 18:49:11 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
2015-09-10 21:40:11 +00:00
|
|
|
if result, ok := c.(*structs.HealthCheck); !ok ||
|
|
|
|
result.Node != nodeID ||
|
|
|
|
result.ServiceID != serviceID ||
|
|
|
|
result.CheckID != checkID {
|
2015-08-29 18:49:11 +00:00
|
|
|
t.Fatalf("bad check: %#v", result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-21 00:46:29 +00:00
|
|
|
func testSetKey(t *testing.T, s *Store, idx uint64, key, value string) {
|
2015-09-01 23:50:28 +00:00
|
|
|
entry := &structs.DirEntry{Key: key, Value: []byte(value)}
|
|
|
|
if err := s.KVSSet(idx, entry); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
tx := s.db.Txn(false)
|
|
|
|
defer tx.Abort()
|
|
|
|
e, err := tx.First("kvs", "id", key)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if result, ok := e.(*structs.DirEntry); !ok || result.Key != key {
|
|
|
|
t.Fatalf("bad kvs entry: %#v", result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-13 19:17:38 +00:00
|
|
|
// watchFired is a helper for unit tests that returns if the given watch set
|
|
|
|
// fired (it doesn't care which watch actually fired). This uses a fixed
|
2017-01-20 07:36:50 +00:00
|
|
|
// timeout since we already expect the event happened before calling this and
|
|
|
|
// just need to distinguish a fire from a timeout. We do need a little time to
|
|
|
|
// allow the watch to set up any goroutines, though.
|
2017-01-13 19:17:38 +00:00
|
|
|
func watchFired(ws memdb.WatchSet) bool {
|
2017-01-20 07:36:50 +00:00
|
|
|
timedOut := ws.Watch(time.After(50 * time.Millisecond))
|
2017-01-13 19:17:38 +00:00
|
|
|
return !timedOut
|
|
|
|
}
|
|
|
|
|
2015-10-20 06:06:59 +00:00
|
|
|
func TestStateStore_Restore_Abort(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// The detailed restore functions are tested below, this just checks
|
|
|
|
// that abort works.
|
|
|
|
restore := s.Restore()
|
|
|
|
entry := &structs.DirEntry{
|
2015-10-21 01:41:05 +00:00
|
|
|
Key: "foo",
|
|
|
|
Value: []byte("bar"),
|
2015-10-20 06:06:59 +00:00
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
ModifyIndex: 5,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if err := restore.KVS(entry); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
restore.Abort()
|
|
|
|
|
2017-01-24 19:20:51 +00:00
|
|
|
idx, entries, err := s.KVSList(nil, "")
|
2015-10-20 06:06:59 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if idx != 0 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
if len(entries) != 0 {
|
|
|
|
t.Fatalf("bad: %#v", entries)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-24 18:38:03 +00:00
|
|
|
func TestStateStore_Abandon(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
abandonCh := s.AbandonCh()
|
|
|
|
s.Abandon()
|
|
|
|
select {
|
|
|
|
case <-abandonCh:
|
|
|
|
default:
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-10 21:40:11 +00:00
|
|
|
func TestStateStore_maxIndex(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
2015-09-20 08:36:39 +00:00
|
|
|
|
2015-09-10 21:40:11 +00:00
|
|
|
testRegisterNode(t, s, 0, "foo")
|
|
|
|
testRegisterNode(t, s, 1, "bar")
|
|
|
|
testRegisterService(t, s, 2, "foo", "consul")
|
2015-09-20 08:36:39 +00:00
|
|
|
|
2015-09-10 21:40:11 +00:00
|
|
|
if max := s.maxIndex("nodes", "services"); max != 2 {
|
|
|
|
t.Fatalf("bad max: %d", max)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-20 08:36:39 +00:00
|
|
|
func TestStateStore_indexUpdateMaxTxn(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
testRegisterNode(t, s, 0, "foo")
|
|
|
|
testRegisterNode(t, s, 1, "bar")
|
|
|
|
|
|
|
|
tx := s.db.Txn(true)
|
|
|
|
if err := indexUpdateMaxTxn(tx, 3, "nodes"); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
tx.Commit()
|
|
|
|
|
|
|
|
if max := s.maxIndex("nodes"); max != 3 {
|
|
|
|
t.Fatalf("bad max: %d", max)
|
|
|
|
}
|
|
|
|
}
|