service_test.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package assist
  2. import (
  3. "context"
  4. "flag"
  5. "path/filepath"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/creative/conf"
  9. "go-common/app/interface/main/creative/model/assist"
  10. . "github.com/smartystreets/goconvey/convey"
  11. "go-common/app/interface/main/creative/service"
  12. )
  13. var (
  14. s *Service
  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. s = New(conf.Conf, rpcdaos)
  22. time.Sleep(time.Second)
  23. }
  24. func WithService(f func(s *Service)) func() {
  25. return func() {
  26. Reset(func() {})
  27. f(s)
  28. }
  29. }
  30. func ctx() context.Context {
  31. return context.Background()
  32. }
  33. func Test_Revoc(t *testing.T) {
  34. var (
  35. c = ctx()
  36. ck = ""
  37. ip = "127.0.0.1"
  38. assistLog = &assist.AssistLog{}
  39. )
  40. Convey("test_revoc", t, func() {
  41. err := s.revoc(c, assistLog, ck, ip)
  42. So(err, ShouldNotBeNil)
  43. })
  44. }
  45. func Test_Live(t *testing.T) {
  46. var (
  47. c = ctx()
  48. ip = "127.0.0.1"
  49. ck = ""
  50. ak = ""
  51. MID = int64(27515256)
  52. assistMid = int64(27515257)
  53. )
  54. Convey("test_LiveStatus", t, func() {
  55. open, err := s.LiveStatus(c, MID, ip)
  56. So(err, ShouldBeNil)
  57. So(open, ShouldNotBeNil)
  58. })
  59. Convey("test_liveAddAssist", t, func() {
  60. err := s.liveAddAssist(c, MID, assistMid, ak, ck, ip)
  61. So(err, ShouldBeNil)
  62. })
  63. }
  64. func Test_Assist(t *testing.T) {
  65. var (
  66. c = ctx()
  67. err error
  68. ip = "127.0.0.1"
  69. MID = int64(27515256)
  70. ass []*assist.Assist
  71. )
  72. Convey("test_Assists", t, WithService(func(s *Service) {
  73. ass, err = s.Assists(c, MID, ip)
  74. So(err, ShouldBeNil)
  75. So(ass, ShouldNotBeNil)
  76. }))
  77. }