archive_test.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package archive
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "testing"
  7. "go-common/app/interface/main/app-channel/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-channel")
  16. flag.Set("conf_token", "a920405f87c5bbcca15f3ffebf169c04")
  17. flag.Set("tree_id", "7852")
  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 TestArchive(t *testing.T) {
  35. Convey("Archive", t, func(ctx C) {
  36. _, err := d.Archive(context.Background(), 99999999)
  37. So(err, ShouldNotBeNil) // should 404
  38. })
  39. }
  40. func TestArchives(t *testing.T) {
  41. Convey("Archives", t, func(ctx C) {
  42. _, err := d.Archives(context.Background(), []int64{1})
  43. So(err, ShouldBeNil)
  44. })
  45. }
  46. func TestArchivesWithPlayer(t *testing.T) {
  47. Convey("ArchivesWithPlayer", t, func(ctx C) {
  48. _, err := d.ArchivesWithPlayer(context.Background(), []int64{1}, 0, "", 0, 0, 0)
  49. So(err, ShouldBeNil)
  50. })
  51. }