dao_test.go 849 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package dao
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/job/main/growup/conf"
  6. "os"
  7. "testing"
  8. )
  9. var (
  10. d *Dao
  11. )
  12. func TestMain(m *testing.M) {
  13. if os.Getenv("DEPLOY_ENV") != "" {
  14. flag.Set("app_id", "mobile.studio.growup-job")
  15. flag.Set("conf_token", "8781e02680f40996bc01eb1248ac2ac9")
  16. flag.Set("tree_id", "14716")
  17. flag.Set("conf_version", "docker-1")
  18. flag.Set("deploy_env", "uat")
  19. flag.Set("conf_host", "config.bilibili.co")
  20. flag.Set("conf_path", "/tmp")
  21. flag.Set("region", "sh")
  22. flag.Set("zone", "sh001")
  23. } else {
  24. flag.Set("conf", "../cmd/growup-job.toml")
  25. }
  26. flag.Parse()
  27. if err := conf.Init(); err != nil {
  28. panic(err)
  29. }
  30. d = New(conf.Conf)
  31. os.Exit(m.Run())
  32. }
  33. func Exec(c context.Context, sql string) (rows int64, err error) {
  34. res, err := d.db.Exec(c, sql)
  35. if err != nil {
  36. return
  37. }
  38. return res.RowsAffected()
  39. }