fans_test.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package fans
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/reply/conf"
  6. "os"
  7. "testing"
  8. "time"
  9. "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. d *Dao
  13. )
  14. func TestMain(m *testing.M) {
  15. if os.Getenv("DEPLOY_ENV") != "" {
  16. flag.Set("app_id", "")
  17. flag.Set("conf_token", "")
  18. flag.Set("tree_id", "")
  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. } else {
  26. flag.Set("conf", "../../cmd/reply-test.toml")
  27. }
  28. flag.Parse()
  29. if err := conf.Init(); err != nil {
  30. panic(err)
  31. }
  32. d = New(conf.Conf)
  33. os.Exit(m.Run())
  34. }
  35. func TestFansNew(t *testing.T) {
  36. convey.Convey("New", t, func(ctx convey.C) {
  37. var (
  38. c = conf.Conf
  39. )
  40. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  41. p1 := New(c)
  42. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  43. ctx.So(p1, convey.ShouldNotBeNil)
  44. })
  45. })
  46. })
  47. }
  48. func TestFansFetch(t *testing.T) {
  49. convey.Convey("Fetch", t, func(ctx convey.C) {
  50. var (
  51. c = context.Background()
  52. uids = []int64{}
  53. mid = int64(0)
  54. now = time.Now()
  55. )
  56. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  57. p1, err := d.Fetch(c, uids, mid, now)
  58. ctx.Convey("Then err should be nil.p1 should not be nil.", func(ctx convey.C) {
  59. ctx.So(err, convey.ShouldBeNil)
  60. ctx.So(p1, convey.ShouldNotBeNil)
  61. })
  62. })
  63. })
  64. }