service_test.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package danmu
  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. )
  15. func init() {
  16. dir, _ := filepath.Abs("../../cmd/creative.toml")
  17. flag.Set("conf", dir)
  18. conf.Init()
  19. rpcdaos := service.NewRPCDaos(conf.Conf)
  20. s = New(conf.Conf, rpcdaos)
  21. time.Sleep(time.Second)
  22. }
  23. func WithService(f func(s *Service)) func() {
  24. return func() {
  25. Reset(func() {})
  26. f(s)
  27. }
  28. }
  29. func Test_AdvDmPurchaseList(t *testing.T) {
  30. var (
  31. c = context.Background()
  32. MID = int64(27515256)
  33. )
  34. Convey("AdvDmPurchaseList", t, WithService(func(s *Service) {
  35. _, err := s.AdvDmPurchaseList(c, MID, "")
  36. So(err, ShouldNotBeNil)
  37. }))
  38. }
  39. func Test_Distri(t *testing.T) {
  40. var (
  41. c = context.Background()
  42. MID = int64(27515256)
  43. )
  44. Convey("Distri", t, WithService(func(s *Service) {
  45. _, err := s.Distri(c, MID, 2333, "")
  46. So(err, ShouldNotBeNil)
  47. }))
  48. }
  49. func Test_DmProtectList(t *testing.T) {
  50. var (
  51. c = context.Background()
  52. MID = int64(27515256)
  53. )
  54. Convey("DmProtectList", t, WithService(func(s *Service) {
  55. _, err := s.DmProtectList(c, MID, 1, "2333", "time", "")
  56. So(err, ShouldNotBeNil)
  57. }))
  58. }
  59. func Test_DmReportList(t *testing.T) {
  60. var (
  61. c = context.Background()
  62. MID = int64(27515256)
  63. )
  64. Convey("DmReportList", t, WithService(func(s *Service) {
  65. _, err := s.DmReportList(c, MID, 1, 10, "2333", "")
  66. So(err, ShouldNotBeNil)
  67. }))
  68. }
  69. func Test_Recent(t *testing.T) {
  70. var (
  71. c = context.Background()
  72. MID = int64(27515256)
  73. )
  74. Convey("Recent", t, WithService(func(s *Service) {
  75. _, err := s.Recent(c, MID, 1, 10, "")
  76. So(err, ShouldNotBeNil)
  77. }))
  78. }