123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- package like
- import (
- "context"
- "testing"
- "fmt"
- "go-common/app/interface/main/activity/model/like"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestLikeLike(t *testing.T) {
- convey.Convey("Like", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(77)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.Like(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 TestLikeActSubject(t *testing.T) {
- convey.Convey("ActSubject", 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.ActSubject(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 TestLikeLikeMissionBuff(t *testing.T) {
- convey.Convey("LikeMissionBuff", 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.LikeMissionBuff(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 TestLikeMissionGroupItems(t *testing.T) {
- convey.Convey("MissionGroupItems", t, func(ctx convey.C) {
- var (
- c = context.Background()
- keys = []int64{1, 2}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.MissionGroupItems(c, keys)
- 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 TestLikeActMission(t *testing.T) {
- convey.Convey("ActMission", t, func(ctx convey.C) {
- var (
- c = context.Background()
- id = int64(10256)
- lid = int64(7)
- mid = int64(77)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.ActMission(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 TestLikeActLikeAchieves(t *testing.T) {
- convey.Convey("ActLikeAchieves", 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.ActLikeAchieves(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 TestLikeActMissionFriends(t *testing.T) {
- convey.Convey("ActMissionFriends", 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.ActMissionFriends(c, id, lid)
- 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 TestLikeActUserAchieve(t *testing.T) {
- convey.Convey("ActUserAchieve", 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.ActUserAchieve(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 TestLikeMatchSubjects(t *testing.T) {
- convey.Convey("MatchSubjects", t, func(ctx convey.C) {
- var (
- c = context.Background()
- keys = []int64{10256}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.MatchSubjects(c, keys)
- 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 TestLikeLikeContent(t *testing.T) {
- convey.Convey("LikeContent", t, func(ctx convey.C) {
- var (
- c = context.Background()
- keys = []int64{1, 2}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.LikeContent(c, keys)
- 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 TestActSubjectProtocol(t *testing.T) {
- convey.Convey("LikeContent", t, func(ctx convey.C) {
- var (
- c = context.Background()
- sid = int64(10298)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.ActSubjectProtocol(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)
- })
- })
- })
- }
- func TestCacheActSubjectProtocol(t *testing.T) {
- convey.Convey("LikeContent", t, func(ctx convey.C) {
- var (
- c = context.Background()
- sid = int64(10298)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.CacheActSubjectProtocol(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)
- })
- })
- })
- }
- func TestAddCacheActSubjectProtocol(t *testing.T) {
- convey.Convey("LikeContent", t, func(ctx convey.C) {
- var (
- c = context.Background()
- sid = int64(10256)
- protocol = &like.ActSubjectProtocol{ID: 1, Sid: 10256}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddCacheActSubjectProtocol(c, sid, protocol)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
|