special_award_test.go 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoPastAwards(t *testing.T) {
  8. convey.Convey("PastAwards", t, func(convCtx convey.C) {
  9. var (
  10. c = context.Background()
  11. )
  12. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  13. Exec(c, "INSERT INTO special_award(award_id,award_name,open_status) VALUES(666,'test','2') ON DUPLICATE KEY UPDATE award_id=VALUES(award_id)")
  14. as, err := d.PastAwards(c)
  15. convCtx.Convey("Then err should be nil.as should not be nil.", func(convCtx convey.C) {
  16. convCtx.So(err, convey.ShouldBeNil)
  17. convCtx.So(as, convey.ShouldNotBeNil)
  18. })
  19. })
  20. })
  21. }
  22. func TestDaoJoinedSpecialAwards(t *testing.T) {
  23. convey.Convey("JoinedSpecialAwards", t, func(convCtx convey.C) {
  24. var (
  25. c = context.Background()
  26. awardIDs = []int64{666}
  27. )
  28. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  29. Exec(c, "INSERT INTO special_award(award_id,award_name,open_status) VALUES(666,'test','2') ON DUPLICATE KEY UPDATE award_id=VALUES(award_id)")
  30. sas, err := d.JoinedSpecialAwards(c, awardIDs)
  31. convCtx.Convey("Then err should be nil.sas should not be nil.", func(convCtx convey.C) {
  32. convCtx.So(err, convey.ShouldBeNil)
  33. convCtx.So(sas, convey.ShouldNotBeNil)
  34. })
  35. })
  36. })
  37. }
  38. func TestDaoGetAwardSchedule(t *testing.T) {
  39. convey.Convey("GetAwardSchedule", t, func(convCtx convey.C) {
  40. var (
  41. c = context.Background()
  42. awardID = int64(0)
  43. )
  44. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  45. Exec(c, "INSERT INTO special_award(award_id,award_name,open_status) VALUES(666,'test','2') ON DUPLICATE KEY UPDATE award_id=VALUES(award_id)")
  46. award, err := d.GetAwardSchedule(c, awardID)
  47. convCtx.Convey("Then err should be nil.award should not be nil.", func(convCtx convey.C) {
  48. convCtx.So(err, convey.ShouldBeNil)
  49. convCtx.So(award, convey.ShouldNotBeNil)
  50. })
  51. })
  52. })
  53. }
  54. func TestDaoGetResources(t *testing.T) {
  55. convey.Convey("GetResources", t, func(convCtx convey.C) {
  56. var (
  57. c = context.Background()
  58. awardID = int64(0)
  59. )
  60. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  61. Exec(c, "INSERT INTO special_award_resource(award_id,resource_type,content,resource_index) VALUES(666,1,'test',1) ON DUPLICATE KEY UPDATE award_id=VALUES(award_id)")
  62. res, err := d.GetResources(c, awardID)
  63. convCtx.Convey("Then err should be nil.res should not be nil.", func(convCtx convey.C) {
  64. convCtx.So(err, convey.ShouldBeNil)
  65. convCtx.So(res, convey.ShouldNotBeNil)
  66. })
  67. })
  68. })
  69. }
  70. func TestDaoGetWinners(t *testing.T) {
  71. convey.Convey("GetWinners", t, func(convCtx convey.C) {
  72. var (
  73. c = context.Background()
  74. awardID = int64(0)
  75. )
  76. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  77. Exec(c, "INSERT INTO special_award_winner(award_id,mid,division_name) VALUES(666,2,'test') ON DUPLICATE KEY UPDATE award_id=VALUES(award_id)")
  78. mids, err := d.GetWinners(c, awardID)
  79. convCtx.Convey("Then err should be nil.mids should not be nil.", func(convCtx convey.C) {
  80. convCtx.So(err, convey.ShouldBeNil)
  81. convCtx.So(mids, convey.ShouldNotBeNil)
  82. })
  83. })
  84. })
  85. }
  86. func TestDaoAwardIDsByWinner(t *testing.T) {
  87. convey.Convey("AwardIDsByWinner", t, func(convCtx convey.C) {
  88. var (
  89. c = context.Background()
  90. mid = int64(2)
  91. )
  92. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  93. am, err := d.AwardIDsByWinner(c, mid)
  94. convCtx.Convey("Then err should be nil.am should not be nil.", func(convCtx convey.C) {
  95. convCtx.So(err, convey.ShouldBeNil)
  96. convCtx.So(am, convey.ShouldNotBeNil)
  97. })
  98. })
  99. })
  100. }
  101. func TestDaoDivisionName(t *testing.T) {
  102. convey.Convey("DivisionName", t, func(convCtx convey.C) {
  103. var (
  104. c = context.Background()
  105. mid = int64(2)
  106. )
  107. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  108. names, err := d.DivisionName(c, mid)
  109. convCtx.Convey("Then err should be nil.names should not be nil.", func(convCtx convey.C) {
  110. convCtx.So(err, convey.ShouldBeNil)
  111. convCtx.So(names, convey.ShouldNotBeNil)
  112. })
  113. })
  114. })
  115. }
  116. func TestDaoJoinedCount(t *testing.T) {
  117. convey.Convey("JoinedCount", t, func(convCtx convey.C) {
  118. var (
  119. c = context.Background()
  120. mid = int64(2)
  121. awardID = int64(666)
  122. )
  123. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  124. Exec(c, "INSERT INTO special_award_record(award_id,mid) VALUES(666,2) ON DUPLICATE KEY UPDATE award_id=VALUES(award_id)")
  125. count, err := d.JoinedCount(c, mid, awardID)
  126. convCtx.Convey("Then err should be nil.count should not be nil.", func(convCtx convey.C) {
  127. convCtx.So(err, convey.ShouldBeNil)
  128. convCtx.So(count, convey.ShouldNotBeNil)
  129. })
  130. })
  131. })
  132. }
  133. func TestDaoAwardBonus(t *testing.T) {
  134. convey.Convey("AwardBonus", t, func(convCtx convey.C) {
  135. var (
  136. c = context.Background()
  137. awardID = int64(66)
  138. prizeID = int64(2)
  139. )
  140. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  141. Exec(c, "INSERT INTO special_award_prize(award_id,prize_id, bonus) VALUES(66,2,100) ON DUPLICATE KEY UPDATE award_id=VALUES(award_id)")
  142. bonus, err := d.AwardBonus(c, awardID, prizeID)
  143. convCtx.Convey("Then err should be nil.bonus should not be nil.", func(convCtx convey.C) {
  144. convCtx.So(err, convey.ShouldBeNil)
  145. convCtx.So(bonus, convey.ShouldNotBeNil)
  146. })
  147. })
  148. })
  149. }
  150. func TestDaoAddToAwardRecord(t *testing.T) {
  151. convey.Convey("AddToAwardRecord", t, func(convCtx convey.C) {
  152. var (
  153. c = context.Background()
  154. mid = int64(2)
  155. awardID = int64(666)
  156. )
  157. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  158. Exec(c, "DELETE FROM special_award_record WHERE mid=2")
  159. rows, err := d.AddToAwardRecord(c, mid, awardID)
  160. convCtx.Convey("Then err should be nil.rows should not be nil.", func(convCtx convey.C) {
  161. convCtx.So(err, convey.ShouldBeNil)
  162. convCtx.So(rows, convey.ShouldNotBeNil)
  163. })
  164. })
  165. })
  166. }
  167. func TestDaoGetSpecialAwards(t *testing.T) {
  168. convey.Convey("GetSpecialAwards", t, func(convCtx convey.C) {
  169. var (
  170. c = context.Background()
  171. )
  172. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  173. awards, err := d.GetSpecialAwards(c)
  174. convCtx.Convey("Then err should be nil.awards should not be nil.", func(convCtx convey.C) {
  175. convCtx.So(err, convey.ShouldBeNil)
  176. convCtx.So(awards, convey.ShouldNotBeNil)
  177. })
  178. })
  179. })
  180. }
  181. func TestDaoGetSpecialAwardDivision(t *testing.T) {
  182. convey.Convey("GetSpecialAwardDivision", t, func(convCtx convey.C) {
  183. var (
  184. c = context.Background()
  185. awardID = int64(0)
  186. )
  187. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  188. Exec(c, "INSERT INTO special_award_division(award_id,division_name) VALUES(666,'test') ON DUPLICATE KEY UPDATE award_id=VALUES(award_id)")
  189. divisions, err := d.GetSpecialAwardDivision(c, awardID)
  190. convCtx.Convey("Then err should be nil.divisions should not be nil.", func(convCtx convey.C) {
  191. convCtx.So(err, convey.ShouldBeNil)
  192. convCtx.So(divisions, convey.ShouldNotBeNil)
  193. })
  194. })
  195. })
  196. }
  197. func TestDaoGetAwardWinRecord(t *testing.T) {
  198. convey.Convey("GetAwardWinRecord", t, func(convCtx convey.C) {
  199. var (
  200. c = context.Background()
  201. mid = int64(2)
  202. )
  203. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  204. awardIDs, err := d.GetAwardWinRecord(c, mid)
  205. convCtx.Convey("Then err should be nil.awardIDs should not be nil.", func(convCtx convey.C) {
  206. convCtx.So(err, convey.ShouldBeNil)
  207. convCtx.So(awardIDs, convey.ShouldNotBeNil)
  208. })
  209. })
  210. })
  211. }
  212. func TestDaoGetAwardJoinRecord(t *testing.T) {
  213. convey.Convey("GetAwardJoinRecord", t, func(convCtx convey.C) {
  214. var (
  215. c = context.Background()
  216. mid = int64(2)
  217. )
  218. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  219. awardIDs, err := d.GetAwardJoinRecord(c, mid)
  220. convCtx.Convey("Then err should be nil.awardIDs should not be nil.", func(convCtx convey.C) {
  221. convCtx.So(err, convey.ShouldBeNil)
  222. convCtx.So(awardIDs, convey.ShouldNotBeNil)
  223. })
  224. })
  225. })
  226. }