service_test.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. package weeklyhonor
  2. import (
  3. "context"
  4. "flag"
  5. "fmt"
  6. "path/filepath"
  7. "reflect"
  8. "testing"
  9. "time"
  10. "go-common/app/interface/main/creative/conf"
  11. upDao "go-common/app/interface/main/creative/dao/up"
  12. honDao "go-common/app/interface/main/creative/dao/weeklyhonor"
  13. honmdl "go-common/app/interface/main/creative/model/weeklyhonor"
  14. "go-common/app/interface/main/creative/service"
  15. upmdl "go-common/app/service/main/up/model"
  16. xtime "go-common/library/time"
  17. "github.com/bouk/monkey"
  18. "github.com/smartystreets/goconvey/convey"
  19. )
  20. var (
  21. s *Service
  22. )
  23. func init() {
  24. dir, _ := filepath.Abs("../../cmd/creative.toml")
  25. flag.Set("conf", dir)
  26. err := conf.Init()
  27. if err != nil {
  28. fmt.Printf("conf.Init() error(%v)", err)
  29. }
  30. rpcdaos := service.NewRPCDaos(conf.Conf)
  31. s = New(conf.Conf, rpcdaos)
  32. }
  33. func WithService(f func(s *Service)) func() {
  34. return func() {
  35. convey.Reset(func() {})
  36. f(s)
  37. }
  38. }
  39. func TestService_WeeklyHonor(t *testing.T) {
  40. var (
  41. mid int64 = 1
  42. uid int64 = 2
  43. token = s.genToken(2)
  44. mockStat = honmdl.HonorStat{
  45. Play: 100,
  46. PlayLastW: 100,
  47. Fans: 100,
  48. FansInc: 2000,
  49. CoinInc: 2000,
  50. Rank3: 50,
  51. }
  52. mockHls = map[int]*honmdl.HonorLog{
  53. 12: {
  54. ID: 1,
  55. MID: uid,
  56. HID: 12,
  57. Count: 1,
  58. MTime: xtime.Time(time.Now().AddDate(0, 0, -5).Unix()),
  59. },
  60. 23: {
  61. ID: 1,
  62. MID: uid,
  63. HID: 12,
  64. Count: 1,
  65. MTime: xtime.Time(honmdl.LatestSunday().Add(time.Hour).Unix()),
  66. },
  67. }
  68. )
  69. convey.Convey("test", t, WithService(func(s *Service) {
  70. // mock
  71. s.c.HonorDegradeSwitch = false
  72. monkey.PatchInstanceMethod(reflect.TypeOf(s.up), "UpInfo", func(_ *upDao.Dao, _ context.Context, _ int64, _ int, _ string) (*upmdl.UpInfo, error) {
  73. return &upmdl.UpInfo{IsAuthor: 1}, nil
  74. })
  75. monkey.PatchInstanceMethod(reflect.TypeOf(s.honDao), "StatMC", func(_ *honDao.Dao, _ context.Context, _ int64, _ string) (*honmdl.HonorStat, error) {
  76. return &mockStat, nil
  77. })
  78. monkey.PatchInstanceMethod(reflect.TypeOf(s.honDao), "HonorMC", func(_ *honDao.Dao, _ context.Context, _ int64, _ string) (*honmdl.HonorLog, error) {
  79. return nil, nil
  80. })
  81. monkey.PatchInstanceMethod(reflect.TypeOf(s.honDao), "HonorLogs", func(_ *honDao.Dao, _ context.Context, _ int64) (map[int]*honmdl.HonorLog, error) {
  82. return mockHls, nil
  83. })
  84. defer monkey.UnpatchAll()
  85. // test guest visit
  86. honor, err := s.WeeklyHonor(context.Background(), mid, uid, token)
  87. convey.ShouldBeNil(err)
  88. convey.So(honor.HID, convey.ShouldEqual, 20)
  89. convey.So(honor.SubState, convey.ShouldEqual, 0)
  90. // test up visit
  91. monkey.PatchInstanceMethod(reflect.TypeOf(s.honDao), "GetUpSwitch", func(_ *honDao.Dao, _ context.Context, _ int64) (uint8, error) {
  92. return 1, nil
  93. })
  94. honor, err = s.WeeklyHonor(context.Background(), uid, uid, token)
  95. convey.ShouldBeNil(err)
  96. convey.So(honor.HID, convey.ShouldEqual, 20)
  97. convey.So(honor.SubState, convey.ShouldEqual, 1)
  98. }))
  99. }