dao_test.go 968 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package show
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "testing"
  7. "go-common/app/service/main/resource/conf"
  8. "github.com/smartystreets/goconvey/convey"
  9. )
  10. var (
  11. d *Dao
  12. )
  13. func TestMain(m *testing.M) {
  14. if os.Getenv("DEPLOY_ENV") != "" {
  15. flag.Set("app_id", "main.app-svr.resource-service")
  16. flag.Set("conf_token", "y79sErNhxggjvULS0O8Czas9PaxHBF5o")
  17. flag.Set("tree_id", "3232")
  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/resource-service-test.toml")
  26. }
  27. flag.Parse()
  28. if err := conf.Init(); err != nil {
  29. panic(err)
  30. }
  31. d = New(conf.Conf)
  32. m.Run()
  33. os.Exit(0)
  34. }
  35. func TestDaoPing(t *testing.T) {
  36. convey.Convey("Ping", t, func(ctx convey.C) {
  37. err := d.Ping(context.TODO())
  38. ctx.Convey("Err should be nil", func() {
  39. ctx.So(err, convey.ShouldBeNil)
  40. })
  41. })
  42. }