mirror of
				https://github.com/redis/go-redis.git
				synced 2025-11-04 02:33:24 +03:00 
			
		
		
		
	* fixed bug with nil dereferencing in writeArg, added hset struct example, added tests * removed password from example * added omitempty * reverted xxhash versioning * reverted xxhash versioning * removed password * removed password --------- Co-authored-by: Nedyalko Dyakov <nedyalko.dyakov@gmail.com>
		
			
				
	
	
		
			180 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			180 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package proto_test
 | 
						|
 | 
						|
import (
 | 
						|
	"bytes"
 | 
						|
	"encoding"
 | 
						|
	"fmt"
 | 
						|
	"net"
 | 
						|
	"testing"
 | 
						|
	"time"
 | 
						|
 | 
						|
	. "github.com/bsm/ginkgo/v2"
 | 
						|
	. "github.com/bsm/gomega"
 | 
						|
 | 
						|
	"github.com/redis/go-redis/v9/internal/proto"
 | 
						|
	"github.com/redis/go-redis/v9/internal/util"
 | 
						|
)
 | 
						|
 | 
						|
type MyType struct{}
 | 
						|
 | 
						|
var _ encoding.BinaryMarshaler = (*MyType)(nil)
 | 
						|
 | 
						|
func (t *MyType) MarshalBinary() ([]byte, error) {
 | 
						|
	return []byte("hello"), nil
 | 
						|
}
 | 
						|
 | 
						|
var _ = Describe("WriteBuffer", func() {
 | 
						|
	var buf *bytes.Buffer
 | 
						|
	var wr *proto.Writer
 | 
						|
 | 
						|
	BeforeEach(func() {
 | 
						|
		buf = new(bytes.Buffer)
 | 
						|
		wr = proto.NewWriter(buf)
 | 
						|
	})
 | 
						|
 | 
						|
	It("should write args", func() {
 | 
						|
		err := wr.WriteArgs([]interface{}{
 | 
						|
			"string",
 | 
						|
			12,
 | 
						|
			34.56,
 | 
						|
			[]byte{'b', 'y', 't', 'e', 's'},
 | 
						|
			true,
 | 
						|
			nil,
 | 
						|
		})
 | 
						|
		Expect(err).NotTo(HaveOccurred())
 | 
						|
 | 
						|
		Expect(buf.Bytes()).To(Equal([]byte("*6\r\n" +
 | 
						|
			"$6\r\nstring\r\n" +
 | 
						|
			"$2\r\n12\r\n" +
 | 
						|
			"$5\r\n34.56\r\n" +
 | 
						|
			"$5\r\nbytes\r\n" +
 | 
						|
			"$1\r\n1\r\n" +
 | 
						|
			"$0\r\n" +
 | 
						|
			"\r\n")))
 | 
						|
	})
 | 
						|
 | 
						|
	It("should append time", func() {
 | 
						|
		tm := time.Date(2019, 1, 1, 9, 45, 10, 222125, time.UTC)
 | 
						|
		err := wr.WriteArgs([]interface{}{tm})
 | 
						|
		Expect(err).NotTo(HaveOccurred())
 | 
						|
 | 
						|
		Expect(buf.Len()).To(Equal(41))
 | 
						|
	})
 | 
						|
 | 
						|
	It("should append marshalable args", func() {
 | 
						|
		err := wr.WriteArgs([]interface{}{&MyType{}})
 | 
						|
		Expect(err).NotTo(HaveOccurred())
 | 
						|
 | 
						|
		Expect(buf.Len()).To(Equal(15))
 | 
						|
	})
 | 
						|
 | 
						|
	It("should append net.IP", func() {
 | 
						|
		ip := net.ParseIP("192.168.1.1")
 | 
						|
		err := wr.WriteArgs([]interface{}{ip})
 | 
						|
		Expect(err).NotTo(HaveOccurred())
 | 
						|
		Expect(buf.String()).To(Equal(fmt.Sprintf("*1\r\n$16\r\n%s\r\n", bytes.NewBuffer(ip))))
 | 
						|
	})
 | 
						|
})
 | 
						|
 | 
						|
type discard struct{}
 | 
						|
 | 
						|
func (discard) Write(b []byte) (int, error) {
 | 
						|
	return len(b), nil
 | 
						|
}
 | 
						|
 | 
						|
func (discard) WriteString(s string) (int, error) {
 | 
						|
	return len(s), nil
 | 
						|
}
 | 
						|
 | 
						|
