dao_test.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. package bfs
  2. import (
  3. "context"
  4. "flag"
  5. "github.com/bouk/monkey"
  6. "github.com/smartystreets/goconvey/convey"
  7. "go-common/app/interface/main/creative/conf"
  8. "gopkg.in/h2non/gock.v1"
  9. "io/ioutil"
  10. "net"
  11. "os"
  12. "strings"
  13. "testing"
  14. )
  15. var (
  16. d *Dao
  17. defaultImg = "https://avatars3.githubusercontent.com/u/12002442"
  18. )
  19. func TestMain(m *testing.M) {
  20. if os.Getenv("DEPLOY_ENV") != "" {
  21. flag.Set("app_id", "main.archive.creative")
  22. flag.Set("conf_token", "96b6a6c10bb311e894c14a552f48fef8")
  23. flag.Set("tree_id", "2305")
  24. flag.Set("conf_version", "docker-1")
  25. flag.Set("deploy_env", "uat")
  26. flag.Set("conf_host", "config.bilibili.co")
  27. flag.Set("conf_path", "/tmp")
  28. flag.Set("region", "sh")
  29. flag.Set("zone", "sh001")
  30. } else {
  31. flag.Set("conf", "../../cmd/creative.toml")
  32. }
  33. flag.Parse()
  34. if err := conf.Init(); err != nil {
  35. panic(err)
  36. }
  37. d = New(conf.Conf)
  38. m.Run()
  39. os.Exit(0)
  40. }
  41. func httpMock(method, url string) *gock.Request {
  42. r := gock.New(url)
  43. r.Method = strings.ToUpper(method)
  44. d.client.Transport = gock.DefaultTransport
  45. return r
  46. }
  47. func TestBfsUpload(t *testing.T) {
  48. convey.Convey("Upload", t, func(ctx convey.C) {
  49. var (
  50. c = context.Background()
  51. fileType = ""
  52. bs = []byte("")
  53. )
  54. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  55. httpMock(d.c.BFS.Method, d.c.BFS.URL).Reply(200).SetHeaders(mockHeader).JSON("mockByte")
  56. location, err := d.Upload(c, fileType, bs)
  57. ctx.Convey("Then err should be nil.location should not be nil.", func(ctx convey.C) {
  58. ctx.So(err, convey.ShouldBeNil)
  59. ctx.So(location, convey.ShouldNotBeNil)
  60. })
  61. })
  62. })
  63. }
  64. func TestBfsUploadByFile(t *testing.T) {
  65. convey.Convey("UploadByFile", t, func(ctx convey.C) {
  66. var (
  67. c = context.Background()
  68. imgpath = defaultImg
  69. )
  70. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  71. monkey.Patch(ioutil.ReadFile, func(_ string) ([]byte, error) {
  72. return []byte{}, nil
  73. })
  74. httpMock(_method, _url).Reply(200).SetHeaders(mockHeader)
  75. location, err := d.UploadByFile(c, imgpath)
  76. ctx.Convey("Then err should be nil.location should not be nil.", func(ctx convey.C) {
  77. ctx.So(err, convey.ShouldBeNil)
  78. ctx.So(location, convey.ShouldNotBeNil)
  79. })
  80. })
  81. })
  82. }
  83. func TestBfsCapture(t *testing.T) {
  84. convey.Convey("Capture", t, func(ctx convey.C) {
  85. var (
  86. c = context.Background()
  87. url = defaultImg
  88. )
  89. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  90. httpMock("GET", url).Reply(200).SetHeaders(mockHeader)
  91. loc, size, err := d.Capture(c, url)
  92. ctx.Convey("Then err should be nil.loc,size should not be nil.", func(ctx convey.C) {
  93. ctx.So(err, convey.ShouldBeNil)
  94. ctx.So(size, convey.ShouldNotBeNil)
  95. ctx.So(loc, convey.ShouldNotBeNil)
  96. })
  97. })
  98. })
  99. }
  100. func TestBfscheckURL(t *testing.T) {
  101. convey.Convey("checkURL", t, func(ctx convey.C) {
  102. var (
  103. url = defaultImg
  104. )
  105. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  106. err := checkURL(url)
  107. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  108. ctx.So(err, convey.ShouldBeNil)
  109. })
  110. })
  111. })
  112. }
  113. func TestBfsisPublicIP(t *testing.T) {
  114. convey.Convey("isPublicIP", t, func(ctx convey.C) {
  115. var IP = net.ParseIP("127.0.0.1")
  116. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  117. p1 := isPublicIP(IP)
  118. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  119. ctx.So(p1, convey.ShouldNotBeNil)
  120. })
  121. })
  122. })
  123. }