missiongroup_test.go 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. package like
  2. import (
  3. "context"
  4. "fmt"
  5. "testing"
  6. l "go-common/app/interface/main/activity/model/like"
  7. "encoding/json"
  8. . "github.com/smartystreets/goconvey/convey"
  9. )
  10. func TestService_MissionLike(t *testing.T) {
  11. Convey("should return without err", t, WithService(func(svf *Service) {
  12. lid, err := svf.MissionLike(context.Background(), 10293, 15555180)
  13. So(err, ShouldBeNil)
  14. fmt.Printf("%d", lid)
  15. }))
  16. }
  17. func TestService_MissionInfo(t *testing.T) {
  18. Convey("should return without err", t, WithService(func(svf *Service) {
  19. res, err := svf.MissionInfo(context.Background(), 10292, 2, 442549)
  20. So(err, ShouldBeNil)
  21. fmt.Printf("%+v", res)
  22. }))
  23. }
  24. func TestService_MissionLikeAct(t *testing.T) {
  25. Convey("should return without err", t, WithService(func(svf *Service) {
  26. res, err := svf.MissionLikeAct(context.Background(), &l.ParamMissionLikeAct{Sid: 10292, Lid: 17}, 216761)
  27. So(err, ShouldBeNil)
  28. bs, _ := json.Marshal(res)
  29. Printf("%+v", string(bs))
  30. }))
  31. }
  32. func TestService__MissionTops(t *testing.T) {
  33. Convey("test set like act", t, WithService(func(svf *Service) {
  34. acts, err := svf.MissionTops(context.Background(), 10292, 50)
  35. So(err, ShouldBeNil)
  36. for _, v := range acts {
  37. fmt.Printf("%+v", v)
  38. }
  39. }))
  40. }
  41. func TestService_CalculateAchievement(t *testing.T) {
  42. Convey("test set like act", t, WithService(func(svf *Service) {
  43. err := svf.CalculateAchievement(context.Background(), 10292, 15555180, 10)
  44. So(err, ShouldBeNil)
  45. }))
  46. }
  47. func TestService_MissionRank(t *testing.T) {
  48. Convey("test set like act", t, WithService(func(svf *Service) {
  49. res, err := svf.MissionRank(context.Background(), 10292, 14137123)
  50. So(err, ShouldBeNil)
  51. fmt.Printf("%+v", res)
  52. }))
  53. }
  54. func TestService_MissionFriendsList(t *testing.T) {
  55. Convey("test set like act", t, WithService(func(svf *Service) {
  56. res, err := svf.MissionFriendsList(context.Background(), &l.ParamMissionFriends{Sid: 10292, Lid: 11, Size: 5}, 216761)
  57. So(err, ShouldBeNil)
  58. for _, v := range res {
  59. fmt.Printf("%+v", v)
  60. }
  61. }))
  62. }
  63. func TestService_MissionAward(t *testing.T) {
  64. Convey("test set like act", t, WithService(func(svf *Service) {
  65. res, err := svf.MissionAward(context.Background(), 10292, 2089809)
  66. So(err, ShouldBeNil)
  67. for _, v := range res {
  68. fmt.Printf("%+v", v)
  69. }
  70. }))
  71. }
  72. func TestService_MissionAchieve(t *testing.T) {
  73. Convey("test set like act", t, WithService(func(svf *Service) {
  74. res, err := svf.MissionAchieve(context.Background(), 10292, 4, 2089809)
  75. So(err, ShouldBeNil)
  76. Printf("%d", res)
  77. }))
  78. }
  79. func TestService_MissionUser(t *testing.T) {
  80. Convey("test set like act", t, WithService(func(svf *Service) {
  81. res, err := svf.MissionUser(context.Background(), 10292, 12)
  82. So(err, ShouldBeNil)
  83. Printf("%+v", res)
  84. }))
  85. }