func (discard) WriteByte(c byte) error {
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func BenchmarkWriteBuffer_Append(b *testing.B) {
 | 
						|
	buf := proto.NewWriter(discard{})
 | 
						|
	args := []interface{}{"hello", "world", "foo", "bar"}
 | 
						|
 | 
						|
	for i := 0; i < b.N; i++ {
 | 
						|
		err := buf.WriteArgs(args)
 | 
						|
		if err != nil {
 | 
						|
			b.Fatal(err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
var _ = Describe("WriteArg", func() {
 | 
						|
	var buf *bytes.Buffer
 | 
						|
	var wr *proto.Writer
 | 
						|
 | 
						|
	BeforeEach(func() {
 | 
						|
		buf = new(bytes.Buffer)
 | 
						|
		wr = proto.NewWriter(buf)
 | 
						|
	})
 | 
						|
 | 
						|
	t := time.Date(2025, 2, 8, 00, 00, 00, 0, time.UTC)
 | 
						|
 | 
						|
	args := map[any]string{
 | 
						|
		"hello":                                "$5\r\nhello\r\n",
 | 
						|
		util.ToPtr("hello"):                    "$5\r\nhello\r\n",
 | 
						|
		(*string)(nil):                         "$0\r\n\r\n",
 | 
						|
		int(10):                                "$2\r\n10\r\n",
 | 
						|
		util.ToPtr(int(10)):                    "$2\r\n10\r\n",
 | 
						|
		(*int)(nil):                            "$1\r\n0\r\n",
 | 
						|
		int8(10):                               "$2\r\n10\r\n",
 | 
						|
		util.ToPtr(int8(10)):                   "$2\r\n10\r\n",
 | 
						|
		(*int8)(nil):                           "$1\r\n0\r\n",
 | 
						|
		int16(10):                              "$2\r\n10\r\n",
 | 
						|
		util.ToPtr(int16(10)):                  "$2\r\n10\r\n",
 | 
						|
		(*int16)(nil):                          "$1\r\n0\r\n",
 | 
						|
		int32(10):                              "$2\r\n10\r\n",
 | 
						|
		util.ToPtr(int32(10)):                  "$2\r\n10\r\n",
 | 
						|
		(*int32)(nil):                          "$1\r\n0\r\n",
 | 
						|
		int64(10):                              "$2\r\n10\r\n",
 | 
						|
		util.ToPtr(int64(10)):                  "$2\r\n10\r\n",
 | 
						|
		(*int64)(nil):                          "$1\r\n0\r\n",
 | 
						|
		uint(10):                               "$2\r\n10\r\n",
 | 
						|
		util.ToPtr(uint(10)):                   "$2\r\n10\r\n",
 | 
						|
		(*uint)(nil):                           "$1\r\n0\r\n",
 | 
						|
		uint8(10):                              "$2\r\n10\r\n",
 | 
						|
		util.ToPtr(uint8(10)):                  "$2\r\n10\r\n",
 | 
						|
		(*uint8)(nil):                          "$0\r\n\r\n",
 | 
						|
		uint16(10):                             "$2\r\n10\r\n",
 | 
						|
		util.ToPtr(uint16(10)):                 "$2\r\n10\r\n",
 | 
						|
		(*uint16)(nil):                         "$1\r\n0\r\n",
 | 
						|
		uint32(10):                             "$2\r\n10\r\n",
 | 
						|
		util.ToPtr(uint32(10)):                 "$2\r\n10\r\n",
 | 
						|
		(*uint32)(nil):                         "$1\r\n0\r\n",
 | 
						|
		uint64(10):                             "$2\r\n10\r\n",
 | 
						|
		util.ToPtr(uint64(10)):                 "$2\r\n10\r\n",
 | 
						|
		(*uint64)(nil):                         "$1\r\n0\r\n",
 | 
						|
		float32(10.3):                          "$18\r\n10.300000190734863\r\n",
 | 
						|
		util.ToPtr(float32(10.3)):              "$18\r\n10.300000190734863\r\n",
 | 
						|
		(*float32)(nil):                        "$1\r\n0\r\n",
 | 
						|
		float64(10.3):                          "$4\r\n10.3\r\n",
 | 
						|
		util.ToPtr(float64(10.3)):              "$4\r\n10.3\r\n",
 | 
						|
		(*float64)(nil):                        "$1\r\n0\r\n",
 | 
						|
		bool(true):                             "$1\r\n1\r\n",
 | 
						|
		bool(false):                            "$1\r\n0\r\n",
 | 
						|
		util.ToPtr(bool(true)):                 "$1\r\n1\r\n",
 | 
						|
		util.ToPtr(bool(false)):                "$1\r\n0\r\n",
 | 
						|
		(*bool)(nil):                           "$1\r\n0\r\n",
 | 
						|
		time.Time(t):                           "$20\r\n2025-02-08T00:00:00Z\r\n",
 | 
						|
		util.ToPtr(time.Time(t)):               "$20\r\n2025-02-08T00:00:00Z\r\n",
 | 
						|
		(*time.Time)(nil):                      "$20\r\n0001-01-01T00:00:00Z\r\n",
 | 
						|
		time.Duration(time.Second):             "$10\r\n1000000000\r\n",
 | 
						|
		util.ToPtr(time.Duration(time.Second)): "$10\r\n1000000000\r\n",
 | 
						|
		(*time.Duration)(nil):                  "$1\r\n0\r\n",
 | 
						|
		(encoding.BinaryMarshaler)(&MyType{}):  "$5\r\nhello\r\n",
 | 
						|
		(encoding.BinaryMarshaler)(nil):        "$0\r\n\r\n",
 | 
						|
	}
 | 
						|
 | 
						|
	for arg, expect := range args {
 | 
						|
		arg, expect := arg, expect
 | 
						|
		It(fmt.Sprintf("should write arg of type %T", arg), func() {
 | 
						|
			err := wr.WriteArg(arg)
 | 
						|
			Expect(err).NotTo(HaveOccurred())
 | 
						|
			Expect(buf.String()).To(Equal(expect))
 | 
						|
		})
 | 
						|
	}
 | 
						|
})
 |