123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- package like
- import (
- "context"
- "testing"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestLikeredisKey(t *testing.T) {
- convey.Convey("redisKey", t, func(ctx convey.C) {
- var (
- key = ""
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- p1 := redisKey(key)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestLikeRsGet(t *testing.T) {
- convey.Convey("RsGet", t, func(ctx convey.C) {
- var (
- c = context.Background()
- key = ""
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.RsGet(c, key)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(res, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestLikeRsSetNX(t *testing.T) {
- convey.Convey("RsSetNX", t, func(ctx convey.C) {
- var (
- c = context.Background()
- key = ""
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.RsSetNX(c, key)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(res, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestLikeRb(t *testing.T) {
- convey.Convey("Rb", t, func(ctx convey.C) {
- var (
- c = context.Background()
- key = ""
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.Rb(c, key)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(res, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestLikeIncr(t *testing.T) {
- convey.Convey("Incr", t, func(ctx convey.C) {
- var (
- c = context.Background()
- key = ""
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.Incr(c, key)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(res, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestLikeIncrby(t *testing.T) {
- convey.Convey("Incrby", t, func(ctx convey.C) {
- var (
- c = context.Background()
- key = ""
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.Incrby(c, key)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(res, convey.ShouldNotBeNil)
- })
- })
- })
- }
|