dao_test.go 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. package pay
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/creative/conf"
  6. "go-common/app/interface/main/creative/model/archive"
  7. "os"
  8. "strings"
  9. "testing"
  10. "github.com/smartystreets/goconvey/convey"
  11. gock "gopkg.in/h2non/gock.v1"
  12. )
  13. var (
  14. d *Dao
  15. )
  16. func TestMain(m *testing.M) {
  17. if os.Getenv("DEPLOY_ENV") != "" {
  18. flag.Set("app_id", "main.archive.creative")
  19. flag.Set("conf_token", "96b6a6c10bb311e894c14a552f48fef8")
  20. flag.Set("tree_id", "2305")
  21. flag.Set("conf_version", "docker-1")
  22. flag.Set("deploy_env", "uat")
  23. flag.Set("conf_host", "config.bilibili.co")
  24. flag.Set("conf_path", "/tmp")
  25. flag.Set("region", "sh")
  26. flag.Set("zone", "sh001")
  27. } else {
  28. flag.Set("conf", "../../cmd/creative.toml")
  29. }
  30. flag.Parse()
  31. if err := conf.Init(); err != nil {
  32. panic(err)
  33. }
  34. d = New(conf.Conf)
  35. m.Run()
  36. os.Exit(0)
  37. }
  38. func httpMock(method, url string) *gock.Request {
  39. r := gock.New(url)
  40. r.Method = strings.ToUpper(method)
  41. d.client.SetTransport(gock.DefaultTransport)
  42. // d.es.client.SetTransport(gock.DefaultTransport)
  43. return r
  44. }
  45. func Test_AssReg(t *testing.T) {
  46. var (
  47. c = context.TODO()
  48. err error
  49. AID = int64(10110788)
  50. ip = "127.0.0.1"
  51. ass *archive.PayAsset
  52. registed bool
  53. )
  54. convey.Convey("AssReg", t, func(ctx convey.C) {
  55. defer gock.OffAll()
  56. httpMock("GET", d.assURI).Reply(200).JSON(`{"code":20061}`)
  57. ass, registed, err = d.Ass(c, AID, ip)
  58. ctx.Convey("Then err should be nil.au should not be nil.", func(ctx convey.C) {
  59. ctx.So(err, convey.ShouldNotBeNil)
  60. ctx.So(ass, convey.ShouldBeNil)
  61. ctx.So(registed, convey.ShouldBeFalse)
  62. })
  63. })
  64. }
  65. func Test_UserAcceptProtocol(t *testing.T) {
  66. var (
  67. c = context.TODO()
  68. err error
  69. mid = int64(2089809)
  70. protocolID = "iamhashstringforp"
  71. accept bool
  72. )
  73. convey.Convey("UserAcceptProtocol", t, func(ctx convey.C) {
  74. defer gock.OffAll()
  75. httpMock("GET", `http://uat-manager.bilibili.co/x/admin/search/query?business=log_user_action&query={"fields":["protocol_id"],"from":"log_user_action_83_all","order_score_first":true,"order_random_seed":"","highlight":false,"pn":1,"ps":2000,"order":[{"ctime":"desc"}],"where":{"eq":{"mid":2089809,"protocol_id":"iamhashstringforp"}}}`).
  76. Reply(200).
  77. JSON(`{"code":0,"message":"0","ttl":1,"data":{"order":"ctime","sort":"desc","result":[],"debug":null,"page":{"num":1,"size":2000,"total":0}}}`)
  78. accept, err = d.UserAcceptProtocol(c, protocolID, mid)
  79. ctx.Convey("Then err should be nil.au should not be nil.", func(ctx convey.C) {
  80. ctx.So(err, convey.ShouldBeNil)
  81. ctx.So(accept, convey.ShouldBeFalse)
  82. })
  83. })
  84. }