dao_test.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package manager
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "testing"
  7. "go-common/app/admin/main/credit/conf"
  8. . "github.com/smartystreets/goconvey/convey"
  9. )
  10. var d *Dao
  11. func TestMain(m *testing.M) {
  12. if os.Getenv("DEPLOY_ENV") != "" {
  13. flag.Set("app_id", "main.account-law.credit-admin")
  14. flag.Set("conf_appid", "main.account-law.credit-admin")
  15. flag.Set("conf_token", "eKmbn2M4jvSyyjMEOywLFOQlX5ggRG9x")
  16. flag.Set("tree_id", "5885")
  17. flag.Set("conf_version", "docker-1")
  18. flag.Set("deploy_env", "uat")
  19. flag.Set("conf_env", "10")
  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/convey-test.toml")
  26. }
  27. flag.Parse()
  28. if err := conf.Init(); err != nil {
  29. panic(err)
  30. }
  31. d = New(conf.Conf)
  32. os.Exit(m.Run())
  33. }
  34. func WithDao(f func(d *Dao)) func() {
  35. return func() {
  36. f(d)
  37. }
  38. }
  39. func ctx() context.Context {
  40. return context.Background()
  41. }
  42. func Test_Managers(t *testing.T) {
  43. Convey("return someting", t, func() {
  44. res, err := d.Managers(context.TODO())
  45. So(err, ShouldBeNil)
  46. So(res, ShouldNotBeNil)
  47. })
  48. }
  49. func Test_Manager(t *testing.T) {
  50. Convey("return someting", t, func() {
  51. res, err := d.Manager(context.TODO(), 1, 2)
  52. So(err, ShouldBeNil)
  53. So(res, ShouldNotBeNil)
  54. })
  55. }
  56. func Test_ManagerTotal(t *testing.T) {
  57. Convey("return someting", t, func() {
  58. res, err := d.ManagerTotal(context.TODO())
  59. So(err, ShouldBeNil)
  60. So(res, ShouldNotBeNil)
  61. })
  62. }