dao_test.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package archive
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "testing"
  7. "go-common/app/interface/main/app-feed/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-feed")
  16. flag.Set("conf_token", "OC30xxkAOyaH9fI6FRuXA0Ob5HL0f3kc")
  17. flag.Set("tree_id", "2686")
  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. }
  25. flag.Parse()
  26. if err := conf.Init(); err != nil {
  27. panic(err)
  28. }
  29. d = New(conf.Conf)
  30. m.Run()
  31. os.Exit(0)
  32. }
  33. func TestPing(t *testing.T) {
  34. var (
  35. c = context.TODO()
  36. )
  37. convey.Convey("Ping", t, func(ctx convey.C) {
  38. d.PingMC(c)
  39. })
  40. }
  41. func TestArchives(t *testing.T) {
  42. var (
  43. c = context.TODO()
  44. aids = []int64{1}
  45. )
  46. convey.Convey("Ping", t, func(ctx convey.C) {
  47. _, err := d.Archives(c, aids)
  48. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  49. ctx.So(err, convey.ShouldBeNil)
  50. })
  51. })
  52. }
  53. func TestArchivesWithPlayer(t *testing.T) {
  54. var (
  55. c = context.TODO()
  56. aids = []int64{1}
  57. qn = 32
  58. platform = "android"
  59. fnver = 0
  60. fnval = 0
  61. forceHost = 0
  62. )
  63. convey.Convey("Ping", t, func(ctx convey.C) {
  64. _, err := d.ArchivesWithPlayer(c, aids, qn, platform, fnver, fnval, forceHost, 0)
  65. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  66. ctx.So(err, convey.ShouldBeNil)
  67. })
  68. })
  69. }