drawyoo_test.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package drawyoo
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/reply/conf"
  6. "os"
  7. "testing"
  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", "")
  16. flag.Set("conf_token", "")
  17. flag.Set("tree_id", "")
  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/reply-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 TestDrawyooNew(t *testing.T) {
  35. convey.Convey("New", t, func(ctx convey.C) {
  36. var (
  37. c = conf.Conf
  38. )
  39. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  40. p1 := New(c)
  41. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  42. ctx.So(p1, convey.ShouldNotBeNil)
  43. })
  44. })
  45. })
  46. }
  47. func TestDrawyooInfo(t *testing.T) {
  48. convey.Convey("Info", t, func(ctx convey.C) {
  49. var (
  50. c = context.Background()
  51. hid = int64(0)
  52. )
  53. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  54. info, err := d.Info(c, hid)
  55. ctx.Convey("Then err should be nil.info should not be nil.", func(ctx convey.C) {
  56. ctx.So(err, convey.ShouldNotBeNil)
  57. ctx.So(info, convey.ShouldBeNil)
  58. })
  59. })
  60. })
  61. }
  62. func TestDrawyooInfos(t *testing.T) {
  63. convey.Convey("Infos", t, func(ctx convey.C) {
  64. var (
  65. c = context.Background()
  66. hids = []int64{}
  67. d = New(conf.Conf)
  68. )
  69. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  70. info, err := d.Infos(c, hids)
  71. ctx.Convey("Then err should be nil.info should not be nil.", func(ctx convey.C) {
  72. ctx.So(err, convey.ShouldNotBeNil)
  73. ctx.So(info, convey.ShouldBeNil)
  74. })
  75. })
  76. })
  77. }