article_test.go 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. package article
  2. import (
  3. "context"
  4. artMdl "go-common/app/interface/main/creative/model/article"
  5. "testing"
  6. "go-common/app/interface/openplatform/article/model"
  7. "go-common/app/interface/openplatform/article/rpc/client"
  8. "go-common/library/ecode"
  9. "reflect"
  10. "github.com/bouk/monkey"
  11. "github.com/smartystreets/goconvey/convey"
  12. )
  13. func TestArticleArticles(t *testing.T) {
  14. var (
  15. c = context.TODO()
  16. mid = int64(1)
  17. pn = int(0)
  18. ps = int(0)
  19. sort = int(0)
  20. group = int(0)
  21. category = int(0)
  22. ip = ""
  23. )
  24. convey.Convey("Articles", t, func(ctx convey.C) {
  25. // mock
  26. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "CreationUpperArticles",
  27. func(_ *client.Service, _ context.Context, _ *model.ArgCreationArts) (res *model.CreationArts, err error) {
  28. return nil, ecode.CreativeArticleRPCErr
  29. })
  30. defer mock.Unpatch()
  31. res, err := d.Articles(c, mid, pn, ps, sort, group, category, ip)
  32. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  33. ctx.So(err, convey.ShouldNotBeNil)
  34. ctx.So(res, convey.ShouldBeNil)
  35. })
  36. })
  37. }
  38. func TestArticleCategories(t *testing.T) {
  39. var (
  40. c = context.TODO()
  41. ip = ""
  42. )
  43. convey.Convey("Categories", t, func(ctx convey.C) {
  44. // mock
  45. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "Categories",
  46. func(_ *client.Service, _ context.Context, _ *model.ArgIP) (res *model.Categories, err error) {
  47. return nil, ecode.CreativeArticleRPCErr
  48. })
  49. defer mock.Unpatch()
  50. res, err := d.Categories(c, ip)
  51. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  52. ctx.So(err, convey.ShouldNotBeNil)
  53. ctx.So(res, convey.ShouldBeNil)
  54. })
  55. })
  56. }
  57. func TestArticleCategoriesMap(t *testing.T) {
  58. var (
  59. c = context.TODO()
  60. ip = ""
  61. )
  62. convey.Convey("CategoriesMap", t, func(ctx convey.C) {
  63. // mock
  64. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "CategoriesMap",
  65. func(_ *client.Service, _ context.Context, _ *model.ArgIP) (res map[int64]*model.Category, err error) {
  66. return nil, ecode.CreativeArticleRPCErr
  67. })
  68. defer mock.Unpatch()
  69. res, err := d.CategoriesMap(c, ip)
  70. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  71. ctx.So(err, convey.ShouldEqual, 20017)
  72. ctx.So(len(res), convey.ShouldEqual, 0)
  73. })
  74. })
  75. }
  76. func TestArticleArticle(t *testing.T) {
  77. var (
  78. c = context.TODO()
  79. aid = int64(1198)
  80. mid = int64(0)
  81. ip = ""
  82. )
  83. convey.Convey("Article", t, func(ctx convey.C) {
  84. // mock
  85. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "CreationArticle",
  86. func(_ *client.Service, _ context.Context, _ *model.ArgAidMid) (res *model.Article, err error) {
  87. return nil, ecode.CreativeArticleRPCErr
  88. })
  89. defer mock.Unpatch()
  90. res, err := d.Article(c, aid, mid, ip)
  91. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  92. ctx.So(err, convey.ShouldNotBeNil)
  93. ctx.So(res, convey.ShouldBeNil)
  94. })
  95. })
  96. }
  97. func TestArticleAddArticle(t *testing.T) {
  98. var (
  99. c = context.TODO()
  100. art = &artMdl.ArtParam{}
  101. )
  102. convey.Convey("AddArticle", t, func(ctx convey.C) {
  103. // mock
  104. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "AddArticle",
  105. func(_ *client.Service, _ context.Context, _ *model.ArgArticle) (id int64, err error) {
  106. return 0, ecode.CreativeArticleRPCErr
  107. })
  108. defer mock.Unpatch()
  109. id, err := d.AddArticle(c, art)
  110. ctx.Convey("Then err should be nil.id should not be nil.", func(ctx convey.C) {
  111. ctx.So(err, convey.ShouldNotBeNil)
  112. ctx.So(id, convey.ShouldEqual, 0)
  113. })
  114. })
  115. }
  116. func TestArticleUpdateArticle(t *testing.T) {
  117. var (
  118. c = context.TODO()
  119. art = &artMdl.ArtParam{}
  120. )
  121. convey.Convey("UpdateArticle", t, func(ctx convey.C) {
  122. // mock
  123. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "UpdateArticle",
  124. func(_ *client.Service, _ context.Context, _ *model.ArgArticle) (err error) {
  125. return ecode.CreativeArticleRPCErr
  126. })
  127. defer mock.Unpatch()
  128. err := d.UpdateArticle(c, art)
  129. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  130. ctx.So(err, convey.ShouldNotBeNil)
  131. })
  132. })
  133. }
  134. func TestArticleDelArticle(t *testing.T) {
  135. var (
  136. c = context.TODO()
  137. aid = int64(0)
  138. mid = int64(0)
  139. ip = ""
  140. )
  141. convey.Convey("DelArticle", t, func(ctx convey.C) {
  142. // mock
  143. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "DelArticle",
  144. func(_ *client.Service, _ context.Context, _ *model.ArgAidMid) (err error) {
  145. return ecode.CreativeArticleRPCErr
  146. })
  147. defer mock.Unpatch()
  148. err := d.DelArticle(c, aid, mid, ip)
  149. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  150. ctx.So(err, convey.ShouldNotBeNil)
  151. })
  152. })
  153. }
  154. func TestArticleWithDrawArticle(t *testing.T) {
  155. var (
  156. c = context.TODO()
  157. aid = int64(0)
  158. mid = int64(0)
  159. ip = ""
  160. )
  161. convey.Convey("WithDrawArticle", t, func(ctx convey.C) {
  162. err := d.WithDrawArticle(c, aid, mid, ip)
  163. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  164. ctx.So(err, convey.ShouldNotBeNil)
  165. })
  166. })
  167. }
  168. func TestArticleIsAuthor(t *testing.T) {
  169. var (
  170. c = context.TODO()
  171. mid = int64(0)
  172. ip = ""
  173. )
  174. convey.Convey("IsAuthor", t, func(ctx convey.C) {
  175. // mock
  176. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "IsAuthor",
  177. func(_ *client.Service, _ context.Context, _ *model.ArgMid) (res bool, err error) {
  178. return false, ecode.CreativeArticleRPCErr
  179. })
  180. defer mock.Unpatch()
  181. res, err := d.IsAuthor(c, mid, ip)
  182. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  183. ctx.So(err, convey.ShouldNotBeNil)
  184. ctx.So(res, convey.ShouldEqual, false)
  185. })
  186. })
  187. }
  188. func TestArticleRemainCount(t *testing.T) {
  189. var (
  190. c = context.TODO()
  191. mid = int64(0)
  192. ip = ""
  193. )
  194. convey.Convey("ArticleRemainCount", t, func(ctx convey.C) {
  195. // mock
  196. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "ArticleRemainCount",
  197. func(_ *client.Service, _ context.Context, _ *model.ArgMid) (res int, err error) {
  198. return 0, ecode.CreativeArticleRPCErr
  199. })
  200. defer mock.Unpatch()
  201. res, err := d.RemainCount(c, mid, ip)
  202. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  203. ctx.So(err, convey.ShouldNotBeNil)
  204. ctx.So(res, convey.ShouldEqual, 0)
  205. })
  206. })
  207. }
  208. func TestArticleArticleStat(t *testing.T) {
  209. var (
  210. c = context.TODO()
  211. mid = int64(2333)
  212. ip = ""
  213. )
  214. convey.Convey("ArticleStat", t, func(ctx convey.C) {
  215. // mock
  216. //mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "CreationUpStat",
  217. // func(_ *client.Service, _ context.Context, _ *model.ArgMid) (res model.UpStat, err error) {
  218. // return new(model.UpStat), ecode.CreativeArticleRPCErr
  219. // })
  220. //defer mock.Unpatch()
  221. res, err := d.ArticleStat(c, mid, ip)
  222. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  223. ctx.So(err, convey.ShouldNotBeNil)
  224. ctx.So(res, convey.ShouldNotBeNil)
  225. })
  226. })
  227. }
  228. func TestArticleThirtyDayArticle(t *testing.T) {
  229. var (
  230. c = context.TODO()
  231. mid = int64(0)
  232. ip = ""
  233. )
  234. convey.Convey("ThirtyDayArticle", t, func(ctx convey.C) {
  235. res, err := d.ThirtyDayArticle(c, mid, ip)
  236. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  237. ctx.So(err, convey.ShouldNotBeNil)
  238. ctx.So(res, convey.ShouldBeNil)
  239. })
  240. })
  241. }
  242. func TestArticleArticleMetas(t *testing.T) {
  243. var (
  244. c = context.TODO()
  245. aids = []int64{233}
  246. ip = ""
  247. )
  248. convey.Convey("ArticleMetas", t, func(ctx convey.C) {
  249. //mock
  250. mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "ArticleMetas",
  251. func(_ *client.Service, _ context.Context, _ *model.ArgAids) (res map[int64]*model.Meta, err error) {
  252. return nil, ecode.CreativeArticleRPCErr
  253. })
  254. defer mock.Unpatch()
  255. res, err := d.ArticleMetas(c, aids, ip)
  256. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  257. ctx.So(err, convey.ShouldNotBeNil)
  258. ctx.So(res, convey.ShouldBeNil)
  259. })
  260. })
  261. }