vip_test.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package vip
  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 TestVipNew(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 TestVipEmoji(t *testing.T) {
  48. convey.Convey("Emoji", t, func(ctx convey.C) {
  49. var (
  50. c = context.Background()
  51. )
  52. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  53. emjs, emjM, err := d.Emoji(c)
  54. ctx.Convey("Then err should be nil.emjs,emjM should not be nil.", func(ctx convey.C) {
  55. ctx.So(err, convey.ShouldBeNil)
  56. ctx.So(emjM, convey.ShouldNotBeNil)
  57. ctx.So(emjs, convey.ShouldNotBeNil)
  58. })
  59. })
  60. })
  61. }