dao_test.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package bfs
  2. import (
  3. "bytes"
  4. "context"
  5. "flag"
  6. "go-common/app/interface/main/videoup/conf"
  7. "os"
  8. "testing"
  9. "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. d *Dao
  13. )
  14. func TestMain(m *testing.M) {
  15. if os.Getenv("DEPLOY_ENV") != "" {
  16. flag.Set("app_id", "main.archive.videoup")
  17. flag.Set("conf_token", "9772c9629b00ac09af29a23004795051")
  18. flag.Set("tree_id", "2306")
  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. } else {
  26. flag.Set("conf", "../cmd/videoup.toml")
  27. }
  28. flag.Parse()
  29. if err := conf.Init(); err != nil {
  30. panic(err)
  31. }
  32. d = New(conf.Conf)
  33. m.Run()
  34. os.Exit(0)
  35. }
  36. func Test_Upload(t *testing.T) {
  37. var (
  38. c = context.TODO()
  39. err error
  40. loc string
  41. body = []byte{}
  42. )
  43. convey.Convey("Upload", t, func(ctx convey.C) {
  44. loc, err = d.Upload(c, "jpeg", bytes.NewReader(body))
  45. ctx.Convey("Then err should be nil should not be nil.", func(ctx convey.C) {
  46. ctx.So(err, convey.ShouldNotBeNil)
  47. ctx.So(loc, convey.ShouldNotBeNil)
  48. })
  49. })
  50. }