2017-01-13 19:47:16 +00:00
|
|
|
package state
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2020-06-05 19:28:03 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
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"
|
2017-01-13 19:47:16 +00:00
|
|
|
"github.com/hashicorp/consul/types"
|
2017-01-24 18:08:14 +00:00
|
|
|
"github.com/hashicorp/go-memdb"
|
2017-01-13 19:47:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestStateStore_SessionCreate_SessionGet(t *testing.T) {
|
2020-12-07 18:42:55 +00:00
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("too slow for testing.Short")
|
|
|
|
}
|
|
|
|
|
2017-01-13 19:47:16 +00:00
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// SessionGet returns nil if the session doesn't exist
|
2017-01-24 18:08:14 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2019-11-25 17:07:04 +00:00
|
|
|
idx, session, err := s.SessionGet(ws, testUUID(), nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if session != nil || err != nil {
|
|
|
|
t.Fatalf("expected (nil, nil), got: (%#v, %#v)", session, err)
|
|
|
|
}
|
|
|
|
if idx != 0 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Registering without a session ID is disallowed
|
|
|
|
err = s.SessionCreate(1, &structs.Session{})
|
|
|
|
if err != ErrMissingSessionID {
|
|
|
|
t.Fatalf("expected %#v, got: %#v", ErrMissingSessionID, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Invalid session behavior throws error
|
|
|
|
sess := &structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Behavior: "nope",
|
|
|
|
}
|
|
|
|
err = s.SessionCreate(1, sess)
|
|
|
|
if err == nil || !strings.Contains(err.Error(), "session behavior") {
|
|
|
|
t.Fatalf("expected session behavior error, got: %#v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Registering with an unknown node is disallowed
|
|
|
|
sess = &structs.Session{ID: testUUID()}
|
|
|
|
if err := s.SessionCreate(1, sess); err != ErrMissingNode {
|
|
|
|
t.Fatalf("expected %#v, got: %#v", ErrMissingNode, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// None of the errored operations modified the index
|
|
|
|
if idx := s.maxIndex("sessions"); idx != 0 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
2017-01-24 18:08:14 +00:00
|
|
|
if watchFired(ws) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
2017-01-13 19:47:16 +00:00
|
|
|
|
|
|
|
// Valid session is able to register
|
|
|
|
testRegisterNode(t, s, 1, "node1")
|
|
|
|
sess = &structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "node1",
|
|
|
|
}
|
|
|
|
if err := s.SessionCreate(2, sess); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if idx := s.maxIndex("sessions"); idx != 2 {
|
|
|
|
t.Fatalf("bad index: %s", err)
|
|
|
|
}
|
2017-01-24 18:08:14 +00:00
|
|
|
if !watchFired(ws) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
2017-01-13 19:47:16 +00:00
|
|
|
|
|
|
|
// Retrieve the session again
|
2017-01-24 18:08:14 +00:00
|
|
|
ws = memdb.NewWatchSet()
|
2019-11-25 17:07:04 +00:00
|
|
|
idx, session, err = s.SessionGet(ws, sess.ID, nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if idx != 2 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure the session looks correct and was assigned the
|
|
|
|
// proper default value for session behavior.
|
|
|
|
expect := &structs.Session{
|
|
|
|
ID: sess.ID,
|
|
|
|
Behavior: structs.SessionKeysRelease,
|
|
|
|
Node: "node1",
|
|
|
|
}
|
2019-11-25 17:07:04 +00:00
|
|
|
if session.ID != expect.ID {
|
|
|
|
t.Fatalf("bad session ID: expected %s, got %s", expect.ID, session.ID)
|
|
|
|
}
|
|
|
|
if session.Node != expect.Node {
|
|
|
|
t.Fatalf("bad session Node: expected %s, got %s", expect.Node, session.Node)
|
|
|
|
}
|
|
|
|
if session.Behavior != expect.Behavior {
|
|
|
|
t.Fatalf("bad session Behavior: expected %s, got %s", expect.Behavior, session.Behavior)
|
2017-01-13 19:47:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Registering with a non-existent check is disallowed
|
|
|
|
sess = &structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "node1",
|
|
|
|
Checks: []types.CheckID{"check1"},
|
|
|
|
}
|
|
|
|
err = s.SessionCreate(3, sess)
|
|
|
|
if err == nil || !strings.Contains(err.Error(), "Missing check") {
|
|
|
|
t.Fatalf("expected missing check error, got: %#v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Registering with a critical check is disallowed
|
2017-04-19 23:00:11 +00:00
|
|
|
testRegisterCheck(t, s, 3, "node1", "", "check1", api.HealthCritical)
|
2017-01-13 19:47:16 +00:00
|
|
|
err = s.SessionCreate(4, sess)
|
2017-04-19 23:00:11 +00:00
|
|
|
if err == nil || !strings.Contains(err.Error(), api.HealthCritical) {
|
2017-01-13 19:47:16 +00:00
|
|
|
t.Fatalf("expected critical state error, got: %#v", err)
|
|
|
|
}
|
2017-01-24 18:08:14 +00:00
|
|
|
if watchFired(ws) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
2017-01-13 19:47:16 +00:00
|
|
|
|
2017-01-24 18:08:14 +00:00
|
|
|
// Registering with a healthy check succeeds (doesn't hit the watch since
|
|
|
|
// we are looking at the old session).
|
2017-04-19 23:00:11 +00:00
|
|
|
testRegisterCheck(t, s, 4, "node1", "", "check1", api.HealthPassing)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err := s.SessionCreate(5, sess); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
2017-01-24 18:08:14 +00:00
|
|
|
if watchFired(ws) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
2017-01-13 19:47:16 +00:00
|
|
|
|
|
|
|
tx := s.db.Txn(false)
|
|
|
|
defer tx.Abort()
|
|
|
|
|
|
|
|
// Check mappings were inserted
|
|
|
|
{
|
2019-12-10 02:26:41 +00:00
|
|
|
|
2017-01-13 19:47:16 +00:00
|
|
|
check, err := tx.First("session_checks", "session", sess.ID)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if check == nil {
|
|
|
|
t.Fatalf("missing session check")
|
|
|
|
}
|
|
|
|
expectCheck := &sessionCheck{
|
|
|
|
Node: "node1",
|
2019-12-10 02:26:41 +00:00
|
|
|
CheckID: structs.CheckID{ID: "check1"},
|
2017-01-13 19:47:16 +00:00
|
|
|
Session: sess.ID,
|
|
|
|
}
|
2019-12-10 02:26:41 +00:00
|
|
|
|
|
|
|
actual := check.(*sessionCheck)
|
|
|
|
expectCheck.CheckID.EnterpriseMeta = actual.CheckID.EnterpriseMeta
|
|
|
|
expectCheck.EnterpriseMeta = actual.EnterpriseMeta
|
|
|
|
|
|
|
|
assert.Equal(t, expectCheck, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register a session against two checks.
|
|
|
|
testRegisterCheck(t, s, 5, "node1", "", "check2", api.HealthPassing)
|
|
|
|
sess2 := &structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "node1",
|
|
|
|
Checks: []types.CheckID{"check1", "check2"},
|
2017-01-13 19:47:16 +00:00
|
|
|
}
|
2019-12-10 02:26:41 +00:00
|
|
|
if err := s.SessionCreate(6, sess2); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
2017-01-13 19:47:16 +00:00
|
|
|
checks, err := tx.Get("session_checks", "session", sess2.ID)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
for i, check := 0, checks.Next(); check != nil; i, check = i+1, checks.Next() {
|
|
|
|
expectCheck := &sessionCheck{
|
|
|
|
Node: "node1",
|
2019-12-10 02:26:41 +00:00
|
|
|
CheckID: structs.CheckID{ID: types.CheckID(fmt.Sprintf("check%d", i+1))},
|
2017-01-13 19:47:16 +00:00
|
|
|
Session: sess2.ID,
|
|
|
|
}
|
2019-12-10 02:26:41 +00:00
|
|
|
|
|
|
|
actual := check.(*sessionCheck)
|
|
|
|
expectCheck.CheckID.EnterpriseMeta = actual.CheckID.EnterpriseMeta
|
|
|
|
expectCheck.EnterpriseMeta = actual.EnterpriseMeta
|
|
|
|
|
|
|
|
assert.Equal(t, expectCheck, actual)
|
2017-01-13 19:47:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pulling a nonexistent session gives the table index.
|
2019-11-25 17:07:04 +00:00
|
|
|
idx, session, err = s.SessionGet(nil, testUUID(), nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if session != nil {
|
|
|
|
t.Fatalf("expected not to get a session: %v", session)
|
|
|
|
}
|
|
|
|
if idx != 6 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-25 17:07:04 +00:00
|
|
|
func TestStateStore_SessionList(t *testing.T) {
|
2017-01-13 19:47:16 +00:00
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// Listing when no sessions exist returns nil
|
2017-01-24 18:08:14 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2019-11-25 17:07:04 +00:00
|
|
|
idx, res, err := s.SessionList(ws, nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if idx != 0 || res != nil || err != nil {
|
|
|
|
t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register some nodes
|
|
|
|
testRegisterNode(t, s, 1, "node1")
|
|
|
|
testRegisterNode(t, s, 2, "node2")
|
|
|
|
testRegisterNode(t, s, 3, "node3")
|
|
|
|
|
|
|
|
// Create some sessions in the state store
|
|
|
|
sessions := structs.Sessions{
|
|
|
|
&structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "node1",
|
|
|
|
Behavior: structs.SessionKeysDelete,
|
|
|
|
},
|
|
|
|
&structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "node2",
|
|
|
|
Behavior: structs.SessionKeysRelease,
|
|
|
|
},
|
|
|
|
&structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "node3",
|
|
|
|
Behavior: structs.SessionKeysDelete,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for i, session := range sessions {
|
|
|
|
if err := s.SessionCreate(uint64(4+i), session); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
}
|
2017-01-24 18:08:14 +00:00
|
|
|
if !watchFired(ws) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
2017-01-13 19:47:16 +00:00
|
|
|
|
|
|
|
// List out all of the sessions
|
2019-11-25 17:07:04 +00:00
|
|
|
idx, sessionList, err := s.SessionList(nil, nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if idx != 6 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
2019-11-25 17:07:04 +00:00
|
|
|
sessionMap := make(map[string]*structs.Session)
|
|
|
|
for _, session := range sessionList {
|
|
|
|
sessionMap[session.ID] = session
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, expect := range sessions {
|
|
|
|
assert.Equal(t, expect, sessionMap[expect.ID])
|
2017-01-13 19:47:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStateStore_NodeSessions(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// Listing sessions with no results returns nil
|
2017-01-24 18:08:14 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2019-11-25 17:07:04 +00:00
|
|
|
idx, res, err := s.NodeSessions(ws, "node1", nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if idx != 0 || res != nil || err != nil {
|
|
|
|
t.Fatalf("expected (0, nil, nil), got: (%d, %#v, %#v)", idx, res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the nodes
|
|
|
|
testRegisterNode(t, s, 1, "node1")
|
|
|
|
testRegisterNode(t, s, 2, "node2")
|
|
|
|
|
|
|
|
// Register some sessions with the nodes
|
|
|
|
sessions1 := structs.Sessions{
|
|
|
|
&structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "node1",
|
|
|
|
},
|
|
|
|
&structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "node1",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
sessions2 := []*structs.Session{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2017-01-13 19:47:16 +00:00
|
|
|
ID: testUUID(),
|
|
|
|
Node: "node2",
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2017-01-13 19:47:16 +00:00
|
|
|
ID: testUUID(),
|
|
|
|
Node: "node2",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for i, sess := range append(sessions1, sessions2...) {
|
|
|
|
if err := s.SessionCreate(uint64(3+i), sess); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
}
|
2017-01-24 18:08:14 +00:00
|
|
|
if !watchFired(ws) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
2017-01-13 19:47:16 +00:00
|
|
|
|
|
|
|
// Query all of the sessions associated with a specific
|
|
|
|
// node in the state store.
|
2017-01-24 18:08:14 +00:00
|
|
|
ws1 := memdb.NewWatchSet()
|
2019-11-25 17:07:04 +00:00
|
|
|
idx, res, err = s.NodeSessions(ws1, "node1", nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if len(res) != len(sessions1) {
|
|
|
|
t.Fatalf("bad: %#v", res)
|
|
|
|
}
|
|
|
|
if idx != 6 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
|
2017-01-24 18:08:14 +00:00
|
|
|
ws2 := memdb.NewWatchSet()
|
2019-11-25 17:07:04 +00:00
|
|
|
idx, res, err = s.NodeSessions(ws2, "node2", nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if len(res) != len(sessions2) {
|
|
|
|
t.Fatalf("bad: %#v", res)
|
|
|
|
}
|
|
|
|
if idx != 6 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
2017-01-24 18:08:14 +00:00
|
|
|
|
|
|
|
// Destroying a session on node1 should not affect node2's watch.
|
2019-11-25 17:07:04 +00:00
|
|
|
if err := s.SessionDestroy(100, sessions1[0].ID, nil); err != nil {
|
2017-01-24 18:08:14 +00:00
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if !watchFired(ws1) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
|
|
|
if watchFired(ws2) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
2017-01-13 19:47:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestStateStore_SessionDestroy(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// Session destroy is idempotent and returns no error
|
|
|
|
// if the session doesn't exist.
|
2019-11-25 17:07:04 +00:00
|
|
|
if err := s.SessionDestroy(1, testUUID(), nil); err != nil {
|
2017-01-13 19:47:16 +00:00
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure the index was not updated if nothing was destroyed.
|
|
|
|
if idx := s.maxIndex("sessions"); idx != 0 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register a node.
|
|
|
|
testRegisterNode(t, s, 1, "node1")
|
|
|
|
|
|
|
|
// Register a new session
|
|
|
|
sess := &structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "node1",
|
|
|
|
}
|
|
|
|
if err := s.SessionCreate(2, sess); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Destroy the session.
|
2019-11-25 17:07:04 +00:00
|
|
|
if err := s.SessionDestroy(3, sess.ID, nil); err != nil {
|
2017-01-13 19:47:16 +00:00
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the index was updated
|
|
|
|
if idx := s.maxIndex("sessions"); idx != 3 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the session is really gone.
|
|
|
|
tx := s.db.Txn(false)
|
|
|
|
sessions, err := tx.Get("sessions", "id")
|
|
|
|
if err != nil || sessions.Next() != nil {
|
|
|
|
t.Fatalf("session should not exist")
|
|
|
|
}
|
|
|
|
tx.Abort()
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStateStore_Session_Snapshot_Restore(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// Register some nodes and checks.
|
|
|
|
testRegisterNode(t, s, 1, "node1")
|
|
|
|
testRegisterNode(t, s, 2, "node2")
|
|
|
|
testRegisterNode(t, s, 3, "node3")
|
2017-04-19 23:00:11 +00:00
|
|
|
testRegisterCheck(t, s, 4, "node1", "", "check1", api.HealthPassing)
|
2017-01-13 19:47:16 +00:00
|
|
|
|
|
|
|
// Create some sessions in the state store.
|
|
|
|
session1 := testUUID()
|
|
|
|
sessions := structs.Sessions{
|
|
|
|
&structs.Session{
|
|
|
|
ID: session1,
|
|
|
|
Node: "node1",
|
|
|
|
Behavior: structs.SessionKeysDelete,
|
|
|
|
Checks: []types.CheckID{"check1"},
|
|
|
|
},
|
|
|
|
&structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "node2",
|
|
|
|
Behavior: structs.SessionKeysRelease,
|
|
|
|
LockDelay: 10 * time.Second,
|
|
|
|
},
|
|
|
|
&structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "node3",
|
|
|
|
Behavior: structs.SessionKeysDelete,
|
|
|
|
TTL: "1.5s",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for i, session := range sessions {
|
|
|
|
if err := s.SessionCreate(uint64(5+i), session); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Snapshot the sessions.
|
|
|
|
snap := s.Snapshot()
|
|
|
|
defer snap.Close()
|
|
|
|
|
|
|
|
// Alter the real state store.
|
2019-11-25 17:07:04 +00:00
|
|
|
if err := s.SessionDestroy(8, session1, nil); err != nil {
|
2017-01-13 19:47:16 +00:00
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify the snapshot.
|
|
|
|
if idx := snap.LastIndex(); idx != 7 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
iter, err := snap.Sessions()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
var dump structs.Sessions
|
|
|
|
for session := iter.Next(); session != nil; session = iter.Next() {
|
|
|
|
sess := session.(*structs.Session)
|
|
|
|
dump = append(dump, sess)
|
|
|
|
|
|
|
|
found := false
|
2017-04-20 18:42:22 +00:00
|
|
|
for i := range sessions {
|
2017-01-13 19:47:16 +00:00
|
|
|
if sess.ID == sessions[i].ID {
|
|
|
|
if !reflect.DeepEqual(sess, sessions[i]) {
|
|
|
|
t.Fatalf("bad: %#v", sess)
|
|
|
|
}
|
|
|
|
found = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
t.Fatalf("bad: %#v", sess)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Restore the sessions into a new state store.
|
|
|
|
func() {
|
|
|
|
s := testStateStore(t)
|
|
|
|
restore := s.Restore()
|
|
|
|
for _, session := range dump {
|
|
|
|
if err := restore.Session(session); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
restore.Commit()
|
|
|
|
|
|
|
|
// Read the restored sessions back out and verify that they
|
|
|
|
// match.
|
2019-11-25 17:07:04 +00:00
|
|
|
idx, res, err := s.SessionList(nil, nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if idx != 7 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
for _, sess := range res {
|
|
|
|
found := false
|
2017-04-20 18:42:22 +00:00
|
|
|
for i := range sessions {
|
2017-01-13 19:47:16 +00:00
|
|
|
if sess.ID == sessions[i].ID {
|
|
|
|
if !reflect.DeepEqual(sess, sessions[i]) {
|
|
|
|
t.Fatalf("bad: %#v", sess)
|
|
|
|
}
|
|
|
|
found = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
t.Fatalf("bad: %#v", sess)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the index was updated.
|
|
|
|
if idx := s.maxIndex("sessions"); idx != 7 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Manually verify that the session check mapping got restored.
|
|
|
|
tx := s.db.Txn(false)
|
|
|
|
defer tx.Abort()
|
|
|
|
|
|
|
|
check, err := tx.First("session_checks", "session", session1)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if check == nil {
|
|
|
|
t.Fatalf("missing session check")
|
|
|
|
}
|
|
|
|
expectCheck := &sessionCheck{
|
|
|
|
Node: "node1",
|
2019-12-10 02:26:41 +00:00
|
|
|
CheckID: structs.CheckID{ID: "check1"},
|
2017-01-13 19:47:16 +00:00
|
|
|
Session: session1,
|
|
|
|
}
|
2019-12-10 02:26:41 +00:00
|
|
|
|
|
|
|
actual := check.(*sessionCheck)
|
|
|
|
expectCheck.CheckID.EnterpriseMeta = actual.CheckID.EnterpriseMeta
|
|
|
|
expectCheck.EnterpriseMeta = actual.EnterpriseMeta
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(actual, expectCheck) {
|
2017-01-13 19:47:16 +00:00
|
|
|
t.Fatalf("expected %#v, got: %#v", expectCheck, actual)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStateStore_Session_Invalidate_DeleteNode(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// Set up our test environment.
|
|
|
|
if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
session := &structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "foo",
|
|
|
|
}
|
|
|
|
if err := s.SessionCreate(14, session); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-01-24 18:08:14 +00:00
|
|
|
// Delete the node and make sure the watch fires.
|
|
|
|
ws := memdb.NewWatchSet()
|
2020-06-05 19:28:03 +00:00
|
|
|
_, _, err := s.SessionGet(ws, session.ID, nil)
|
2017-01-24 18:08:14 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if err := s.DeleteNode(15, "foo"); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if !watchFired(ws) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
2017-01-13 19:47:16 +00:00
|
|
|
|
|
|
|
// Lookup by ID, should be nil.
|
2020-06-05 19:28:03 +00:00
|
|
|
idx, s2, err := s.SessionGet(nil, session.ID, nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if s2 != nil {
|
|
|
|
t.Fatalf("session should be invalidated")
|
|
|
|
}
|
|
|
|
if idx != 15 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStateStore_Session_Invalidate_DeleteService(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// Set up our test environment.
|
|
|
|
if err := s.EnsureNode(11, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if err := s.EnsureService(12, "foo", &structs.NodeService{ID: "api", Service: "api", Tags: nil, Address: "", Port: 5000}); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
check := &structs.HealthCheck{
|
|
|
|
Node: "foo",
|
|
|
|
CheckID: "api",
|
|
|
|
Name: "Can connect",
|
2017-04-19 23:00:11 +00:00
|
|
|
Status: api.HealthPassing,
|
2017-01-13 19:47:16 +00:00
|
|
|
ServiceID: "api",
|
|
|
|
}
|
|
|
|
if err := s.EnsureCheck(13, check); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
session := &structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "foo",
|
|
|
|
Checks: []types.CheckID{"api"},
|
|
|
|
}
|
|
|
|
if err := s.SessionCreate(14, session); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-01-24 18:08:14 +00:00
|
|
|
// Delete the service and make sure the watch fires.
|
|
|
|
ws := memdb.NewWatchSet()
|
2020-06-05 19:28:03 +00:00
|
|
|
_, _, err := s.SessionGet(ws, session.ID, nil)
|
2017-01-24 18:08:14 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
2019-12-10 02:26:41 +00:00
|
|
|
if err := s.DeleteService(15, "foo", "api", nil); err != nil {
|
2017-01-24 18:08:14 +00:00
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if !watchFired(ws) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
2017-01-13 19:47:16 +00:00
|
|
|
|
|
|
|
// Lookup by ID, should be nil.
|
2020-06-05 19:28:03 +00:00
|
|
|
idx, s2, err := s.SessionGet(nil, session.ID, nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if s2 != nil {
|
|
|
|
t.Fatalf("session should be invalidated")
|
|
|
|
}
|
|
|
|
if idx != 15 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStateStore_Session_Invalidate_Critical_Check(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// Set up our test environment.
|
|
|
|
if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
check := &structs.HealthCheck{
|
|
|
|
Node: "foo",
|
|
|
|
CheckID: "bar",
|
2017-04-19 23:00:11 +00:00
|
|
|
Status: api.HealthPassing,
|
2017-01-13 19:47:16 +00:00
|
|
|
}
|
|
|
|
if err := s.EnsureCheck(13, check); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
session := &structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "foo",
|
|
|
|
Checks: []types.CheckID{"bar"},
|
|
|
|
}
|
|
|
|
if err := s.SessionCreate(14, session); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Invalidate the check and make sure the watches fire.
|
2017-01-24 18:08:14 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2020-06-05 19:28:03 +00:00
|
|
|
_, _, err := s.SessionGet(ws, session.ID, nil)
|
2017-01-24 18:08:14 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
2017-04-19 23:00:11 +00:00
|
|
|
check.Status = api.HealthCritical
|
2017-01-24 18:08:14 +00:00
|
|
|
if err := s.EnsureCheck(15, check); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if !watchFired(ws) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
2017-01-13 19:47:16 +00:00
|
|
|
|
|
|
|
// Lookup by ID, should be nil.
|
2020-06-05 19:28:03 +00:00
|
|
|
idx, s2, err := s.SessionGet(nil, session.ID, nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if s2 != nil {
|
|
|
|
t.Fatalf("session should be invalidated")
|
|
|
|
}
|
|
|
|
if idx != 15 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStateStore_Session_Invalidate_DeleteCheck(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// Set up our test environment.
|
|
|
|
if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
check := &structs.HealthCheck{
|
|
|
|
Node: "foo",
|
|
|
|
CheckID: "bar",
|
2017-04-19 23:00:11 +00:00
|
|
|
Status: api.HealthPassing,
|
2017-01-13 19:47:16 +00:00
|
|
|
}
|
|
|
|
if err := s.EnsureCheck(13, check); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
session := &structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "foo",
|
|
|
|
Checks: []types.CheckID{"bar"},
|
|
|
|
}
|
|
|
|
if err := s.SessionCreate(14, session); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete the check and make sure the watches fire.
|
2017-01-24 18:08:14 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2020-06-05 19:28:03 +00:00
|
|
|
_, _, err := s.SessionGet(ws, session.ID, nil)
|
2017-01-24 18:08:14 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
2019-12-10 02:26:41 +00:00
|
|
|
if err := s.DeleteCheck(15, "foo", "bar", nil); err != nil {
|
2017-01-24 18:08:14 +00:00
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if !watchFired(ws) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
2017-01-13 19:47:16 +00:00
|
|
|
|
|
|
|
// Lookup by ID, should be nil.
|
2020-06-05 19:28:03 +00:00
|
|
|
idx, s2, err := s.SessionGet(nil, session.ID, nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if s2 != nil {
|
|
|
|
t.Fatalf("session should be invalidated")
|
|
|
|
}
|
|
|
|
if idx != 15 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Manually make sure the session checks mapping is clear.
|
|
|
|
tx := s.db.Txn(false)
|
|
|
|
mapping, err := tx.First("session_checks", "session", session.ID)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if mapping != nil {
|
|
|
|
t.Fatalf("unexpected session check")
|
|
|
|
}
|
|
|
|
tx.Abort()
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStateStore_Session_Invalidate_Key_Unlock_Behavior(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// Set up our test environment.
|
|
|
|
if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
session := &structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "foo",
|
|
|
|
LockDelay: 50 * time.Millisecond,
|
|
|
|
}
|
|
|
|
if err := s.SessionCreate(4, session); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lock a key with the session.
|
|
|
|
d := &structs.DirEntry{
|
|
|
|
Key: "/foo",
|
|
|
|
Flags: 42,
|
|
|
|
Value: []byte("test"),
|
|
|
|
Session: session.ID,
|
|
|
|
}
|
|
|
|
ok, err := s.KVSLock(5, d)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("unexpected fail")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete the node and make sure the watches fire.
|
2017-01-24 18:08:14 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2020-06-05 19:28:03 +00:00
|
|
|
_, _, err = s.SessionGet(ws, session.ID, nil)
|
2017-01-24 18:08:14 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if err := s.DeleteNode(6, "foo"); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if !watchFired(ws) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
2017-01-13 19:47:16 +00:00
|
|
|
|
|
|
|
// Lookup by ID, should be nil.
|
2020-06-05 19:28:03 +00:00
|
|
|
idx, s2, err := s.SessionGet(nil, session.ID, nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if s2 != nil {
|
|
|
|
t.Fatalf("session should be invalidated")
|
|
|
|
}
|
|
|
|
if idx != 6 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Key should be unlocked.
|
2019-11-25 17:57:35 +00:00
|
|
|
idx, d2, err := s.KVSGet(nil, "/foo", nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if d2.ModifyIndex != 6 {
|
|
|
|
t.Fatalf("bad index: %v", d2.ModifyIndex)
|
|
|
|
}
|
|
|
|
if d2.LockIndex != 1 {
|
|
|
|
t.Fatalf("bad: %v", *d2)
|
|
|
|
}
|
|
|
|
if d2.Session != "" {
|
|
|
|
t.Fatalf("bad: %v", *d2)
|
|
|
|
}
|
|
|
|
if idx != 6 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Key should have a lock delay.
|
2019-11-25 17:57:35 +00:00
|
|
|
expires := s.KVSLockDelay("/foo", nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if expires.Before(time.Now().Add(30 * time.Millisecond)) {
|
|
|
|
t.Fatalf("Bad: %v", expires)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStateStore_Session_Invalidate_Key_Delete_Behavior(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// Set up our test environment.
|
|
|
|
if err := s.EnsureNode(3, &structs.Node{Node: "foo", Address: "127.0.0.1"}); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
session := &structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "foo",
|
|
|
|
LockDelay: 50 * time.Millisecond,
|
|
|
|
Behavior: structs.SessionKeysDelete,
|
|
|
|
}
|
|
|
|
if err := s.SessionCreate(4, session); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lock a key with the session.
|
|
|
|
d := &structs.DirEntry{
|
|
|
|
Key: "/bar",
|
|
|
|
Flags: 42,
|
|
|
|
Value: []byte("test"),
|
|
|
|
Session: session.ID,
|
|
|
|
}
|
|
|
|
ok, err := s.KVSLock(5, d)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("unexpected fail")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete the node and make sure the watches fire.
|
2017-01-24 18:08:14 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2020-06-05 19:28:03 +00:00
|
|
|
_, _, err = s.SessionGet(ws, session.ID, nil)
|
2017-01-24 18:08:14 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if err := s.DeleteNode(6, "foo"); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if !watchFired(ws) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
2017-01-13 19:47:16 +00:00
|
|
|
|
|
|
|
// Lookup by ID, should be nil.
|
2020-06-05 19:28:03 +00:00
|
|
|
idx, s2, err := s.SessionGet(nil, session.ID, nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if s2 != nil {
|
|
|
|
t.Fatalf("session should be invalidated")
|
|
|
|
}
|
|
|
|
if idx != 6 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Key should be deleted.
|
2019-11-25 17:57:35 +00:00
|
|
|
idx, d2, err := s.KVSGet(nil, "/bar", nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if d2 != nil {
|
|
|
|
t.Fatalf("unexpected deleted key")
|
|
|
|
}
|
|
|
|
if idx != 6 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Key should have a lock delay.
|
2019-11-25 17:57:35 +00:00
|
|
|
expires := s.KVSLockDelay("/bar", nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if expires.Before(time.Now().Add(30 * time.Millisecond)) {
|
|
|
|
t.Fatalf("Bad: %v", expires)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStateStore_Session_Invalidate_PreparedQuery_Delete(t *testing.T) {
|
|
|
|
s := testStateStore(t)
|
|
|
|
|
|
|
|
// Set up our test environment.
|
|
|
|
testRegisterNode(t, s, 1, "foo")
|
|
|
|
testRegisterService(t, s, 2, "foo", "redis")
|
|
|
|
session := &structs.Session{
|
|
|
|
ID: testUUID(),
|
|
|
|
Node: "foo",
|
|
|
|
}
|
|
|
|
if err := s.SessionCreate(3, session); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
query := &structs.PreparedQuery{
|
|
|
|
ID: testUUID(),
|
|
|
|
Session: session.ID,
|
|
|
|
Service: structs.ServiceQuery{
|
|
|
|
Service: "redis",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if err := s.PreparedQuerySet(4, query); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Invalidate the session and make sure the watches fire.
|
2017-01-24 18:08:14 +00:00
|
|
|
ws := memdb.NewWatchSet()
|
2020-06-05 19:28:03 +00:00
|
|
|
_, _, err := s.SessionGet(ws, session.ID, nil)
|
2017-01-24 18:08:14 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
2019-11-25 17:07:04 +00:00
|
|
|
if err := s.SessionDestroy(5, session.ID, nil); err != nil {
|
2017-01-24 18:08:14 +00:00
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if !watchFired(ws) {
|
|
|
|
t.Fatalf("bad")
|
|
|
|
}
|
2017-01-13 19:47:16 +00:00
|
|
|
|
|
|
|
// Make sure the session is gone.
|
2020-06-05 19:28:03 +00:00
|
|
|
idx, s2, err := s.SessionGet(nil, session.ID, nil)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if s2 != nil {
|
|
|
|
t.Fatalf("session should be invalidated")
|
|
|
|
}
|
|
|
|
if idx != 5 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the query is gone and the index is updated.
|
2017-01-24 17:22:07 +00:00
|
|
|
idx, q2, err := s.PreparedQueryGet(nil, query.ID)
|
2017-01-13 19:47:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if idx != 5 {
|
|
|
|
t.Fatalf("bad index: %d", idx)
|
|
|
|
}
|
|
|
|
if q2 != nil {
|
|
|
|
t.Fatalf("bad: %v", q2)
|
|
|
|
}
|
|
|
|
}
|