service_test.go 977 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package growup
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/creative/conf"
  6. "go-common/app/interface/main/creative/model/growup"
  7. "path/filepath"
  8. "testing"
  9. "time"
  10. "go-common/app/interface/main/creative/service"
  11. . "github.com/smartystreets/goconvey/convey"
  12. )
  13. var (
  14. s *Service
  15. p *service.Public
  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. p = service.New(conf.Conf, rpcdaos)
  23. s = New(conf.Conf, rpcdaos, p)
  24. time.Sleep(time.Second)
  25. }
  26. func WithService(f func(s *Service)) func() {
  27. return func() {
  28. Reset(func() {})
  29. f(s)
  30. }
  31. }
  32. func Test_UpInfo(t *testing.T) {
  33. var (
  34. c = context.TODO()
  35. err error
  36. res *growup.UpInfo
  37. MID = int64(27515256)
  38. localHost = "127.0.0.1"
  39. )
  40. Convey("UpInfo", t, WithService(func(s *Service) {
  41. res, err = s.UpInfo(c, MID, localHost)
  42. So(err, ShouldNotBeNil)
  43. So(res, ShouldBeNil)
  44. }))
  45. }