mirror of
https://github.com/HDT3213/godis.git
synced 2025-10-05 16:57:06 +08:00

wip: raft does not care about migrating wip: optimize code wip: raft election wip wip: fix raft leader missing log entries wip fix a dead lock batch set slot route wip: raft persist wip refactor cluster suite remove relay rename relay2 refactor: allow customizing client factory test raft refactor re-balance avoid errors caused by inconsistent status on follower nodes during raft commits test raft election
93 lines
3.4 KiB
Go
93 lines
3.4 KiB
Go
package cluster
|
|
|
|
import (
|
|
"github.com/hdt3213/godis/lib/utils"
|
|
"github.com/hdt3213/godis/redis/connection"
|
|
"github.com/hdt3213/godis/redis/protocol"
|
|
"github.com/hdt3213/godis/redis/protocol/asserts"
|
|
"testing"
|
|
)
|
|
|
|
func TestMultiExecOnSelf(t *testing.T) {
|
|
testNodeA := testCluster[0]
|
|
conn := new(connection.FakeConn)
|
|
testNodeA.db.Exec(conn, utils.ToCmdLine("FLUSHALL"))
|
|
result := testNodeA.Exec(conn, toArgs("MULTI"))
|
|
asserts.AssertNotError(t, result)
|
|
key := "{abc}" + utils.RandString(10)
|
|
value := utils.RandString(10)
|
|
testNodeA.Exec(conn, utils.ToCmdLine("set", key, value))
|
|
key2 := "{abc}" + utils.RandString(10)
|
|
testNodeA.Exec(conn, utils.ToCmdLine("rpush", key2, value))
|
|
result = testNodeA.Exec(conn, utils.ToCmdLine("exec"))
|
|
asserts.AssertNotError(t, result)
|
|
result = testNodeA.Exec(conn, utils.ToCmdLine("get", key))
|
|
asserts.AssertBulkReply(t, result, value)
|
|
result = testNodeA.Exec(conn, utils.ToCmdLine("lrange", key2, "0", "-1"))
|
|
asserts.AssertMultiBulkReply(t, result, []string{value})
|
|
}
|
|
|
|
func TestEmptyMulti(t *testing.T) {
|
|
testNodeA := testCluster[0]
|
|
conn := new(connection.FakeConn)
|
|
testNodeA.Exec(conn, utils.ToCmdLine("FLUSHALL"))
|
|
result := testNodeA.Exec(conn, toArgs("MULTI"))
|
|
asserts.AssertNotError(t, result)
|
|
result = testNodeA.Exec(conn, utils.ToCmdLine("GET", "a"))
|
|
asserts.AssertNotError(t, result)
|
|
result = testNodeA.Exec(conn, utils.ToCmdLine("EXEC"))
|
|
asserts.AssertNotError(t, result)
|
|
mbr := result.(*protocol.MultiRawReply)
|
|
asserts.AssertNullBulk(t, mbr.Replies[0])
|
|
}
|
|
|
|
func TestMultiExecOnOthers(t *testing.T) {
|
|
testNodeA := testCluster[0]
|
|
conn := new(connection.FakeConn)
|
|
testNodeA.Exec(conn, utils.ToCmdLine("FLUSHALL"))
|
|
result := testNodeA.Exec(conn, toArgs("MULTI"))
|
|
asserts.AssertNotError(t, result)
|
|
key := utils.RandString(10)
|
|
value := utils.RandString(10)
|
|
testNodeA.Exec(conn, utils.ToCmdLine("rpush", key, value))
|
|
testNodeA.Exec(conn, utils.ToCmdLine("lrange", key, "0", "-1"))
|
|
|
|
cmdLines := conn.GetQueuedCmdLine()
|
|
rawResp := execMultiOnOtherNode(testNodeA, conn, testNodeA.self, nil, cmdLines)
|
|
rep := rawResp.(*protocol.MultiRawReply)
|
|
if len(rep.Replies) != 2 {
|
|
t.Errorf("expect 2 replies actual %d", len(rep.Replies))
|
|
}
|
|
asserts.AssertMultiBulkReply(t, rep.Replies[1], []string{value})
|
|
}
|
|
|
|
func TestWatch(t *testing.T) {
|
|
testNodeA := testCluster[0]
|
|
for i := 0; i < 10; i++ {
|
|
conn := new(connection.FakeConn)
|
|
key := "{1}" + utils.RandString(10)
|
|
key2 := "{1}" + utils.RandString(10) // use hash tag to ensure same slot
|
|
value := utils.RandString(10)
|
|
testNodeA.Exec(conn, utils.ToCmdLine("FLUSHALL"))
|
|
testNodeA.Exec(conn, utils.ToCmdLine("watch", key))
|
|
testNodeA.Exec(conn, utils.ToCmdLine("set", key, value))
|
|
result := testNodeA.Exec(conn, toArgs("MULTI"))
|
|
asserts.AssertNotError(t, result)
|
|
value2 := utils.RandString(10)
|
|
testNodeA.Exec(conn, utils.ToCmdLine("set", key2, value2))
|
|
result = testNodeA.Exec(conn, utils.ToCmdLine("exec"))
|
|
asserts.AssertNotError(t, result)
|
|
result = testNodeA.Exec(conn, utils.ToCmdLine("get", key2))
|
|
asserts.AssertNullBulk(t, result)
|
|
|
|
testNodeA.Exec(conn, utils.ToCmdLine("watch", key))
|
|
result = testNodeA.Exec(conn, toArgs("MULTI"))
|
|
asserts.AssertNotError(t, result)
|
|
testNodeA.Exec(conn, utils.ToCmdLine("set", key2, value2))
|
|
result = testNodeA.Exec(conn, utils.ToCmdLine("exec"))
|
|
asserts.AssertNotError(t, result)
|
|
result = testNodeA.Exec(conn, utils.ToCmdLine("get", key2))
|
|
asserts.AssertBulkReply(t, result, value2)
|
|
}
|
|
}
|