123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- package dao
- import (
- "context"
- "go-common/app/interface/main/credit/model"
- "testing"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestDaouserBlockedListKey(t *testing.T) {
- convey.Convey("userBlockedListKey", t, func(convCtx convey.C) {
- var (
- mid = int64(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- p1 := userBlockedListKey(mid)
- convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
- convCtx.So(p1, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoblockedInfoKey(t *testing.T) {
- convey.Convey("blockedInfoKey", t, func(convCtx convey.C) {
- var (
- id = int64(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- p1 := blockedInfoKey(id)
- convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
- convCtx.So(p1, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoBlockedUserListCache(t *testing.T) {
- convey.Convey("BlockedUserListCache", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- mid = int64(-1)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- ls, err := d.BlockedUserListCache(c, mid)
- convCtx.Convey("Then err should be nil.ls should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(len(ls), convey.ShouldBeGreaterThanOrEqualTo, 0)
- })
- })
- })
- }
- func TestDaoSetBlockedUserListCache(t *testing.T) {
- convey.Convey("SetBlockedUserListCache", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- mid = int64(0)
- ls = []*model.BlockedInfo{}
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- err := d.SetBlockedUserListCache(c, mid, ls)
- convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoBlockedInfoCache(t *testing.T) {
- convey.Convey("BlockedInfoCache", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- id = int64(-1)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- info, err := d.BlockedInfoCache(c, id)
- convCtx.Convey("Then err should be nil.info should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(info, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoSetBlockedInfoCache(t *testing.T) {
- convey.Convey("SetBlockedInfoCache", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- id = int64(0)
- info = &model.BlockedInfo{}
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- err := d.SetBlockedInfoCache(c, id, info)
- convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoBlockedInfosCache(t *testing.T) {
- convey.Convey("BlockedInfosCache", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- ids = []int64{234}
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- infos, miss, err := d.BlockedInfosCache(c, ids)
- convCtx.Convey("Then err should not be nil.infos,miss should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldNotBeNil)
- convCtx.So(miss, convey.ShouldBeNil)
- convCtx.So(infos, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoSetBlockedInfosCache(t *testing.T) {
- convey.Convey("SetBlockedInfosCache", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- infos = []*model.BlockedInfo{}
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- err := d.SetBlockedInfosCache(c, infos)
- convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
|