redis/internal/proto/scan_test.go

80 lines
1.5 KiB
Go
Raw Normal View History

package proto_test
2017-02-01 11:36:33 +03:00
import (
"context"
2017-02-01 11:36:33 +03:00
"encoding/json"
"errors"
"testing"
"time"
2017-02-01 11:36:33 +03:00
"github.com/go-redis/redis/v8"
"github.com/go-redis/redis/v8/internal/proto"
2017-02-01 11:36:33 +03:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
type testScanSliceStruct struct {
ID int
Name string
}
2017-02-18 13:10:47 +03:00
func (s *testScanSliceStruct) MarshalBinary() ([]byte, error) {
return json.Marshal(s)
2017-02-01 11:36:33 +03:00
}
2017-02-18 13:10:47 +03:00
func (s *testScanSliceStruct) UnmarshalBinary(b []byte) error {
return json.Unmarshal(b, s)
2017-02-01 11:36:33 +03:00
}
var _ = Describe("ScanSlice", func() {
2017-02-18 13:10:47 +03:00
data := []string{
`{"ID":-1,"Name":"Back Yu"}`,
`{"ID":1,"Name":"szyhf"}`,
}
It("[]testScanSliceStruct", func() {
var slice []testScanSliceStruct
err := proto.ScanSlice(data, &slice)
2017-02-18 13:10:47 +03:00
Expect(err).NotTo(HaveOccurred())
Expect(slice).To(Equal([]testScanSliceStruct{
{-1, "Back Yu"},
{1, "szyhf"},
}))
2017-02-01 11:36:33 +03:00
})
It("var testContainer []*testScanSliceStruct", func() {
2017-02-18 13:10:47 +03:00
var slice []*testScanSliceStruct
err := proto.ScanSlice(data, &slice)
2017-02-01 11:36:33 +03:00
Expect(err).NotTo(HaveOccurred())
2017-02-18 13:10:47 +03:00
Expect(slice).To(Equal([]*testScanSliceStruct{
{-1, "Back Yu"},
{1, "szyhf"},
}))
2017-02-01 11:36:33 +03:00
})
})
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"))
}
})
}