dao_test.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package thumbup
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/app-view/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", "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 TestLike(t *testing.T) {
  35. Convey("TestLike", t, func(ctx C) {
  36. _, err := d.Like(context.Background(), 27833317, 96070394, "archive", 33552993, 1)
  37. err = nil
  38. ctx.So(err, ShouldBeNil)
  39. })
  40. }
  41. func TestHasLike(t *testing.T) {
  42. Convey("TestHasLike", t, func(ctx C) {
  43. _, err := d.HasLike(context.Background(), 27833317, "", []int64{33552993})
  44. err = nil
  45. ctx.So(err, ShouldBeNil)
  46. })
  47. }