dao_test.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package favorite
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "testing"
  7. "go-common/app/interface/main/app-view/conf"
  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", "main.app-svr.app-view")
  16. flag.Set("conf_token", "3a4CNLBhdFbRQPs7B4QftGvXHtJo92xw")
  17. flag.Set("tree_id", "4575")
  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/app-view-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 TestAddVideo(t *testing.T) {
  35. convey.Convey("AddVideo", t, func(ctx convey.C) {
  36. var (
  37. c = context.Background()
  38. )
  39. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  40. d.AddVideo(c, 1, []int64{1}, 1, "")
  41. })
  42. })
  43. }
  44. func TestIsFavVideo(t *testing.T) {
  45. convey.Convey("IsFavVideo", t, func(ctx convey.C) {
  46. var (
  47. c = context.Background()
  48. )
  49. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  50. _, err := d.IsFavVideo(c, 1, 1)
  51. ctx.Convey("Then err should be nil", func(ctx convey.C) {
  52. ctx.So(err, convey.ShouldBeNil)
  53. })
  54. })
  55. })
  56. }