dao_test.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package account
  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 Test_RPCInfo(t *testing.T) {
  35. Convey("return someting", t, func() {
  36. res, err := d.RPCInfo(context.TODO(), 88889021)
  37. So(err, ShouldBeNil)
  38. So(res, ShouldNotBeNil)
  39. })
  40. }
  41. func Test_RPCInfos(t *testing.T) {
  42. Convey("return someting", t, func() {
  43. res, err := d.RPCInfos(context.TODO(), []int64{88889021})
  44. So(err, ShouldBeNil)
  45. So(res, ShouldNotBeNil)
  46. })
  47. }