mirror of https://github.com/go-redis/redis.git
parent
36223c9349
commit
f169894120
|
@ -4,10 +4,13 @@ import (
|
||||||
"encoding"
|
"encoding"
|
||||||
"fmt"
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/go-redis/redis/v8/internal/util"
|
"github.com/go-redis/redis/v8/internal/util"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Scan parses bytes `b` to `v` with appropriate type.
|
||||||
|
// nolint: gocyclo
|
||||||
func Scan(b []byte, v interface{}) error {
|
func Scan(b []byte, v interface{}) error {
|
||||||
switch v := v.(type) {
|
switch v := v.(type) {
|
||||||
case nil:
|
case nil:
|
||||||
|
@ -99,6 +102,10 @@ func Scan(b []byte, v interface{}) error {
|
||||||
case *bool:
|
case *bool:
|
||||||
*v = len(b) == 1 && b[0] == '1'
|
*v = len(b) == 1 && b[0] == '1'
|
||||||
return nil
|
return nil
|
||||||
|
case *time.Time:
|
||||||
|
var err error
|
||||||
|
*v, err = time.Parse(time.RFC3339Nano, util.BytesToString(b))
|
||||||
|
return err
|
||||||
case encoding.BinaryUnmarshaler:
|
case encoding.BinaryUnmarshaler:
|
||||||
return v.UnmarshalBinary(b)
|
return v.UnmarshalBinary(b)
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -1,8 +1,14 @@
|
||||||
package proto
|
package proto_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/go-redis/redis/v8"
|
||||||
|
"github.com/go-redis/redis/v8/internal/proto"
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
)
|
)
|
||||||
|
@ -28,7 +34,7 @@ var _ = Describe("ScanSlice", func() {
|
||||||
|
|
||||||
It("[]testScanSliceStruct", func() {
|
It("[]testScanSliceStruct", func() {
|
||||||
var slice []testScanSliceStruct
|
var slice []testScanSliceStruct
|
||||||
err := ScanSlice(data, &slice)
|
err := proto.ScanSlice(data, &slice)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
Expect(slice).To(Equal([]testScanSliceStruct{
|
Expect(slice).To(Equal([]testScanSliceStruct{
|
||||||
{-1, "Back Yu"},
|
{-1, "Back Yu"},
|
||||||
|
@ -38,7 +44,7 @@ var _ = Describe("ScanSlice", func() {
|
||||||
|
|
||||||
It("var testContainer []*testScanSliceStruct", func() {
|
It("var testContainer []*testScanSliceStruct", func() {
|
||||||
var slice []*testScanSliceStruct
|
var slice []*testScanSliceStruct
|
||||||
err := ScanSlice(data, &slice)
|
err := proto.ScanSlice(data, &slice)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
Expect(slice).To(Equal([]*testScanSliceStruct{
|
Expect(slice).To(Equal([]*testScanSliceStruct{
|
||||||
{-1, "Back Yu"},
|
{-1, "Back Yu"},
|
||||||
|
@ -46,3 +52,28 @@ var _ = Describe("ScanSlice", func() {
|
||||||
}))
|
}))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
func TestScan(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
t.Run("time", func(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
ctx := context.Background()
|
||||||
|
|
||||||
|
rdb := redis.NewClient(&redis.Options{
|
||||||
|
Addr: ":6379",
|
||||||
|
})
|
||||||
|
|
||||||
|
tm := time.Now()
|
||||||
|
rdb.Set(ctx, "now", tm, 0)
|
||||||
|
|
||||||
|
var tm2 time.Time
|
||||||
|
rdb.Get(ctx, "now").Scan(&tm2)
|
||||||
|
|
||||||
|
if !tm2.Equal(tm) {
|
||||||
|
t.Fatal(errors.New("tm2 and tm are not equal"))
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue