mirror of
https://github.com/nalgeon/redka.git
synced 2025-11-02 20:24:02 +08:00
refactor: command - better encapsulation and simpler tests
This commit is contained in:
@@ -1,11 +1,9 @@
|
||||
package string_test
|
||||
package string
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/nalgeon/redka/internal/command"
|
||||
str "github.com/nalgeon/redka/internal/command/string"
|
||||
"github.com/nalgeon/redka/internal/core"
|
||||
"github.com/nalgeon/redka/internal/redis"
|
||||
"github.com/nalgeon/redka/internal/testx"
|
||||
@@ -13,128 +11,125 @@ import (
|
||||
|
||||
func TestSetParse(t *testing.T) {
|
||||
tests := []struct {
|
||||
name string
|
||||
args [][]byte
|
||||
want str.Set
|
||||
cmd string
|
||||
want Set
|
||||
err error
|
||||
}{
|
||||
{
|
||||
name: "set",
|
||||
args: command.BuildArgs("set"),
|
||||
want: str.Set{},
|
||||
cmd: "set",
|
||||
want: Set{},
|
||||
err: redis.ErrInvalidArgNum,
|
||||
},
|
||||
{
|
||||
name: "set name",
|
||||
args: command.BuildArgs("set", "name"),
|
||||
want: str.Set{},
|
||||
cmd: "set name",
|
||||
want: Set{},
|
||||
err: redis.ErrInvalidArgNum,
|
||||
},
|
||||
{
|
||||
name: "set name alice",
|
||||
args: command.BuildArgs("set", "name", "alice"),
|
||||
want: str.Set{Key: "name", Value: []byte("alice")},
|
||||
cmd: "set name alice",
|
||||
want: Set{key: "name", value: []byte("alice")},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
name: "set name alice nx",
|
||||
args: command.BuildArgs("set", "name", "alice", "nx"),
|
||||
want: str.Set{Key: "name", Value: []byte("alice"), IfNX: true},
|
||||
cmd: "set name alice nx",
|
||||
want: Set{key: "name", value: []byte("alice"), ifNX: true},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
name: "set name alice xx",
|
||||
args: command.BuildArgs("set", "name", "alice", "xx"),
|
||||
want: str.Set{Key: "name", Value: []byte("alice"), IfXX: true},
|
||||
cmd: "set name alice xx",
|
||||
want: Set{key: "name", value: []byte("alice"), ifXX: true},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
name: "set name alice nx xx",
|
||||
args: command.BuildArgs("set", "name", "alice", "nx", "xx"),
|
||||
want: str.Set{},
|
||||
cmd: "set name alice nx xx",
|
||||
want: Set{},
|
||||
err: redis.ErrSyntaxError,
|
||||
},
|
||||
{
|
||||
name: "set name alice ex 10",
|
||||
args: command.BuildArgs("set", "name", "alice", "ex", "10"),
|
||||
want: str.Set{Key: "name", Value: []byte("alice"), TTL: 10 * time.Second},
|
||||
cmd: "set name alice ex 10",
|
||||
want: Set{key: "name", value: []byte("alice"), ttl: 10 * time.Second},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
name: "set name alice ex 0",
|
||||
args: command.BuildArgs("set", "name", "alice", "ex", "0"),
|
||||
want: str.Set{Key: "name", Value: []byte("alice"), TTL: 0},
|
||||
cmd: "set name alice ex 0",
|
||||
want: Set{key: "name", value: []byte("alice"), ttl: 0},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
name: "set name alice px 10",
|
||||
args: command.BuildArgs("set", "name", "alice", "px", "10"),
|
||||
want: str.Set{Key: "name", Value: []byte("alice"), TTL: 10 * time.Millisecond},
|
||||
cmd: "set name alice px 10",
|
||||
want: Set{key: "name", value: []byte("alice"), ttl: 10 * time.Millisecond},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
name: "set name alice exat 1577882096",
|
||||
args: command.BuildArgs("set", "name", "alice", "exat", "1577882096"),
|
||||
want: str.Set{Key: "name", Value: []byte("alice"),
|
||||
At: time.Date(2020, 1, 1, 12, 34, 56, 0, time.UTC)},
|
||||
cmd: "set name alice exat 1577882096",
|
||||
want: Set{
|
||||
key: "name", value: []byte("alice"),
|
||||
at: time.Date(2020, 1, 1, 12, 34, 56, 0, time.UTC),
|
||||
},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
name: "set name alice pxat 1577882096000",
|
||||
args: command.BuildArgs("set", "name", "alice", "exat", "1577882096000"),
|
||||
want: str.Set{Key: "name", Value: []byte("alice"),
|
||||
At: time.Date(2020, 1, 1, 12, 34, 56, 0, time.UTC)},
|
||||
cmd: "set name alice pxat 1577882096000",
|
||||
want: Set{
|
||||
key: "name", value: []byte("alice"),
|
||||
at: time.Date(2020, 1, 1, 12, 34, 56, 0, time.UTC),
|
||||
},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
name: "set name alice keepttl",
|
||||
args: command.BuildArgs("set", "name", "alice", "keepttl"),
|
||||
want: str.Set{Key: "name", Value: []byte("alice"), KeepTTL: true},
|
||||
cmd: "set name alice keepttl",
|
||||
want: Set{key: "name", value: []byte("alice"), keepTTL: true},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
name: "set name alice ex 10 keepttl",
|
||||
args: command.BuildArgs("set", "name", "alice", "ex", "10", "keepttl"),
|
||||
want: str.Set{},
|
||||
cmd: "set name alice ex 10 keepttl",
|
||||
want: Set{},
|
||||
err: redis.ErrSyntaxError,
|
||||
},
|
||||
{
|
||||
name: "set name alice nx ex 10",
|
||||
args: command.BuildArgs("set", "name", "alice", "nx", "ex", "10"),
|
||||
want: str.Set{Key: "name", Value: []byte("alice"), IfNX: true, TTL: 10 * time.Second},
|
||||
err: nil,
|
||||
cmd: "set name alice nx ex 10",
|
||||
want: Set{
|
||||
key: "name", value: []byte("alice"),
|
||||
ifNX: true, ttl: 10 * time.Second,
|
||||
},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
name: "set name alice xx px 10",
|
||||
args: command.BuildArgs("set", "name", "alice", "xx", "px", "10"),
|
||||
want: str.Set{Key: "name", Value: []byte("alice"), IfXX: true, TTL: 10 * time.Millisecond},
|
||||
err: nil,
|
||||
cmd: "set name alice xx px 10",
|
||||
want: Set{
|
||||
key: "name", value: []byte("alice"),
|
||||
ifXX: true, ttl: 10 * time.Millisecond,
|
||||
},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
name: "set name alice ex 10 nx",
|
||||
args: command.BuildArgs("set", "name", "alice", "ex", "10", "nx"),
|
||||
want: str.Set{Key: "name", Value: []byte("alice"), IfNX: true, TTL: 10 * time.Second},
|
||||
err: nil,
|
||||
cmd: "set name alice ex 10 nx",
|
||||
want: Set{
|
||||
key: "name", value: []byte("alice"),
|
||||
ifNX: true, ttl: 10 * time.Second,
|
||||
},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
name: "set name alice nx get ex 10",
|
||||
args: command.BuildArgs("set", "name", "alice", "nx", "ex", "10"),
|
||||
want: str.Set{Key: "name", Value: []byte("alice"), IfNX: true, Get: true, TTL: 10 * time.Second},
|
||||
err: nil,
|
||||
cmd: "set name alice nx get ex 10",
|
||||
want: Set{
|
||||
key: "name", value: []byte("alice"),
|
||||
ifNX: true, get: true, ttl: 10 * time.Second,
|
||||
},
|
||||
err: nil,
|
||||
},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
t.Run(test.name, func(t *testing.T) {
|
||||
cmd, err := command.Parse(test.args)
|
||||
t.Run(test.cmd, func(t *testing.T) {
|
||||
cmd, err := redis.Parse(ParseSet, test.cmd)
|
||||
testx.AssertEqual(t, err, test.err)
|
||||
if err == nil {
|
||||
setCmd := cmd.(*str.Set)
|
||||
testx.AssertEqual(t, setCmd.Key, test.want.Key)
|
||||
testx.AssertEqual(t, setCmd.Value, test.want.Value)
|
||||
testx.AssertEqual(t, setCmd.IfNX, test.want.IfNX)
|
||||
testx.AssertEqual(t, setCmd.IfXX, test.want.IfXX)
|
||||
testx.AssertEqual(t, setCmd.TTL, test.want.TTL)
|
||||
testx.AssertEqual(t, cmd.key, test.want.key)
|
||||
testx.AssertEqual(t, cmd.value, test.want.value)
|
||||
testx.AssertEqual(t, cmd.ifNX, test.want.ifNX)
|
||||
testx.AssertEqual(t, cmd.ifXX, test.want.ifXX)
|
||||
testx.AssertEqual(t, cmd.ttl, test.want.ttl)
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -145,77 +140,67 @@ func TestSetExec(t *testing.T) {
|
||||
defer db.Close()
|
||||
|
||||
tests := []struct {
|
||||
name string
|
||||
cmd *str.Set
|
||||
res any
|
||||
out string
|
||||
cmd string
|
||||
res any
|
||||
out string
|
||||
}{
|
||||
{
|
||||
name: "set",
|
||||
cmd: command.MustParse[*str.Set]("set name alice"),
|
||||
res: true,
|
||||
out: "OK",
|
||||
cmd: "set name alice",
|
||||
res: true,
|
||||
out: "OK",
|
||||
},
|
||||
{
|
||||
name: "set nx conflict",
|
||||
cmd: command.MustParse[*str.Set]("set name alice nx"),
|
||||
res: false,
|
||||
out: "(nil)",
|
||||
cmd: "set name alice nx",
|
||||
res: false,
|
||||
out: "(nil)",
|
||||
},
|
||||
{
|
||||
name: "set nx",
|
||||
cmd: command.MustParse[*str.Set]("set age alice nx"),
|
||||
res: true,
|
||||
out: "OK",
|
||||
cmd: "set age alice nx",
|
||||
res: true,
|
||||
out: "OK",
|
||||
},
|
||||
{
|
||||
name: "set xx",
|
||||
cmd: command.MustParse[*str.Set]("set name bob xx"),
|
||||
res: true,
|
||||
out: "OK",
|
||||
cmd: "set name bob xx",
|
||||
res: true,
|
||||
out: "OK",
|
||||
},
|
||||
{
|
||||
name: "set xx conflict",
|
||||
cmd: command.MustParse[*str.Set]("set city paris xx"),
|
||||
res: false,
|
||||
out: "(nil)",
|
||||
cmd: "set city paris xx",
|
||||
res: false,
|
||||
out: "(nil)",
|
||||
},
|
||||
{
|
||||
name: "set ex",
|
||||
cmd: command.MustParse[*str.Set]("set name alice ex 10"),
|
||||
res: true,
|
||||
out: "OK",
|
||||
cmd: "set name alice ex 10",
|
||||
res: true,
|
||||
out: "OK",
|
||||
},
|
||||
{
|
||||
name: "set keepttl",
|
||||
cmd: command.MustParse[*str.Set]("set name alice keepttl"),
|
||||
res: true,
|
||||
out: "OK",
|
||||
cmd: "set name alice keepttl",
|
||||
res: true,
|
||||
out: "OK",
|
||||
},
|
||||
{
|
||||
name: "set nx ex",
|
||||
cmd: command.MustParse[*str.Set]("set color blue nx ex 10"),
|
||||
res: true,
|
||||
out: "OK",
|
||||
cmd: "set color blue nx ex 10",
|
||||
res: true,
|
||||
out: "OK",
|
||||
},
|
||||
{
|
||||
name: "set get",
|
||||
cmd: command.MustParse[*str.Set]("set name bob get"),
|
||||
res: core.Value("alice"),
|
||||
out: "alice",
|
||||
cmd: "set name bob get",
|
||||
res: core.Value("alice"),
|
||||
out: "alice",
|
||||
},
|
||||
{
|
||||
name: "set get nil",
|
||||
cmd: command.MustParse[*str.Set]("set country france get"),
|
||||
res: core.Value(nil),
|
||||
out: "(nil)",
|
||||
cmd: "set country france get",
|
||||
res: core.Value(nil),
|
||||
out: "(nil)",
|
||||
},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
t.Run(test.name, func(t *testing.T) {
|
||||
t.Run(test.cmd, func(t *testing.T) {
|
||||
conn := redis.NewFakeConn()
|
||||
res, err := test.cmd.Run(conn, red)
|
||||
cmd := redis.MustParse(ParseSet, test.cmd)
|
||||
res, err := cmd.Run(conn, red)
|
||||
testx.AssertNoErr(t, err)
|
||||
testx.AssertEqual(t, res, test.res)
|
||||
testx.AssertEqual(t, conn.Out(), test.out)
|
||||
|
||||
Reference in New Issue
Block a user