service_test.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package like
  2. import (
  3. "context"
  4. "flag"
  5. "path/filepath"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/activity/conf"
  9. "go-common/app/interface/main/activity/model/like"
  10. "fmt"
  11. . "github.com/smartystreets/goconvey/convey"
  12. )
  13. var svf *Service
  14. func init() {
  15. dir, _ := filepath.Abs("../../cmd/activity-test.toml")
  16. flag.Set("conf", dir)
  17. if err := conf.Init(); err != nil {
  18. panic(err)
  19. }
  20. if svf == nil {
  21. svf = New(conf.Conf)
  22. }
  23. time.Sleep(time.Second)
  24. }
  25. func WithService(f func(s *Service)) func() {
  26. return func() {
  27. f(svf)
  28. }
  29. }
  30. func TestService_Subject(t *testing.T) {
  31. Convey("should return without err", t, WithService(func(svf *Service) {
  32. res, err := svf.Subject(context.Background(), 1)
  33. So(err, ShouldBeNil)
  34. So(res, ShouldNotBeEmpty)
  35. }))
  36. }
  37. func TestService_LikeAct(t *testing.T) {
  38. Convey("should return without err", t, WithService(func(svf *Service) {
  39. res, err := svf.LikeAct(context.Background(), &like.ParamAddLikeAct{Sid: 10296, Lid: 13513, Score: 1}, 27515615)
  40. So(err, ShouldBeNil)
  41. So(res, ShouldNotBeEmpty)
  42. }))
  43. }
  44. func TestService_LikeActList(t *testing.T) {
  45. Convey("should return without err", t, WithService(func(svf *Service) {
  46. res, err := svf.LikeActList(context.Background(), 10296, 2089809, []int64{13510, 13511, 13514, 13513})
  47. So(err, ShouldBeNil)
  48. So(res, ShouldNotBeEmpty)
  49. fmt.Printf("res %v", res)
  50. }))
  51. }
  52. func TestService_StoryKingAct(t *testing.T) {
  53. Convey("should return without err", t, WithService(func(svf *Service) {
  54. res, err := svf.StoryKingAct(context.Background(), &like.ParamStoryKingAct{Sid: 10365, Lid: 2357, Score: 1}, 27515615)
  55. So(err, ShouldBeNil)
  56. fmt.Printf("%v", res)
  57. }))
  58. }
  59. func TestService_StoryKingLeftTime(t *testing.T) {
  60. Convey("should return without err", t, WithService(func(svf *Service) {
  61. res, err := svf.StoryKingLeftTime(context.Background(), 10296, 55555)
  62. So(err, ShouldBeNil)
  63. fmt.Printf("%d", res)
  64. }))
  65. }
  66. func TestService_storyEachUsed(t *testing.T) {
  67. Convey("should return without err", t, WithService(func(svf *Service) {
  68. res, err := svf.storyEachUsed(context.Background(), 10296, 216761, 13538)
  69. So(err, ShouldBeNil)
  70. fmt.Printf("%d", res)
  71. }))
  72. }
  73. func TestService_StoryKingList(t *testing.T) {
  74. Convey("should return without err", t, WithService(func(svf *Service) {
  75. res, err := svf.StoryKingList(context.Background(), &like.ParamList{Sid: 1, Pn: 1, Ps: 100, Type: "random"}, 27515257)
  76. So(err, ShouldBeNil)
  77. fmt.Printf("%v", res)
  78. }))
  79. }
  80. func TestService_UpList(t *testing.T) {
  81. Convey("should return without err", t, WithService(func(svf *Service) {
  82. res, err := svf.UpList(context.Background(), &like.ParamList{Sid: 10259, Pn: 1, Ps: 100, Type: "random"}, 27515257)
  83. So(err, ShouldBeNil)
  84. if res != nil {
  85. if len(res.List) > 0 {
  86. for _, v := range res.List {
  87. fmt.Printf("%v %v", v.Item, v.Object)
  88. }
  89. }
  90. }
  91. }))
  92. }