Updated string commands package to use new keyspace methods and resp connection for tests

This commit is contained in:
Kelvin Clement Mwinuka
2024-05-26 15:04:57 +08:00
parent edf82886bd
commit e3ecc42454
3 changed files with 125 additions and 180 deletions

View File

@@ -15,8 +15,6 @@
package str_test
import (
"bytes"
"context"
"errors"
"fmt"
"github.com/echovault/echovault/echovault"
@@ -25,71 +23,44 @@ import (
"github.com/echovault/echovault/internal/constants"
"github.com/tidwall/resp"
"net"
"reflect"
"strconv"
"strings"
"sync"
"testing"
"unsafe"
)
var mockServer *echovault.EchoVault
var addr = "localhost"
var port int
func init() {
port, _ = internal.GetFreePort()
mockServer, _ = echovault.NewEchoVault(
echovault.WithConfig(config.Config{
BindAddr: addr,
Port: uint16(port),
DataDir: "",
EvictionPolicy: constants.NoEviction,
}),
)
}
func getUnexportedField(field reflect.Value) interface{} {
return reflect.NewAt(field.Type(), unsafe.Pointer(field.UnsafeAddr())).Elem().Interface()
}
func getHandler(commands ...string) internal.HandlerFunc {
if len(commands) == 0 {
return nil
}
getCommands :=
getUnexportedField(reflect.ValueOf(mockServer).Elem().FieldByName("getCommands")).(func() []internal.Command)
for _, c := range getCommands() {
if strings.EqualFold(commands[0], c.Command) && len(commands) == 1 {
// Get command handler
return c.HandlerFunc
}
if strings.EqualFold(commands[0], c.Command) {
// Get sub-command handler
for _, sc := range c.SubCommands {
if strings.EqualFold(commands[1], sc.Command) {
return sc.HandlerFunc
}
}
}
}
return nil
}
func getHandlerFuncParams(ctx context.Context, cmd []string, conn *net.Conn) internal.HandlerFuncParams {
return internal.HandlerFuncParams{
Context: ctx,
Command: cmd,
Connection: conn,
KeyExists: mockServer.KeyExists,
CreateKeyAndLock: mockServer.CreateKeyAndLock,
KeyLock: mockServer.KeyLock,
KeyRLock: mockServer.KeyRLock,
KeyUnlock: mockServer.KeyUnlock,
KeyRUnlock: mockServer.KeyRUnlock,
GetValue: mockServer.GetValue,
SetValue: mockServer.SetValue,
}
wg := sync.WaitGroup{}
wg.Add(1)
go func() {
wg.Done()
mockServer.Start()
}()
wg.Wait()
}
func Test_HandleSetRange(t *testing.T) {
conn, err := net.Dial("tcp", fmt.Sprintf("%s:%d", addr, port))
if err != nil {
t.Error(err)
}
client := resp.NewConn(conn)
tests := []struct {
name string
preset bool
key string
presetValue string
command []string
@@ -99,7 +70,6 @@ func Test_HandleSetRange(t *testing.T) {
}{
{
name: "Test that SETRANGE on non-existent string creates new string",
preset: false,
key: "SetRangeKey1",
presetValue: "",
command: []string{"SETRANGE", "SetRangeKey1", "10", "New String Value"},
@@ -109,7 +79,6 @@ func Test_HandleSetRange(t *testing.T) {
},
{
name: "Test SETRANGE with an offset that leads to a longer resulting string",
preset: true,
key: "SetRangeKey2",
presetValue: "Original String Value",
command: []string{"SETRANGE", "SetRangeKey2", "16", "Portion Replaced With This New String"},
@@ -119,7 +88,6 @@ func Test_HandleSetRange(t *testing.T) {
},
{
name: "SETRANGE with negative offset prepends the string",
preset: true,
key: "SetRangeKey3",
presetValue: "This is a preset value",
command: []string{"SETRANGE", "SetRangeKey3", "-10", "Prepended "},
@@ -129,7 +97,6 @@ func Test_HandleSetRange(t *testing.T) {
},
{
name: "SETRANGE with offset that embeds new string inside the old string",
preset: true,
key: "SetRangeKey4",
presetValue: "This is a preset value",
command: []string{"SETRANGE", "SetRangeKey4", "0", "That"},
@@ -139,7 +106,6 @@ func Test_HandleSetRange(t *testing.T) {
},
{
name: "SETRANGE with offset longer than original lengths appends the string",
preset: true,
key: "SetRangeKey5",
presetValue: "This is a preset value",
command: []string{"SETRANGE", "SetRangeKey5", "100", " Appended"},
@@ -149,7 +115,6 @@ func Test_HandleSetRange(t *testing.T) {
},
{
name: "SETRANGE with offset on the last character replaces last character with new string",
preset: true,
key: "SetRangeKey6",
presetValue: "This is a preset value",
command: []string{"SETRANGE", "SetRangeKey6", strconv.Itoa(len("This is a preset value") - 1), " replaced"},
@@ -159,14 +124,12 @@ func Test_HandleSetRange(t *testing.T) {
},
{
name: " Offset not integer",
preset: false,
command: []string{"SETRANGE", "key", "offset", "value"},
expectedResponse: 0,
expectedError: errors.New("offset must be an integer"),
},
{
name: "SETRANGE target is not a string",
preset: true,
key: "test-int",
presetValue: "10",
command: []string{"SETRANGE", "test-int", "10", "value"},
@@ -175,81 +138,74 @@ func Test_HandleSetRange(t *testing.T) {
},
{
name: "Command too short",
preset: false,
command: []string{"SETRANGE", "key"},
expectedResponse: 0,
expectedError: errors.New(constants.WrongArgsResponse),
},
{
name: "Command too long",
preset: false,
command: []string{"SETRANGE", "key", "offset", "value", "value1"},
expectedResponse: 0,
expectedError: errors.New(constants.WrongArgsResponse),
},
}
for i, test := range tests {
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
ctx := context.WithValue(context.Background(), "test_name", fmt.Sprintf("SETRANGE, %d", i))
// If there's a preset step, carry it out here
if test.preset {
if _, err := mockServer.CreateKeyAndLock(ctx, test.key); err != nil {
if test.presetValue != "" {
if err = client.WriteArray([]resp.Value{
resp.StringValue("SET"),
resp.StringValue(test.key),
resp.StringValue(test.presetValue),
}); err != nil {
t.Error(err)
}
if err := mockServer.SetValue(ctx, test.key, internal.AdaptType(test.presetValue)); err != nil {
res, _, err := client.ReadValue()
if err != nil {
t.Error(err)
}
mockServer.KeyUnlock(ctx, test.key)
if !strings.EqualFold(res.String(), "ok") {
t.Errorf("expected preset response to be OK, got %s", res.String())
}
}
handler := getHandler(test.command[0])
if handler == nil {
t.Errorf("no handler found for command %s", test.command[0])
return
command := make([]resp.Value, len(test.command))
for i, c := range test.command {
command[i] = resp.StringValue(c)
}
res, err := handler(getHandlerFuncParams(ctx, test.command, nil))
if err = client.WriteArray(command); err != nil {
t.Error(err)
}
res, _, err := client.ReadValue()
if err != nil {
t.Error(err)
}
if test.expectedError != nil {
if err.Error() != test.expectedError.Error() {
if !strings.Contains(res.Error().Error(), test.expectedError.Error()) {
t.Errorf("expected error \"%s\", got \"%s\"", test.expectedError.Error(), err.Error())
}
return
}
if err != nil {
t.Error(err)
}
rd := resp.NewReader(bytes.NewBuffer(res))
rv, _, err := rd.ReadValue()
if err != nil {
t.Error(err)
}
if rv.Integer() != test.expectedResponse {
t.Errorf("expected response \"%d\", got \"%d\"", test.expectedResponse, rv.Integer())
}
// Get the value from the echovault and check against the expected value
if _, err = mockServer.KeyRLock(ctx, test.key); err != nil {
t.Error(err)
if res.Integer() != test.expectedResponse {
t.Errorf("expected response \"%d\", got \"%d\"", test.expectedResponse, res.Integer())
}
value, ok := mockServer.GetValue(ctx, test.key).(string)
if !ok {
t.Error("expected string data type, got another type")
}
if value != test.expectedValue {
t.Errorf("expected value \"%s\", got \"%s\"", test.expectedValue, value)
}
mockServer.KeyRUnlock(ctx, test.key)
})
}
}
func Test_HandleStrLen(t *testing.T) {
conn, err := net.Dial("tcp", fmt.Sprintf("%s:%d", addr, port))
if err != nil {
t.Error(err)
}
client := resp.NewConn(conn)
tests := []struct {
name string
preset bool
key string
presetValue string
command []string
@@ -258,7 +214,6 @@ func Test_HandleStrLen(t *testing.T) {
}{
{
name: "Return the correct string length for an existing string",
preset: true,
key: "StrLenKey1",
presetValue: "Test String",
command: []string{"STRLEN", "StrLenKey1"},
@@ -267,7 +222,6 @@ func Test_HandleStrLen(t *testing.T) {
},
{
name: "If the string does not exist, return 0",
preset: false,
key: "StrLenKey2",
presetValue: "",
command: []string{"STRLEN", "StrLenKey2"},
@@ -276,7 +230,6 @@ func Test_HandleStrLen(t *testing.T) {
},
{
name: "Too few args",
preset: false,
key: "StrLenKey3",
presetValue: "",
command: []string{"STRLEN"},
@@ -285,7 +238,6 @@ func Test_HandleStrLen(t *testing.T) {
},
{
name: "Too many args",
preset: false,
key: "StrLenKey4",
presetValue: "",
command: []string{"STRLEN", "StrLenKey4", "StrLenKey5"},
@@ -294,51 +246,62 @@ func Test_HandleStrLen(t *testing.T) {
},
}
for i, test := range tests {
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
ctx := context.WithValue(context.Background(), "test_name", fmt.Sprintf("STRLEN, %d", i))
if test.preset {
_, err := mockServer.CreateKeyAndLock(ctx, test.key)
if test.presetValue != "" {
if err = client.WriteArray([]resp.Value{
resp.StringValue("SET"),
resp.StringValue(test.key),
resp.StringValue(test.presetValue),
}); err != nil {
t.Error(err)
}
res, _, err := client.ReadValue()
if err != nil {
t.Error(err)
}
if err := mockServer.SetValue(ctx, test.key, test.presetValue); err != nil {
t.Error(err)
if !strings.EqualFold(res.String(), "ok") {
t.Errorf("expected preset response to be OK, got %s", res.String())
}
mockServer.KeyUnlock(ctx, test.key)
}
handler := getHandler(test.command[0])
if handler == nil {
t.Errorf("no handler found for command %s", test.command[0])
return
command := make([]resp.Value, len(test.command))
for i, c := range test.command {
command[i] = resp.StringValue(c)
}
res, err := handler(getHandlerFuncParams(ctx, test.command, nil))
if err = client.WriteArray(command); err != nil {
t.Error(err)
}
res, _, err := client.ReadValue()
if err != nil {
t.Error(err)
}
if test.expectedError != nil {
if err.Error() != test.expectedError.Error() {
if !strings.Contains(res.Error().Error(), test.expectedError.Error()) {
t.Errorf("expected error \"%s\", got \"%s\"", test.expectedError.Error(), err.Error())
}
return
}
rd := resp.NewReader(bytes.NewBuffer(res))
rv, _, err := rd.ReadValue()
if err != nil {
t.Error(err)
}
if rv.Integer() != test.expectedResponse {
t.Errorf("expected respons \"%d\", got \"%d\"", test.expectedResponse, rv.Integer())
if res.Integer() != test.expectedResponse {
t.Errorf("expected response \"%d\", got \"%d\"", test.expectedResponse, res.Integer())
}
})
}
}
func Test_HandleSubStr(t *testing.T) {
conn, err := net.Dial("tcp", fmt.Sprintf("%s:%d", addr, port))
if err != nil {
t.Error(err)
}
client := resp.NewConn(conn)
tests := []struct {
name string
preset bool
key string
presetValue string
command []string
@@ -347,7 +310,6 @@ func Test_HandleSubStr(t *testing.T) {
}{
{
name: "Return substring within the range of the string",
preset: true,
key: "SubStrKey1",
presetValue: "Test String One",
command: []string{"SUBSTR", "SubStrKey1", "5", "10"},
@@ -356,7 +318,6 @@ func Test_HandleSubStr(t *testing.T) {
},
{
name: "Return substring at the end of the string with exact end index",
preset: true,
key: "SubStrKey2",
presetValue: "Test String Two",
command: []string{"SUBSTR", "SubStrKey2", "12", "14"},
@@ -365,7 +326,6 @@ func Test_HandleSubStr(t *testing.T) {
},
{
name: "Return substring at the end of the string with end index greater than length",
preset: true,
key: "SubStrKey3",
presetValue: "Test String Three",
command: []string{"SUBSTR", "SubStrKey3", "12", "75"},
@@ -374,7 +334,6 @@ func Test_HandleSubStr(t *testing.T) {
},
{
name: "Return the substring at the start of the string with 0 start index",
preset: true,
key: "SubStrKey4",
presetValue: "Test String Four",
command: []string{"SUBSTR", "SubStrKey4", "0", "3"},
@@ -385,7 +344,6 @@ func Test_HandleSubStr(t *testing.T) {
// Return the substring with negative start index.
// Substring should begin abs(start) from the end of the string when start is negative.
name: "Return the substring with negative start index",
preset: true,
key: "SubStrKey5",
presetValue: "Test String Five",
command: []string{"SUBSTR", "SubStrKey5", "-11", "10"},
@@ -396,7 +354,6 @@ func Test_HandleSubStr(t *testing.T) {
// Return reverse substring with end index smaller than start index.
// When end index is smaller than start index, the 2 indices are reversed.
name: "Return reverse substring with end index smaller than start index",
preset: true,
key: "SubStrKey6",
presetValue: "Test String Six",
command: []string{"SUBSTR", "SubStrKey6", "4", "0"},
@@ -430,42 +387,48 @@ func Test_HandleSubStr(t *testing.T) {
},
}
for i, test := range tests {
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
ctx := context.WithValue(context.Background(), "test_name", fmt.Sprintf("SUBSTR, %d", i))
if test.preset {
if _, err := mockServer.CreateKeyAndLock(ctx, test.key); err != nil {
if test.presetValue != "" {
if err = client.WriteArray([]resp.Value{
resp.StringValue("SET"),
resp.StringValue(test.key),
resp.StringValue(test.presetValue),
}); err != nil {
t.Error(err)
}
if err := mockServer.SetValue(ctx, test.key, test.presetValue); err != nil {
res, _, err := client.ReadValue()
if err != nil {
t.Error(err)
}
mockServer.KeyUnlock(ctx, test.key)
if !strings.EqualFold(res.String(), "ok") {
t.Errorf("expected preset response to be OK, got %s", res.String())
}
}
handler := getHandler(test.command[0])
if handler == nil {
t.Errorf("no handler found for command %s", test.command[0])
return
command := make([]resp.Value, len(test.command))
for i, c := range test.command {
command[i] = resp.StringValue(c)
}
res, err := handler(getHandlerFuncParams(ctx, test.command, nil))
if err = client.WriteArray(command); err != nil {
t.Error(err)
}
res, _, err := client.ReadValue()
if err != nil {
t.Error(err)
}
if test.expectedError != nil {
if err.Error() != test.expectedError.Error() {
if !strings.Contains(res.Error().Error(), test.expectedError.Error()) {
t.Errorf("expected error \"%s\", got \"%s\"", test.expectedError.Error(), err.Error())
}
return
}
rd := resp.NewReader(bytes.NewBuffer(res))
rv, _, err := rd.ReadValue()
if err != nil {
t.Error(err)
}
if rv.String() != test.expectedResponse {
t.Errorf("expected response \"%s\", got \"%s\"", test.expectedResponse, rv.String())
if res.String() != test.expectedResponse {
t.Errorf("expected response \"%s\", got \"%s\"", test.expectedResponse, res.String())
}
})
}