service_test.go 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. package reply
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/creative/conf"
  6. seamdl "go-common/app/interface/main/creative/model/search"
  7. "path/filepath"
  8. "testing"
  9. "time"
  10. "go-common/app/interface/main/creative/service"
  11. "github.com/davecgh/go-spew/spew"
  12. . "github.com/smartystreets/goconvey/convey"
  13. )
  14. var (
  15. s *Service
  16. )
  17. func init() {
  18. dir, _ := filepath.Abs("../../cmd/creative.toml")
  19. flag.Set("conf", dir)
  20. conf.Init()
  21. rpcdaos := service.NewRPCDaos(conf.Conf)
  22. s = New(conf.Conf, rpcdaos)
  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. func Test_Replies(t *testing.T) {
  32. var (
  33. c = context.TODO()
  34. mid = int64(2089809)
  35. oid = int64(0)
  36. res *seamdl.Replies
  37. err error
  38. p *seamdl.ReplyParam
  39. )
  40. Convey("Replies", t, WithService(func(s *Service) {
  41. p = &seamdl.ReplyParam{
  42. Ak: "ak",
  43. Ck: "ck",
  44. OMID: mid,
  45. OID: oid,
  46. Pn: 1,
  47. Ps: 10,
  48. }
  49. res, err = s.Replies(c, p)
  50. So(err, ShouldBeNil)
  51. So(res, ShouldNotBeNil)
  52. spew.Dump(res)
  53. }))
  54. }
  55. func Test_Archives(t *testing.T) {
  56. var (
  57. oids = []int64{1, 2, 3, 4}
  58. ip = "127.0.0.1"
  59. c = context.TODO()
  60. )
  61. Convey("Archives", t, WithService(func(s *Service) {
  62. res, err := s.arc.Archives(c, oids, ip)
  63. So(err, ShouldBeNil)
  64. So(res, ShouldNotBeNil)
  65. }))
  66. }
  67. func Test_Articles(t *testing.T) {
  68. var (
  69. oids = []int64{1, 2, 3, 4}
  70. ip = "127.0.0.1"
  71. c = context.TODO()
  72. )
  73. Convey("Articles", t, WithService(func(s *Service) {
  74. res, err := s.art.ArticleMetas(c, oids, ip)
  75. So(err, ShouldBeNil)
  76. So(res, ShouldNotBeNil)
  77. }))
  78. }
  79. func Test_Audio(t *testing.T) {
  80. var (
  81. oids = []int64{47276}
  82. level = 0
  83. ip = "127.0.0.1"
  84. c = context.TODO()
  85. )
  86. Convey("Audio", t, WithService(func(s *Service) {
  87. res, err := s.mus.Audio(c, oids, level, ip)
  88. So(err, ShouldBeNil)
  89. So(res, ShouldNotBeNil)
  90. spew.Dump(res)
  91. }))
  92. }