123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525 |
- package like
- import (
- "context"
- likemdl "go-common/app/interface/main/activity/model/like"
- "testing"
- "fmt"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestLikeCacheLike(t *testing.T) {
- convey.Convey("CacheLike", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(1)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheLike(c, id)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- fmt.Printf("%v", res)
- })
- })
- })
- }
- func TestLikeCacheLikes(t *testing.T) {
- convey.Convey("CacheLikes", t, func(ctx convey.C) {
- var (
- c = context.Background()
- ids = []int64{1}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheLikes(c, ids)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- fmt.Printf("%v", res)
- })
- })
- })
- }
- func TestLikeAddCacheLike(t *testing.T) {
- convey.Convey("AddCacheLike", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(0)
- val = &likemdl.Item{ID: 0}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheLike(c, id, val)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeCacheActSubject(t *testing.T) {
- convey.Convey("CacheActSubject", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(10256)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheActSubject(c, id)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- fmt.Printf("%v", res)
- })
- })
- })
- }
- func TestLikeAddCacheActSubject(t *testing.T) {
- convey.Convey("AddCacheActSubject", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(0)
- val = &likemdl.SubjectItem{ID: 0}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheActSubject(c, id, val)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeCacheActSubjectMaxID(t *testing.T) {
- convey.Convey("CacheActSubjectMaxID", t, func(ctx convey.C) {
- var (
- c = context.Background()
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheActSubjectMaxID(c)
- 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 TestLikeAddCacheActSubjectMaxID(t *testing.T) {
- convey.Convey("AddCacheActSubjectMaxID", t, func(ctx convey.C) {
- var (
- c = context.Background()
- val = int64(10256)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheActSubjectMaxID(c, val)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeCacheLikeMaxID(t *testing.T) {
- convey.Convey("CacheLikeMaxID", t, func(ctx convey.C) {
- var (
- c = context.Background()
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheLikeMaxID(c)
- 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 TestLikeAddCacheLikeMaxID(t *testing.T) {
- convey.Convey("AddCacheLikeMaxID", t, func(ctx convey.C) {
- var (
- c = context.Background()
- val = int64(10586)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheLikeMaxID(c, val)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeCacheLikeMissionBuff(t *testing.T) {
- convey.Convey("CacheLikeMissionBuff", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(10256)
- mid = int64(77)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheLikeMissionBuff(c, id, mid)
- 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 TestLikeAddCacheLikeMissionBuff(t *testing.T) {
- convey.Convey("AddCacheLikeMissionBuff", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(10256)
- val = int64(1)
- mid = int64(77)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheLikeMissionBuff(c, id, val, mid)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeCacheMissionGroupItems(t *testing.T) {
- convey.Convey("CacheMissionGroupItems", t, func(ctx convey.C) {
- var (
- c = context.Background()
- ids = []int64{1, 2}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheMissionGroupItems(c, ids)
- 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 TestLikeAddCacheMissionGroupItems(t *testing.T) {
- convey.Convey("AddCacheMissionGroupItems", t, func(ctx convey.C) {
- var (
- c = context.Background()
- values = map[int64]*likemdl.MissionGroup{1: {ID: 1, Sid: 1}}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheMissionGroupItems(c, values)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeCacheActMission(t *testing.T) {
- convey.Convey("CacheActMission", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(10256)
- lid = int64(77)
- mid = int64(77)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheActMission(c, id, lid, mid)
- 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 TestLikeAddCacheActMission(t *testing.T) {
- convey.Convey("AddCacheActMission", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(10256)
- val = int64(1)
- lid = int64(77)
- mid = int64(77)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheActMission(c, id, val, lid, mid)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeCacheActLikeAchieves(t *testing.T) {
- convey.Convey("CacheActLikeAchieves", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(10256)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheActLikeAchieves(c, id)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- fmt.Printf("%+v", res)
- })
- })
- })
- }
- func TestLikeAddCacheActLikeAchieves(t *testing.T) {
- convey.Convey("AddCacheActLikeAchieves", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(0)
- val = &likemdl.Achievements{}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheActLikeAchieves(c, id, val)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeCacheActMissionFriends(t *testing.T) {
- convey.Convey("CacheActMissionFriends", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(10256)
- lid = int64(1)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheActMissionFriends(c, id, lid)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- fmt.Printf("%+v", res)
- })
- })
- })
- }
- func TestLikeDelCacheActMissionFriends(t *testing.T) {
- convey.Convey("DelCacheActMissionFriends", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(10256)
- lid = int64(1)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.DelCacheActMissionFriends(c, id, lid)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeAddCacheActMissionFriends(t *testing.T) {
- convey.Convey("AddCacheActMissionFriends", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(0)
- val = &likemdl.ActMissionGroups{}
- lid = int64(0)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheActMissionFriends(c, id, val, lid)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeCacheActUserAchieve(t *testing.T) {
- convey.Convey("CacheActUserAchieve", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(10256)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheActUserAchieve(c, id)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- fmt.Printf("%+v", res)
- })
- })
- })
- }
- func TestLikeAddCacheActUserAchieve(t *testing.T) {
- convey.Convey("AddCacheActUserAchieve", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(0)
- val = &likemdl.ActLikeUserAchievement{}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheActUserAchieve(c, id, val)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeCacheActUserAward(t *testing.T) {
- convey.Convey("CacheActUserAward", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(10256)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheActUserAward(c, id)
- 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 TestLikeAddCacheActUserAward(t *testing.T) {
- convey.Convey("AddCacheActUserAward", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(10256)
- val = int64(77)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheActUserAward(c, id, val)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeCacheSubjectStat(t *testing.T) {
- convey.Convey("CacheSubjectStat", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(10256)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheSubjectStat(c, id)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- fmt.Printf("%+v", res)
- })
- })
- })
- }
- func TestLikeAddCacheSubjectStat(t *testing.T) {
- convey.Convey("AddCacheSubjectStat", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(0)
- val = &likemdl.SubjectStat{}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheSubjectStat(c, id, val)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeCacheViewRank(t *testing.T) {
- convey.Convey("CacheViewRank", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(10256)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheViewRank(c, id)
- 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 TestLikeAddCacheViewRank(t *testing.T) {
- convey.Convey("AddCacheViewRank", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(0)
- val = ""
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheViewRank(c, id, val)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeCacheLikeContent(t *testing.T) {
- convey.Convey("CacheLikeContent", t, func(ctx convey.C) {
- var (
- c = context.Background()
- ids = []int64{1, 2}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheLikeContent(c, ids)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- fmt.Printf("%+v", res)
- })
- })
- })
- }
- func TestLikeAddCacheLikeContent(t *testing.T) {
- convey.Convey("AddCacheLikeContent", t, func(ctx convey.C) {
- var (
- c = context.Background()
- values map[int64]*likemdl.LikeContent
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheLikeContent(c, values)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeAddCacheSourceItemData(t *testing.T) {
- convey.Convey("AddCacheSourceItemData", t, func(ctx convey.C) {
- var (
- c = context.Background()
- sid = int64(213)
- values = []int64{10884, 10883, 10882, 10881, 10880}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheSourceItemData(c, sid, values)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestLikeCacheSourceItemData(t *testing.T) {
- convey.Convey("CacheSourceItemData", t, func(ctx convey.C) {
- var (
- c = context.Background()
- sid = int64(213)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheSourceItemData(c, sid)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- fmt.Printf("%+v", res)
- })
- })
- })
- }
|