dao_test.go 840 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package history
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "go-common/app/interface/main/tv/conf"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. var (
  10. d *Dao
  11. ctx = context.TODO()
  12. )
  13. func init() {
  14. //dir, _ := filepath.Abs("../../cmd/tv-interface.toml")
  15. //flag.Set("conf", dir)
  16. if os.Getenv("DEPLOY_ENV") != "" {
  17. flag.Set("app_id", "main.web-svr.tv-interface")
  18. flag.Set("conf_token", "07c1826c1f39df02a1411cdd6f455879")
  19. flag.Set("tree_id", "15326")
  20. flag.Set("conf_version", "docker-1")
  21. flag.Set("deploy_env", "uat")
  22. flag.Set("conf_host", "config.bilibili.co")
  23. flag.Set("conf_path", "/tmp")
  24. flag.Set("region", "sh")
  25. flag.Set("zone", "sh001")
  26. }
  27. flag.Parse()
  28. if err := conf.Init(); err != nil {
  29. panic(err)
  30. }
  31. d = New(conf.Conf)
  32. }
  33. func WithDao(f func(d *Dao)) func() {
  34. return func() {
  35. Reset(func() {})
  36. f(d)
  37. }
  38. }