123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- package like
- import (
- "context"
- "fmt"
- "testing"
- l "go-common/app/interface/main/activity/model/like"
- "encoding/json"
- . "github.com/smartystreets/goconvey/convey"
- )
- func TestService_MissionLike(t *testing.T) {
- Convey("should return without err", t, WithService(func(svf *Service) {
- lid, err := svf.MissionLike(context.Background(), 10293, 15555180)
- So(err, ShouldBeNil)
- fmt.Printf("%d", lid)
- }))
- }
- func TestService_MissionInfo(t *testing.T) {
- Convey("should return without err", t, WithService(func(svf *Service) {
- res, err := svf.MissionInfo(context.Background(), 10292, 2, 442549)
- So(err, ShouldBeNil)
- fmt.Printf("%+v", res)
- }))
- }
- func TestService_MissionLikeAct(t *testing.T) {
- Convey("should return without err", t, WithService(func(svf *Service) {
- res, err := svf.MissionLikeAct(context.Background(), &l.ParamMissionLikeAct{Sid: 10292, Lid: 17}, 216761)
- So(err, ShouldBeNil)
- bs, _ := json.Marshal(res)
- Printf("%+v", string(bs))
- }))
- }
- func TestService__MissionTops(t *testing.T) {
- Convey("test set like act", t, WithService(func(svf *Service) {
- acts, err := svf.MissionTops(context.Background(), 10292, 50)
- So(err, ShouldBeNil)
- for _, v := range acts {
- fmt.Printf("%+v", v)
- }
- }))
- }
- func TestService_CalculateAchievement(t *testing.T) {
- Convey("test set like act", t, WithService(func(svf *Service) {
- err := svf.CalculateAchievement(context.Background(), 10292, 15555180, 10)
- So(err, ShouldBeNil)
- }))
- }
- func TestService_MissionRank(t *testing.T) {
- Convey("test set like act", t, WithService(func(svf *Service) {
- res, err := svf.MissionRank(context.Background(), 10292, 14137123)
- So(err, ShouldBeNil)
- fmt.Printf("%+v", res)
- }))
- }
- func TestService_MissionFriendsList(t *testing.T) {
- Convey("test set like act", t, WithService(func(svf *Service) {
- res, err := svf.MissionFriendsList(context.Background(), &l.ParamMissionFriends{Sid: 10292, Lid: 11, Size: 5}, 216761)
- So(err, ShouldBeNil)
- for _, v := range res {
- fmt.Printf("%+v", v)
- }
- }))
- }
- func TestService_MissionAward(t *testing.T) {
- Convey("test set like act", t, WithService(func(svf *Service) {
- res, err := svf.MissionAward(context.Background(), 10292, 2089809)
- So(err, ShouldBeNil)
- for _, v := range res {
- fmt.Printf("%+v", v)
- }
- }))
- }
- func TestService_MissionAchieve(t *testing.T) {
- Convey("test set like act", t, WithService(func(svf *Service) {
- res, err := svf.MissionAchieve(context.Background(), 10292, 4, 2089809)
- So(err, ShouldBeNil)
- Printf("%d", res)
- }))
- }
- func TestService_MissionUser(t *testing.T) {
- Convey("test set like act", t, WithService(func(svf *Service) {
- res, err := svf.MissionUser(context.Background(), 10292, 12)
- So(err, ShouldBeNil)
- Printf("%+v", res)
- }))
- }
|