dao_test.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package thumbup
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "testing"
  7. "go-common/app/interface/main/app-intl/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-intl")
  16. flag.Set("conf_token", "02007e8d0f77d31baee89acb5ce6d3ac")
  17. flag.Set("tree_id", "64518")
  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-intl-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 TestLike(t *testing.T) {
  35. Convey("TestLike", t, func(ctx C) {
  36. err := d.Like(context.Background(), 27833317, 96070394, "", 33552993, 1)
  37. ctx.So(err, ShouldNotBeNil)
  38. })
  39. }
  40. func TestLikeWithStat(t *testing.T) {
  41. Convey("TestLikeWithStat", t, func(ctx C) {
  42. gotStat, err := d.LikeWithStat(context.Background(), 27833317, 96070394, "", 33552993, 1)
  43. ctx.So(gotStat, ShouldBeNil)
  44. ctx.So(err, ShouldNotBeNil)
  45. })
  46. }
  47. func TestHasLike(t *testing.T) {
  48. Convey("TestHasLike", t, func(ctx C) {
  49. gotRes, err := d.HasLike(context.Background(), 27833317, "", []int64{33552993})
  50. ctx.So(gotRes, ShouldBeEmpty)
  51. ctx.So(err, ShouldNotBeNil)
  52. })
  53. }