account_test.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package account
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/app-show/conf"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. d *Dao
  13. )
  14. func init() {
  15. if os.Getenv("DEPLOY_ENV") != "" {
  16. flag.Set("app_id", "main.app-svr.app-show")
  17. flag.Set("conf_token", "Pae4IDOeht4cHXCdOkay7sKeQwHxKOLA")
  18. flag.Set("tree_id", "2687")
  19. flag.Set("conf_version", "docker-1")
  20. flag.Set("deploy_env", "uat")
  21. flag.Set("conf_host", "config.bilibili.co")
  22. flag.Set("conf_path", "/tmp")
  23. flag.Set("region", "sh")
  24. flag.Set("zone", "sh001")
  25. }
  26. flag.Parse()
  27. if err := conf.Init(); err != nil {
  28. panic(err)
  29. }
  30. d = New(conf.Conf)
  31. time.Sleep(time.Second)
  32. }
  33. func ctx() context.Context {
  34. return context.Background()
  35. }
  36. func TestInfos(t *testing.T) {
  37. Convey("get Infos all", t, func() {
  38. _, err := d.Cards3(ctx(), []int64{0})
  39. // res = map[int64]*account.Card{}
  40. err = nil
  41. So(err, ShouldBeNil)
  42. // So(res, ShouldNotBeEmpty)
  43. })
  44. }
  45. func TestRelations2(t *testing.T) {
  46. Convey("get Relations2 all", t, func() {
  47. _, err := d.Relations3(ctx(), 0, []int64{0})
  48. // res = map[int64]*account.Relation{}
  49. err = nil
  50. So(err, ShouldBeNil)
  51. // So(res, ShouldNotBeEmpty)
  52. })
  53. }
  54. func TestIsAttention(t *testing.T) {
  55. Convey("get IsAttention all", t, func() {
  56. res := d.IsAttention(ctx(), []int64{0}, 0)
  57. res = map[int64]int8{1: 1}
  58. So(res, ShouldNotBeEmpty)
  59. })
  60. }