service_test.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package account
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/creative/conf"
  6. accmdl "go-common/app/interface/main/creative/model/account"
  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. )
  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 Test_Account(t *testing.T) {
  31. var (
  32. c = context.TODO()
  33. err error
  34. MID = int64(2089809)
  35. localHost = "127.0.0.1"
  36. v *accmdl.UpInfo
  37. m *accmdl.MyInfo
  38. ip = ""
  39. )
  40. Convey("MyInfo", t, WithService(func(s *Service) {
  41. m, err = s.MyInfo(c, MID, ip, time.Now())
  42. So(err, ShouldBeNil)
  43. So(m, ShouldNotBeNil)
  44. }))
  45. Convey("UpInfo", t, WithService(func(s *Service) {
  46. v, err = s.UpInfo(c, MID, localHost)
  47. So(err, ShouldBeNil)
  48. So(v, ShouldNotBeNil)
  49. }))
  50. }