dao_test.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package resource
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/creative/conf"
  6. "go-common/app/service/main/resource/model"
  7. "go-common/app/service/main/resource/rpc/client"
  8. "go-common/library/ecode"
  9. "os"
  10. "reflect"
  11. "testing"
  12. "github.com/bouk/monkey"
  13. "github.com/smartystreets/goconvey/convey"
  14. )
  15. var (
  16. d *Dao
  17. )
  18. func TestMain(m *testing.M) {
  19. if os.Getenv("DEPLOY_ENV") != "" {
  20. flag.Set("app_id", "main.archive.creative")
  21. flag.Set("conf_token", "96b6a6c10bb311e894c14a552f48fef8")
  22. flag.Set("tree_id", "2305")
  23. flag.Set("conf_version", "docker-1")
  24. flag.Set("deploy_env", "uat")
  25. flag.Set("conf_host", "config.bilibili.co")
  26. flag.Set("conf_path", "/tmp")
  27. flag.Set("region", "sh")
  28. flag.Set("zone", "sh001")
  29. } else {
  30. flag.Set("conf", "../../cmd/creative.toml")
  31. }
  32. flag.Parse()
  33. if err := conf.Init(); err != nil {
  34. panic(err)
  35. }
  36. d = New(conf.Conf)
  37. m.Run()
  38. os.Exit(0)
  39. }
  40. func TestResource(t *testing.T) {
  41. var (
  42. c = context.TODO()
  43. rid = int(1)
  44. )
  45. convey.Convey("Resource", t, func(ctx convey.C) {
  46. // mock
  47. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.resRPC), "Resource",
  48. func(_ *client.Service, _ context.Context, _ *model.ArgRes) (res *model.Resource, err error) {
  49. return nil, ecode.CreativeArticleRPCErr
  50. })
  51. defer mock.Unpatch()
  52. _, err := d.Resource(c, rid)
  53. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  54. ctx.So(err, convey.ShouldNotBeNil)
  55. })
  56. })
  57. }
  58. func TestSimpleResource(t *testing.T) {
  59. var (
  60. c = context.TODO()
  61. rid = int(1)
  62. )
  63. convey.Convey("SimpleResource", t, func(ctx convey.C) {
  64. // mock
  65. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.resRPC), "Resource",
  66. func(_ *client.Service, _ context.Context, _ *model.ArgRes) (res *model.Resource, err error) {
  67. return nil, ecode.CreativeArticleRPCErr
  68. })
  69. defer mock.Unpatch()
  70. _, err := d.SimpleResource(c, rid)
  71. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  72. ctx.So(err, convey.ShouldNotBeNil)
  73. })
  74. })
  75. }
  76. func TestBanner(t *testing.T) {
  77. var (
  78. c = context.TODO()
  79. mobiApp, device, network, channel, ip, buvid, adExtra string
  80. build int
  81. plat int8
  82. mid int64
  83. isAd bool
  84. )
  85. convey.Convey("Banner", t, func(ctx convey.C) {
  86. // mock
  87. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.resRPC), "Banners",
  88. func(_ *client.Service, _ context.Context, _ *model.ArgBanner) (res *model.Banners, err error) {
  89. return nil, ecode.CreativeArticleRPCErr
  90. })
  91. defer mock.Unpatch()
  92. _, err := d.Banner(c, mobiApp, device, network, channel, ip, buvid, adExtra, "1", build, plat, mid, isAd)
  93. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  94. ctx.So(err, convey.ShouldNotBeNil)
  95. })
  96. })
  97. }