service_test.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. package data
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/creative/conf"
  6. "path/filepath"
  7. "testing"
  8. "time"
  9. "go-common/app/interface/main/creative/service"
  10. . "github.com/smartystreets/goconvey/convey"
  11. )
  12. var (
  13. s *Service
  14. p *service.Public
  15. )
  16. func init() {
  17. dir, _ := filepath.Abs("../../cmd/creative.toml")
  18. flag.Set("conf", dir)
  19. conf.Init()
  20. rpcdaos := service.NewRPCDaos(conf.Conf)
  21. p = service.New(conf.Conf, rpcdaos)
  22. s = New(conf.Conf, rpcdaos, p)
  23. time.Sleep(time.Second)
  24. }
  25. func WithService(f func(s *Service)) func() {
  26. return func() {
  27. Reset(func() {})
  28. f(s)
  29. }
  30. }
  31. var (
  32. c = context.TODO()
  33. MID = int64(27515256)
  34. ty = int8(1)
  35. ip = "127.0.0.1"
  36. dt = "20180301"
  37. )
  38. func Test_AppStat(t *testing.T) {
  39. Convey("AppStat", t, WithService(func(s *Service) {
  40. Convey("AppStat", func() {
  41. res, err := s.AppStat(c, MID)
  42. So(err, ShouldBeNil)
  43. So(res, ShouldNotBeNil)
  44. })
  45. }))
  46. }
  47. func Test_ViewerBase(t *testing.T) {
  48. Convey("ViewerBase", t, WithService(func(s *Service) {
  49. Convey("ViewerBase", func() {
  50. res, err := s.ViewerBase(c, MID)
  51. So(err, ShouldBeNil)
  52. So(res, ShouldNotBeNil)
  53. })
  54. }))
  55. }
  56. func Test_ViewerArea(t *testing.T) {
  57. Convey("ViewerArea", t, WithService(func(s *Service) {
  58. Convey("ViewerArea", func() {
  59. res, err := s.ViewerArea(c, MID)
  60. So(err, ShouldBeNil)
  61. So(res, ShouldNotBeNil)
  62. })
  63. }))
  64. }
  65. func Test_CacheTrend(t *testing.T) {
  66. Convey("CacheTrend", t, WithService(func(s *Service) {
  67. Convey("CacheTrend", func() {
  68. res, err := s.CacheTrend(c, MID)
  69. So(err, ShouldBeNil)
  70. So(res, ShouldNotBeNil)
  71. })
  72. }))
  73. }
  74. func Test_RelationFansHistory(t *testing.T) {
  75. Convey("RelationFansHistory", t, WithService(func(s *Service) {
  76. Convey("RelationFansHistory", func() {
  77. res, err := s.RelationFansHistory(c, MID, dt)
  78. So(err, ShouldBeNil)
  79. So(res, ShouldNotBeNil)
  80. })
  81. }))
  82. }
  83. func Test_RelationFansMonth(t *testing.T) {
  84. Convey("RelationFansMonth", t, WithService(func(s *Service) {
  85. Convey("RelationFansMonth", func() {
  86. res, err := s.RelationFansMonth(c, MID)
  87. So(err, ShouldBeNil)
  88. So(res, ShouldNotBeNil)
  89. })
  90. }))
  91. }
  92. func Test_ViewerActionHour(t *testing.T) {
  93. Convey("ViewerActionHour", t, WithService(func(s *Service) {
  94. Convey("ViewerActionHour", func() {
  95. res, err := s.ViewerActionHour(c, MID)
  96. So(err, ShouldBeNil)
  97. So(res, ShouldNotBeNil)
  98. })
  99. }))
  100. }
  101. func Test_UpIncr(t *testing.T) {
  102. Convey("UpIncr", t, WithService(func(s *Service) {
  103. Convey("UpIncr", func() {
  104. res, err := s.UpIncr(c, MID, ty, ip)
  105. So(err, ShouldBeNil)
  106. So(res, ShouldNotBeNil)
  107. })
  108. }))
  109. }
  110. func Test_AppUpIncr(t *testing.T) {
  111. Convey("AppUpIncr", t, WithService(func(s *Service) {
  112. Convey("AppUpIncr", func() {
  113. res, err := s.AppUpIncr(c, MID, ty, ip)
  114. So(err, ShouldBeNil)
  115. So(res, ShouldNotBeNil)
  116. })
  117. }))
  118. }
  119. func Test_ThirtyDayArchive(t *testing.T) {
  120. Convey("ThirtyDayArchive", t, WithService(func(s *Service) {
  121. Convey("ThirtyDayArchive", func() {
  122. res, err := s.ThirtyDayArchive(c, MID, ty)
  123. So(err, ShouldBeNil)
  124. So(res, ShouldNotBeNil)
  125. })
  126. }))
  127. }
  128. func Test_ThirtyDayArticle(t *testing.T) {
  129. Convey("ThirtyDayArticle", t, WithService(func(s *Service) {
  130. Convey("ThirtyDayArticle", func() {
  131. res, err := s.ThirtyDayArticle(c, MID, ip)
  132. So(err, ShouldBeNil)
  133. So(res, ShouldNotBeNil)
  134. })
  135. }))
  136. }