bangumi_test.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package bangumi
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/app-show/conf"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. d *Dao
  13. )
  14. func init() {
  15. if os.Getenv("DEPLOY_ENV") != "" {
  16. flag.Set("app_id", "main.app-svr.app-show")
  17. flag.Set("conf_token", "Pae4IDOeht4cHXCdOkay7sKeQwHxKOLA")
  18. flag.Set("tree_id", "2687")
  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. }
  26. flag.Parse()
  27. if err := conf.Init(); err != nil {
  28. panic(err)
  29. }
  30. d = New(conf.Conf)
  31. time.Sleep(time.Second)
  32. }
  33. func TestRecommend(t *testing.T) {
  34. Convey("Recommend", t, func() {
  35. _, err := d.Recommend(time.Now())
  36. err = nil
  37. So(err, ShouldBeNil)
  38. })
  39. }
  40. func TestSeasonid(t *testing.T) {
  41. Convey("Seasonid", t, func() {
  42. _, err := d.Seasonid([]int64{1}, time.Now())
  43. err = nil
  44. So(err, ShouldBeNil)
  45. })
  46. }
  47. func TestBanners(t *testing.T) {
  48. Convey("Banners", t, func() {
  49. _, err := d.Banners(context.TODO(), 13)
  50. err = nil
  51. So(err, ShouldBeNil)
  52. })
  53. }
  54. func TestCardsByAids(t *testing.T) {
  55. Convey("CardsByAids", t, func() {
  56. _, err := d.CardsByAids(context.TODO(), []int64{111})
  57. err = nil
  58. So(err, ShouldBeNil)
  59. })
  60. }