api_test.go 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package data
  2. import (
  3. "context"
  4. "go-common/library/ecode"
  5. bm "go-common/library/net/http/blademaster"
  6. "net/url"
  7. "reflect"
  8. "testing"
  9. "github.com/bouk/monkey"
  10. "github.com/smartystreets/goconvey/convey"
  11. gock "gopkg.in/h2non/gock.v1"
  12. )
  13. func TestDatastat(t *testing.T) {
  14. var (
  15. c = context.TODO()
  16. mid = int64(1)
  17. ip = ""
  18. )
  19. convey.Convey("stat1", t, func(ctx convey.C) {
  20. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.client), "RESTfulGet",
  21. func(_ *bm.Client, _ context.Context, _ string, _ string, _ url.Values, _ interface{}, _ ...interface{}) (err error) {
  22. return ecode.CreativeDataErr
  23. })
  24. defer mock.Unpatch()
  25. _, err := d.stat(c, mid, ip)
  26. ctx.Convey("Then err should be nil.st should not be nil.", func(ctx convey.C) {
  27. ctx.So(err, convey.ShouldNotBeNil)
  28. })
  29. })
  30. }
  31. func TestDataTagsWithChecked(t *testing.T) {
  32. var (
  33. c = context.TODO()
  34. mid = int64(1)
  35. tid = uint16(1)
  36. title = ""
  37. filename = ""
  38. desc = ""
  39. cover = ""
  40. tagFrom = int8(0)
  41. err error
  42. )
  43. convey.Convey("TagsWithChecked1", t, func(ctx convey.C) {
  44. defer gock.OffAll()
  45. httpMock("GET", d.tagV2URI).Reply(200).JSON(`{"code":20003}`)
  46. _, err = d.TagsWithChecked(c, mid, tid, title, filename, desc, cover, tagFrom)
  47. ctx.Convey("Then err should be nil.no should not be nil.", func(ctx convey.C) {
  48. ctx.So(err, convey.ShouldNotBeNil)
  49. })
  50. })
  51. convey.Convey("TagsWithChecked2", t, func(ctx convey.C) {
  52. defer gock.OffAll()
  53. httpMock("GET", d.tagV2URI).Reply(200).JSON(`{"code":0,"data":{"tags":[{"tag":"1","checked":1}]}}`)
  54. _, err = d.TagsWithChecked(c, mid, tid, title, filename, desc, cover, tagFrom)
  55. ctx.Convey("Then err should be nil.no should not be nil.", func(ctx convey.C) {
  56. ctx.So(err, convey.ShouldBeNil)
  57. })
  58. })
  59. }
  60. func TestDataRecommendCovers(t *testing.T) {
  61. var (
  62. c = context.TODO()
  63. mid = int64(0)
  64. fns = []string{}
  65. err error
  66. )
  67. convey.Convey("RecommendCovers1", t, func(ctx convey.C) {
  68. defer gock.OffAll()
  69. httpMock("GET", d.coverBFSURI).Reply(200).JSON(`{"code":20003}`)
  70. _, err = d.RecommendCovers(c, mid, fns)
  71. ctx.Convey("Then err should be nil.cvs should not be nil.", func(ctx convey.C) {
  72. ctx.So(err, convey.ShouldNotBeNil)
  73. })
  74. })
  75. convey.Convey("RecommendCovers2", t, func(ctx convey.C) {
  76. defer gock.OffAll()
  77. httpMock("GET", d.coverBFSURI).Reply(200).JSON(`{"code":0,"data":["bfs1"]}`)
  78. _, err = d.RecommendCovers(c, mid, fns)
  79. ctx.Convey("Then err should be nil.no should not be nil.", func(ctx convey.C) {
  80. ctx.So(err, convey.ShouldBeNil)
  81. })
  82. })
  83. }