dao.cache_test.go 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. package like
  2. import (
  3. "context"
  4. "testing"
  5. "fmt"
  6. "go-common/app/interface/main/activity/model/like"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestLikeLike(t *testing.T) {
  10. convey.Convey("Like", t, func(ctx convey.C) {
  11. var (
  12. c = context.Background()
  13. id = int64(77)
  14. )
  15. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  16. res, err := d.Like(c, id)
  17. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  18. ctx.So(err, convey.ShouldBeNil)
  19. ctx.So(res, convey.ShouldNotBeNil)
  20. })
  21. })
  22. })
  23. }
  24. func TestLikeActSubject(t *testing.T) {
  25. convey.Convey("ActSubject", t, func(ctx convey.C) {
  26. var (
  27. c = context.Background()
  28. id = int64(10256)
  29. )
  30. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  31. res, err := d.ActSubject(c, id)
  32. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  33. ctx.So(err, convey.ShouldBeNil)
  34. ctx.So(res, convey.ShouldNotBeNil)
  35. })
  36. })
  37. })
  38. }
  39. func TestLikeLikeMissionBuff(t *testing.T) {
  40. convey.Convey("LikeMissionBuff", t, func(ctx convey.C) {
  41. var (
  42. c = context.Background()
  43. id = int64(10256)
  44. mid = int64(77)
  45. )
  46. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  47. res, err := d.LikeMissionBuff(c, id, mid)
  48. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  49. ctx.So(err, convey.ShouldBeNil)
  50. ctx.So(res, convey.ShouldNotBeNil)
  51. })
  52. })
  53. })
  54. }
  55. func TestLikeMissionGroupItems(t *testing.T) {
  56. convey.Convey("MissionGroupItems", t, func(ctx convey.C) {
  57. var (
  58. c = context.Background()
  59. keys = []int64{1, 2}
  60. )
  61. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  62. res, err := d.MissionGroupItems(c, keys)
  63. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  64. ctx.So(err, convey.ShouldBeNil)
  65. ctx.So(res, convey.ShouldNotBeNil)
  66. })
  67. })
  68. })
  69. }
  70. func TestLikeActMission(t *testing.T) {
  71. convey.Convey("ActMission", t, func(ctx convey.C) {
  72. var (
  73. c = context.Background()
  74. id = int64(10256)
  75. lid = int64(7)
  76. mid = int64(77)
  77. )
  78. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  79. res, err := d.ActMission(c, id, lid, mid)
  80. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  81. ctx.So(err, convey.ShouldBeNil)
  82. ctx.So(res, convey.ShouldNotBeNil)
  83. })
  84. })
  85. })
  86. }
  87. func TestLikeActLikeAchieves(t *testing.T) {
  88. convey.Convey("ActLikeAchieves", t, func(ctx convey.C) {
  89. var (
  90. c = context.Background()
  91. id = int64(1)
  92. )
  93. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  94. res, err := d.ActLikeAchieves(c, id)
  95. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  96. ctx.So(err, convey.ShouldBeNil)
  97. ctx.So(res, convey.ShouldNotBeNil)
  98. })
  99. })
  100. })
  101. }
  102. func TestLikeActMissionFriends(t *testing.T) {
  103. convey.Convey("ActMissionFriends", t, func(ctx convey.C) {
  104. var (
  105. c = context.Background()
  106. id = int64(10256)
  107. lid = int64(1)
  108. )
  109. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  110. res, err := d.ActMissionFriends(c, id, lid)
  111. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  112. ctx.So(err, convey.ShouldBeNil)
  113. ctx.So(res, convey.ShouldNotBeNil)
  114. })
  115. })
  116. })
  117. }
  118. func TestLikeActUserAchieve(t *testing.T) {
  119. convey.Convey("ActUserAchieve", t, func(ctx convey.C) {
  120. var (
  121. c = context.Background()
  122. id = int64(1)
  123. )
  124. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  125. res, err := d.ActUserAchieve(c, id)
  126. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  127. ctx.So(err, convey.ShouldBeNil)
  128. ctx.So(res, convey.ShouldNotBeNil)
  129. })
  130. })
  131. })
  132. }
  133. func TestLikeMatchSubjects(t *testing.T) {
  134. convey.Convey("MatchSubjects", t, func(ctx convey.C) {
  135. var (
  136. c = context.Background()
  137. keys = []int64{10256}
  138. )
  139. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  140. res, err := d.MatchSubjects(c, keys)
  141. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  142. ctx.So(err, convey.ShouldBeNil)
  143. ctx.So(res, convey.ShouldNotBeNil)
  144. })
  145. })
  146. })
  147. }
  148. func TestLikeLikeContent(t *testing.T) {
  149. convey.Convey("LikeContent", t, func(ctx convey.C) {
  150. var (
  151. c = context.Background()
  152. keys = []int64{1, 2}
  153. )
  154. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  155. res, err := d.LikeContent(c, keys)
  156. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  157. ctx.So(err, convey.ShouldBeNil)
  158. ctx.So(res, convey.ShouldNotBeNil)
  159. })
  160. })
  161. })
  162. }
  163. func TestActSubjectProtocol(t *testing.T) {
  164. convey.Convey("LikeContent", t, func(ctx convey.C) {
  165. var (
  166. c = context.Background()
  167. sid = int64(10298)
  168. )
  169. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  170. res, err := d.ActSubjectProtocol(c, sid)
  171. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  172. ctx.So(err, convey.ShouldBeNil)
  173. fmt.Printf("%+v", res)
  174. })
  175. })
  176. })
  177. }
  178. func TestCacheActSubjectProtocol(t *testing.T) {
  179. convey.Convey("LikeContent", t, func(ctx convey.C) {
  180. var (
  181. c = context.Background()
  182. sid = int64(10298)
  183. )
  184. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  185. res, err := d.CacheActSubjectProtocol(c, sid)
  186. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  187. ctx.So(err, convey.ShouldBeNil)
  188. fmt.Printf("%+v", res)
  189. })
  190. })
  191. })
  192. }
  193. func TestAddCacheActSubjectProtocol(t *testing.T) {
  194. convey.Convey("LikeContent", t, func(ctx convey.C) {
  195. var (
  196. c = context.Background()
  197. sid = int64(10256)
  198. protocol = &like.ActSubjectProtocol{ID: 1, Sid: 10256}
  199. )
  200. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  201. err := d.AddCacheActSubjectProtocol(c, sid, protocol)
  202. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  203. ctx.So(err, convey.ShouldBeNil)
  204. })
  205. })
  206. })
  207. }