dao_test.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package favorite
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "testing"
  7. "go-common/app/interface/main/app-interface/conf"
  8. . "github.com/smartystreets/goconvey/convey"
  9. )
  10. var (
  11. dao *Dao
  12. )
  13. func TestMain(m *testing.M) {
  14. if os.Getenv("DEPLOY_ENV") != "" {
  15. flag.Set("app_id", "main.app-svr.app-interface")
  16. flag.Set("conf_token", "1mWvdEwZHmCYGoXJCVIdszBOPVdtpXb3")
  17. flag.Set("tree_id", "2688")
  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-interface-test.toml")
  26. }
  27. flag.Parse()
  28. if err := conf.Init(); err != nil {
  29. panic(err)
  30. }
  31. dao = New(conf.Conf)
  32. os.Exit(m.Run())
  33. // time.Sleep(time.Second)
  34. }
  35. func TestDao_Folders(t *testing.T) {
  36. Convey("folder", t, func() {
  37. gotFs, err := dao.Folders(context.Background(), 1, 1, "android", 0, true)
  38. So(gotFs, ShouldNotBeEmpty)
  39. So(err, ShouldBeNil)
  40. })
  41. }
  42. func TestDao_FolderVideo(t *testing.T) {
  43. Convey("folder video", t, func() {
  44. gotFav, err := dao.FolderVideo(context.Background(), "", "", "", "", "", "", "", 0, 0, 1, 20, 1, 0, 1)
  45. So(gotFav, ShouldNotBeEmpty)
  46. So(err, ShouldBeNil)
  47. })
  48. }