service_test.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. package archive
  2. import (
  3. "context"
  4. "flag"
  5. "fmt"
  6. "path/filepath"
  7. "testing"
  8. "time"
  9. "github.com/davecgh/go-spew/spew"
  10. "go-common/app/interface/main/creative/conf"
  11. arcmdl "go-common/app/interface/main/creative/model/archive"
  12. "go-common/app/interface/main/creative/model/order"
  13. "go-common/app/interface/main/creative/service"
  14. . "github.com/smartystreets/goconvey/convey"
  15. )
  16. var (
  17. s *Service
  18. p *service.Public
  19. )
  20. func init() {
  21. dir, _ := filepath.Abs("../../cmd/creative.toml")
  22. flag.Set("conf", dir)
  23. conf.Init()
  24. rpcdaos := service.NewRPCDaos(conf.Conf)
  25. p = service.New(conf.Conf, rpcdaos)
  26. s = New(conf.Conf, rpcdaos, p)
  27. time.Sleep(time.Second)
  28. }
  29. func WithService(f func(s *Service)) func() {
  30. return func() {
  31. Reset(func() {})
  32. f(s)
  33. }
  34. }
  35. func ctx() context.Context {
  36. return context.Background()
  37. }
  38. func Test_Oasis(t *testing.T) {
  39. Convey("should get user oasis info", t, func() {
  40. res, err := s.Oasis(ctx(), 27515256, "127.0.0.1")
  41. So(err, ShouldBeNil)
  42. So(res, ShouldNotBeNil)
  43. })
  44. }
  45. func Test_Order(t *testing.T) {
  46. var (
  47. c = ctx()
  48. err error
  49. MID = int64(27515256)
  50. orders []*order.Order
  51. oasis *order.Oasis
  52. )
  53. Convey("ExecuteOrders", t, WithService(func(s *Service) {
  54. orders, err = s.ExecuteOrders(c, MID, "127.0.0.1")
  55. So(err, ShouldBeNil)
  56. spew.Dump(orders)
  57. }))
  58. Convey("Oasis", t, WithService(func(s *Service) {
  59. oasis, err = s.Oasis(c, MID, "127.0.0.1")
  60. So(err, ShouldBeNil)
  61. spew.Dump(oasis)
  62. }))
  63. }
  64. func Test_ServiceBasic(t *testing.T) {
  65. var (
  66. c = context.Background()
  67. err error
  68. )
  69. Convey("ServiceClose", t, WithService(func(s *Service) {
  70. s.Close()
  71. }))
  72. Convey("Ping", t, WithService(func(s *Service) {
  73. err = s.Ping(c)
  74. So(err, ShouldBeNil)
  75. }))
  76. Convey("AppModuleShowMap", t, WithService(func(s *Service) {
  77. var res map[string]bool
  78. mid := int64(91513044)
  79. res = s.AppModuleShowMap(mid, false)
  80. So(res, ShouldNotBeNil)
  81. }))
  82. }
  83. func Test_NetSafe(t *testing.T) {
  84. var (
  85. c = context.Background()
  86. err error
  87. nid int64
  88. md5 string
  89. )
  90. nid = 123
  91. md5 = "iamamd5string"
  92. Convey("AddNetSafeMd5", t, WithService(func(s *Service) {
  93. err = s.AddNetSafeMd5(c, nid, md5)
  94. So(err, ShouldBeNil)
  95. }))
  96. Convey("NotifyNetSafe", t, WithService(func(s *Service) {
  97. err = s.NotifyNetSafe(c, nid)
  98. So(err, ShouldBeNil)
  99. }))
  100. }
  101. func Test_DescFormat(t *testing.T) {
  102. var (
  103. c = context.Background()
  104. err error
  105. typeid, copyright int64
  106. langStr, ip string
  107. desc *arcmdl.DescFormat
  108. af []*arcmdl.AppFormat
  109. length int
  110. )
  111. Convey("DescFormat", t, WithService(func(s *Service) {
  112. desc, err = s.DescFormat(c, typeid, copyright, langStr, ip)
  113. So(err, ShouldBeNil)
  114. So(desc, ShouldNotBeNil)
  115. }))
  116. Convey("DescFormatForApp", t, WithService(func(s *Service) {
  117. desc, length, err = s.DescFormatForApp(c, typeid, copyright, langStr, ip)
  118. So(err, ShouldBeNil)
  119. So(desc, ShouldNotBeNil)
  120. So(length, ShouldNotBeNil)
  121. So(length, ShouldBeGreaterThanOrEqualTo, 0)
  122. }))
  123. Convey("AppFormats", t, WithService(func(s *Service) {
  124. af, err = s.AppFormats(c)
  125. So(err, ShouldBeNil)
  126. So(af, ShouldNotBeNil)
  127. So(len(af), ShouldBeGreaterThanOrEqualTo, 0)
  128. }))
  129. }
  130. func Test_Arc(t *testing.T) {
  131. var (
  132. c = context.Background()
  133. err error
  134. mid, aid int64
  135. ak, ck, ip = "", "", ""
  136. ap *arcmdl.SimpleArchiveVideos
  137. )
  138. Convey("SimpleArchiveVideos", t, WithService(func(s *Service) {
  139. ap, err = s.SimpleArchiveVideos(c, mid, aid, ak, ck, ip)
  140. So(err, ShouldBeNil)
  141. So(ap, ShouldNotBeNil)
  142. }))
  143. }
  144. func TestArchiveBIZsByTime(t *testing.T) {
  145. Convey("BIZsByTime", t, WithService(func(s *Service) {
  146. var (
  147. c = context.Background()
  148. start = time.Unix(1544000000, 0)
  149. end = time.Unix(1544008000, 0)
  150. tp = int8(2)
  151. )
  152. // mock bizs
  153. Convey("When everything gose positive", WithService(func(s *Service) {
  154. bizs, err := s.BIZsByTime(c, &start, &end, tp)
  155. Convey("Then err should be nil.bizs should not be nil.", func(ctx C) {
  156. So(err, ShouldBeNil)
  157. So(bizs, ShouldNotBeNil)
  158. fmt.Println(bizs[0])
  159. })
  160. }))
  161. }))
  162. }