2016-05-11 08:35:27 +00:00
|
|
|
package state
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2017-07-06 10:34:00 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2017-04-19 23:00:11 +00:00
|
|
|
"github.com/hashicorp/consul/api"
|
2016-05-11 08:35:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestStateStore_Txn_KVS(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
2016-05-13 00:38:25 +00:00
|
|
|
// Create KV entries in the state store.
|
2016-05-11 08:35:27 +00:00
|
|
|
testSetKey(t, s, 1, "foo/delete", "bar")
|
|
|
|
testSetKey(t, s, 2, "foo/bar/baz", "baz")
|
|
|
|
testSetKey(t, s, 3, "foo/bar/zip", "zip")
|
|
|
|
testSetKey(t, s, 4, "foo/zorp", "zorp")
|
|
|
|
testSetKey(t, s, 5, "foo/update", "stale")
|
|
|
|
|
|
|
|
// Make a real session.
|
|
|
|
testRegisterNode(t, s, 6, "node1")
|
|
|
|
session := testUUID()
|
|
|
|
if err := s.SessionCreate(7, &structs.Session{ID: session, Node: "node1"}); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set up a transaction that hits every operation.
|
|
|
|
ops := structs.TxnOps{
|
2016-05-13 23:57:39 +00:00
|
|
|
&structs.TxnOp{
|
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVGetTree,
|
2016-05-13 23:57:39 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2016-05-11 08:35:27 +00:00
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVSet,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/new",
|
|
|
|
Value: []byte("one"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVDelete,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/zorp",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVDeleteCAS,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/delete",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
ModifyIndex: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVDeleteTree,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVGet,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/update",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVCheckIndex,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/update",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
ModifyIndex: 5,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVCAS,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/update",
|
|
|
|
Value: []byte("new"),
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
ModifyIndex: 5,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVGet,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/update",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVCheckIndex,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/update",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
ModifyIndex: 8,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVLock,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/lock",
|
|
|
|
Session: session,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVCheckSession,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/lock",
|
|
|
|
Session: session,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVUnlock,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/lock",
|
|
|
|
Session: session,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVCheckSession,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/lock",
|
|
|
|
Session: "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2016-05-13 00:38:25 +00:00
|
|
|
results, errors := s.TxnRW(8, ops)
|
2016-05-11 08:35:27 +00:00
|
|
|
if len(errors) > 0 {
|
|
|
|
t.Fatalf("err: %v", errors)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the response looks as expected.
|
|
|
|
expected := structs.TxnResults{
|
2016-05-13 23:57:39 +00:00
|
|
|
&structs.TxnResult{
|
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/bar/baz",
|
|
|
|
Value: []byte("baz"),
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 2,
|
|
|
|
ModifyIndex: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnResult{
|
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/bar/zip",
|
|
|
|
Value: []byte("zip"),
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 3,
|
|
|
|
ModifyIndex: 3,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2016-05-11 08:35:27 +00:00
|
|
|
&structs.TxnResult{
|
2016-05-11 20:48:03 +00:00
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/new",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 8,
|
|
|
|
ModifyIndex: 8,
|
2016-05-11 08:35:27 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnResult{
|
2016-05-11 20:48:03 +00:00
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/update",
|
|
|
|
Value: []byte("stale"),
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 5,
|
|
|
|
ModifyIndex: 5,
|
2016-05-11 08:35:27 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnResult{
|
2016-05-11 20:48:03 +00:00
|
|
|
KV: &structs.DirEntry{
|
2016-05-11 08:35:27 +00:00
|
|
|
|
2016-05-11 20:48:03 +00:00
|
|
|
Key: "foo/update",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 5,
|
|
|
|
ModifyIndex: 5,
|
2016-05-11 08:35:27 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnResult{
|
2016-05-11 20:48:03 +00:00
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/update",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 5,
|
|
|
|
ModifyIndex: 8,
|
2016-05-11 08:35:27 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnResult{
|
2016-05-11 20:48:03 +00:00
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/update",
|
|
|
|
Value: []byte("new"),
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 5,
|
|
|
|
ModifyIndex: 8,
|
2016-05-11 08:35:27 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnResult{
|
2016-05-11 20:48:03 +00:00
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/update",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 5,
|
|
|
|
ModifyIndex: 8,
|
2016-05-11 08:35:27 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnResult{
|
2016-05-11 20:48:03 +00:00
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/lock",
|
|
|
|
Session: session,
|
|
|
|
LockIndex: 1,
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 8,
|
|
|
|
ModifyIndex: 8,
|
2016-05-11 08:35:27 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnResult{
|
2016-05-11 20:48:03 +00:00
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/lock",
|
|
|
|
Session: session,
|
|
|
|
LockIndex: 1,
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 8,
|
|
|
|
ModifyIndex: 8,
|
2016-05-11 08:35:27 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnResult{
|
2016-05-11 20:48:03 +00:00
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/lock",
|
|
|
|
LockIndex: 1,
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 8,
|
|
|
|
ModifyIndex: 8,
|
2016-05-11 08:35:27 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnResult{
|
2016-05-11 20:48:03 +00:00
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/lock",
|
|
|
|
LockIndex: 1,
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 8,
|
|
|
|
ModifyIndex: 8,
|
2016-05-11 08:35:27 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if len(results) != len(expected) {
|
|
|
|
t.Fatalf("bad: %v", results)
|
|
|
|
}
|
2017-04-20 18:42:22 +00:00
|
|
|
for i := range results {
|
2016-05-11 08:35:27 +00:00
|
|
|
if !reflect.DeepEqual(results[i], expected[i]) {
|
|
|
|
t.Fatalf("bad %d", i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pull the resulting state store contents.
|
2017-01-24 19:20:51 +00:00
|
|
|
idx, actual, err := s.KVSList(nil, "")
|
2016-05-11 08:35:27 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if idx != 8 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure it looks as expected.
|
|
|
|
entries := structs.DirEntries{
|
|
|
|
&structs.DirEntry{
|
|
|
|
Key: "foo/lock",
|
|
|
|
LockIndex: 1,
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 8,
|
|
|
|
ModifyIndex: 8,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.DirEntry{
|
|
|
|
Key: "foo/new",
|
|
|
|
Value: []byte("one"),
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 8,
|
|
|
|
ModifyIndex: 8,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.DirEntry{
|
|
|
|
Key: "foo/update",
|
|
|
|
Value: []byte("new"),
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 5,
|
|
|
|
ModifyIndex: 8,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if len(actual) != len(entries) {
|
|
|
|
t.Fatalf("bad len: %d != %d", len(actual), len(entries))
|
|
|
|
}
|
2017-04-20 18:42:22 +00:00
|
|
|
for i := range actual {
|
2016-05-11 08:35:27 +00:00
|
|
|
if !reflect.DeepEqual(actual[i], entries[i]) {
|
|
|
|
t.Fatalf("bad %d", i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStateStore_Txn_KVS_Rollback(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
2016-05-13 00:38:25 +00:00
|
|
|
// Create KV entries in the state store.
|
2016-05-11 08:35:27 +00:00
|
|
|
testSetKey(t, s, 1, "foo/delete", "bar")
|
|
|
|
testSetKey(t, s, 2, "foo/update", "stale")
|
|
|
|
|
|
|
|
testRegisterNode(t, s, 3, "node1")
|
|
|
|
session := testUUID()
|
|
|
|
if err := s.SessionCreate(4, &structs.Session{ID: session, Node: "node1"}); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
ok, err := s.KVSLock(5, &structs.DirEntry{Key: "foo/lock", Value: []byte("foo"), Session: session})
|
|
|
|
if !ok || err != nil {
|
|
|
|
t.Fatalf("didn't get the lock: %v %s", ok, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
bogus := testUUID()
|
|
|
|
if err := s.SessionCreate(6, &structs.Session{ID: bogus, Node: "node1"}); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function verifies that the state store wasn't changed.
|
|
|
|
verifyStateStore := func(desc string) {
|
2017-01-24 19:20:51 +00:00
|
|
|
idx, actual, err := s.KVSList(nil, "")
|
2016-05-11 08:35:27 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err (%s): %s", desc, err)
|
|
|
|
}
|
|
|
|
if idx != 5 {
|
|
|
|
t.Fatalf("bad index (%s): %d", desc, idx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure it looks as expected.
|
|
|
|
entries := structs.DirEntries{
|
|
|
|
&structs.DirEntry{
|
|
|
|
Key: "foo/delete",
|
|
|
|
Value: []byte("bar"),
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 1,
|
|
|
|
ModifyIndex: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.DirEntry{
|
|
|
|
Key: "foo/lock",
|
|
|
|
Value: []byte("foo"),
|
|
|
|
LockIndex: 1,
|
|
|
|
Session: session,
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 5,
|
|
|
|
ModifyIndex: 5,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.DirEntry{
|
|
|
|
Key: "foo/update",
|
|
|
|
Value: []byte("stale"),
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 2,
|
|
|
|
ModifyIndex: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if len(actual) != len(entries) {
|
|
|
|
t.Fatalf("bad len (%s): %d != %d", desc, len(actual), len(entries))
|
|
|
|
}
|
2017-04-20 18:42:22 +00:00
|
|
|
for i := range actual {
|
2016-05-11 08:35:27 +00:00
|
|
|
if !reflect.DeepEqual(actual[i], entries[i]) {
|
|
|
|
t.Fatalf("bad (%s): op %d: %v != %v", desc, i, *(actual[i]), *(entries[i]))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
verifyStateStore("initial")
|
|
|
|
|
|
|
|
// Set up a transaction that fails every operation.
|
|
|
|
ops := structs.TxnOps{
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVCAS,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/update",
|
|
|
|
Value: []byte("new"),
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
ModifyIndex: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVLock,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/lock",
|
|
|
|
Session: bogus,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVUnlock,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/lock",
|
|
|
|
Session: bogus,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVCheckSession,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/lock",
|
|
|
|
Session: bogus,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2016-05-11 21:18:31 +00:00
|
|
|
&structs.TxnOp{
|
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVGet,
|
2016-05-11 21:18:31 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "nope",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2016-05-11 08:35:27 +00:00
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVCheckSession,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "nope",
|
|
|
|
Session: bogus,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVCheckIndex,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/lock",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
ModifyIndex: 6,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVCheckIndex,
|
2016-05-11 08:35:27 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "nope",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
ModifyIndex: 6,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
2016-05-11 17:58:27 +00:00
|
|
|
KV: &structs.TxnKVOp{
|
2016-05-11 08:35:27 +00:00
|
|
|
Verb: "nope",
|
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/delete",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2016-05-13 00:38:25 +00:00
|
|
|
results, errors := s.TxnRW(7, ops)
|
2016-05-11 08:35:27 +00:00
|
|
|
if len(errors) != len(ops) {
|
|
|
|
t.Fatalf("bad len: %d != %d", len(errors), len(ops))
|
|
|
|
}
|
|
|
|
if len(results) != 0 {
|
|
|
|
t.Fatalf("bad len: %d != 0", len(results))
|
|
|
|
}
|
|
|
|
verifyStateStore("after")
|
|
|
|
|
|
|
|
// Make sure the errors look reasonable.
|
|
|
|
expected := []string{
|
|
|
|
"index is stale",
|
|
|
|
"lock is already held",
|
|
|
|
"lock isn't held, or is held by another session",
|
|
|
|
"current session",
|
|
|
|
`key "nope" doesn't exist`,
|
2016-05-11 21:18:31 +00:00
|
|
|
`key "nope" doesn't exist`,
|
2016-05-11 08:35:27 +00:00
|
|
|
"current modify index",
|
|
|
|
`key "nope" doesn't exist`,
|
2016-05-11 17:58:27 +00:00
|
|
|
"unknown KV verb",
|
2016-05-11 08:35:27 +00:00
|
|
|
}
|
|
|
|
if len(errors) != len(expected) {
|
|
|
|
t.Fatalf("bad len: %d != %d", len(errors), len(expected))
|
|
|
|
}
|
|
|
|
for i, msg := range expected {
|
|
|
|
if errors[i].OpIndex != i {
|
|
|
|
t.Fatalf("bad index: %d != %d", i, errors[i].OpIndex)
|
|
|
|
}
|
|
|
|
if !strings.Contains(errors[i].Error(), msg) {
|
|
|
|
t.Fatalf("bad %d: %v", i, errors[i].Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-13 00:38:25 +00:00
|
|
|
func TestStateStore_Txn_KVS_RO(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// Create KV entries in the state store.
|
|
|
|
testSetKey(t, s, 1, "foo", "bar")
|
|
|
|
testSetKey(t, s, 2, "foo/bar/baz", "baz")
|
|
|
|
testSetKey(t, s, 3, "foo/bar/zip", "zip")
|
|
|
|
|
|
|
|
// Set up a transaction that hits all the read-only operations.
|
|
|
|
ops := structs.TxnOps{
|
2016-05-13 23:57:39 +00:00
|
|
|
&structs.TxnOp{
|
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVGetTree,
|
2016-05-13 23:57:39 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2016-05-13 00:38:25 +00:00
|
|
|
&structs.TxnOp{
|
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVGet,
|
2016-05-13 00:38:25 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVCheckSession,
|
2016-05-13 00:38:25 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/bar/baz",
|
|
|
|
Session: "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVCheckSession,
|
2016-05-13 00:38:25 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/bar/zip",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
ModifyIndex: 3,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
results, errors := s.TxnRO(ops)
|
|
|
|
if len(errors) > 0 {
|
|
|
|
t.Fatalf("err: %v", errors)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the response looks as expected.
|
|
|
|
expected := structs.TxnResults{
|
2016-05-13 23:57:39 +00:00
|
|
|
&structs.TxnResult{
|
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/bar/baz",
|
|
|
|
Value: []byte("baz"),
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 2,
|
|
|
|
ModifyIndex: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnResult{
|
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/bar/zip",
|
|
|
|
Value: []byte("zip"),
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 3,
|
|
|
|
ModifyIndex: 3,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2016-05-13 00:38:25 +00:00
|
|
|
&structs.TxnResult{
|
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo",
|
|
|
|
Value: []byte("bar"),
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 1,
|
|
|
|
ModifyIndex: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnResult{
|
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/bar/baz",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 2,
|
|
|
|
ModifyIndex: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnResult{
|
|
|
|
KV: &structs.DirEntry{
|
|
|
|
Key: "foo/bar/zip",
|
|
|
|
RaftIndex: structs.RaftIndex{
|
|
|
|
CreateIndex: 3,
|
|
|
|
ModifyIndex: 3,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if len(results) != len(expected) {
|
|
|
|
t.Fatalf("bad: %v", results)
|
|
|
|
}
|
2017-04-20 18:42:22 +00:00
|
|
|
for i := range results {
|
2016-05-13 00:38:25 +00:00
|
|
|
if !reflect.DeepEqual(results[i], expected[i]) {
|
|
|
|
t.Fatalf("bad %d", i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStateStore_Txn_KVS_RO_Safety(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// Create KV entries in the state store.
|
|
|
|
testSetKey(t, s, 1, "foo", "bar")
|
|
|
|
testSetKey(t, s, 2, "foo/bar/baz", "baz")
|
|
|
|
testSetKey(t, s, 3, "foo/bar/zip", "zip")
|
|
|
|
|
|
|
|
// Set up a transaction that hits all the read-only operations.
|
|
|
|
ops := structs.TxnOps{
|
|
|
|
&structs.TxnOp{
|
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVSet,
|
2016-05-13 00:38:25 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo",
|
|
|
|
Value: []byte("nope"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVDelete,
|
2016-05-13 00:38:25 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/bar/baz",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.TxnOp{
|
|
|
|
KV: &structs.TxnKVOp{
|
2017-04-19 23:00:11 +00:00
|
|
|
Verb: api.KVDeleteTree,
|
2016-05-13 00:38:25 +00:00
|
|
|
DirEnt: structs.DirEntry{
|
|
|
|
Key: "foo/bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
results, errors := s.TxnRO(ops)
|
|
|
|
if len(results) > 0 {
|
|
|
|
t.Fatalf("bad: %v", results)
|
|
|
|
}
|
|
|
|
if len(errors) != len(ops) {
|
|
|
|
t.Fatalf("bad len: %d != %d", len(errors), len(ops))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the errors look reasonable (tombstone inserts cause the
|
|
|
|
// insert errors during the delete operations).
|
|
|
|
expected := []string{
|
|
|
|
"cannot insert in read-only transaction",
|
|
|
|
"cannot insert in read-only transaction",
|
2017-07-26 02:54:11 +00:00
|
|
|
"failed recursive deleting kvs entry",
|
2016-05-13 00:38:25 +00:00
|
|
|
}
|
|
|
|
if len(errors) != len(expected) {
|
|
|
|
t.Fatalf("bad len: %d != %d", len(errors), len(expected))
|
|
|
|
}
|
|
|
|
for i, msg := range expected {
|
|
|
|
if errors[i].OpIndex != i {
|
|
|
|
t.Fatalf("bad index: %d != %d", i, errors[i].OpIndex)
|
|
|
|
}
|
|
|
|
if !strings.Contains(errors[i].Error(), msg) {
|
|
|
|
t.Fatalf("bad %d: %v", i, errors[i].Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|