dao_test.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package drawimg
  2. import (
  3. "context"
  4. "flag"
  5. "github.com/smartystreets/goconvey/convey"
  6. "go-common/app/interface/main/creative/conf"
  7. "os"
  8. "testing"
  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.archive.creative")
  16. flag.Set("conf_token", "96b6a6c10bb311e894c14a552f48fef8")
  17. flag.Set("tree_id", "2305")
  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/creative.toml")
  26. }
  27. flag.Parse()
  28. if err := conf.Init(); err != nil {
  29. panic(err)
  30. }
  31. d = New(conf.Conf)
  32. d = &Dao{
  33. c: conf.Conf,
  34. dw: &di,
  35. }
  36. m.Run()
  37. os.Exit(0)
  38. }
  39. func TestDrawimgMake(t *testing.T) {
  40. convey.Convey("Make", t, func(ctx convey.C) {
  41. var (
  42. c = context.Background()
  43. mid = int64(1)
  44. text = "123"
  45. isUname = true
  46. )
  47. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  48. _, err := d.Make(c, mid, text, isUname)
  49. ctx.Convey("Then err should be nil.dw should not be nil.", func(ctx convey.C) {
  50. ctx.So(err, convey.ShouldNotBeNil)
  51. })
  52. })
  53. })
  54. }