servicec_test.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package staff
  2. import (
  3. "flag"
  4. . "github.com/smartystreets/goconvey/convey"
  5. "go-common/app/interface/main/creative/conf"
  6. "go-common/app/interface/main/creative/service"
  7. "os"
  8. "testing"
  9. )
  10. var (
  11. s *Service
  12. )
  13. func TestMain(m *testing.M) {
  14. if os.Getenv("DEPLOY_ENV") != "" {
  15. flag.Set("app_id", "main.archive.creative")
  16. flag.Set("conf_token", "96b6a6c10bb311e894c14a552f48fef8")
  17. flag.Set("tree_id", "2305")
  18. flag.Set("conf_version", "docker-1")
  19. flag.Set("deploy_env", "uat")
  20. flag.Set("conf_host", "config.bilibili.co")
  21. flag.Set("conf_path", "/tmp")
  22. flag.Set("region", "sh")
  23. flag.Set("zone", "sh001")
  24. } else {
  25. flag.Set("conf", "../../cmd/creative.toml")
  26. }
  27. flag.Parse()
  28. if err := conf.Init(); err != nil {
  29. panic(err)
  30. }
  31. rpcdaos := service.NewRPCDaos(conf.Conf)
  32. s = New(conf.Conf, rpcdaos)
  33. os.Exit(m.Run())
  34. }
  35. func WithService(f func(s *Service)) func() {
  36. return func() {
  37. Reset(func() {})
  38. f(s)
  39. }
  40. }
  41. func Test_Resource(t *testing.T) {
  42. Convey("TypeConfig", t, WithService(func(s *Service) {
  43. res := s.TypeConfig()
  44. So(res, ShouldNotBeNil)
  45. }))
  46. }