mysql_test.go 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaologoURL(t *testing.T) {
  8. convey.Convey("logoURL", t, func(ctx convey.C) {
  9. var (
  10. uri = "/bfs/archive/ad22dba8f05bb7dee6889492d3bb544413ee42c1.jpg"
  11. )
  12. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  13. logo := logoURL(uri)
  14. ctx.Convey("Then logo should not be nil.", func(ctx convey.C) {
  15. ctx.So(logo, convey.ShouldNotBeNil)
  16. })
  17. })
  18. })
  19. }
  20. func TestDaoMatchs(t *testing.T) {
  21. convey.Convey("Matchs", t, func(ctx convey.C) {
  22. var (
  23. c = context.Background()
  24. )
  25. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  26. res, err := d.Matchs(c)
  27. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  28. ctx.So(err, convey.ShouldBeNil)
  29. ctx.So(res, convey.ShouldNotBeNil)
  30. })
  31. })
  32. })
  33. }
  34. func TestDaoGames(t *testing.T) {
  35. convey.Convey("Games", t, func(ctx convey.C) {
  36. var (
  37. c = context.Background()
  38. )
  39. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  40. res, err := d.Games(c)
  41. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  42. ctx.So(err, convey.ShouldBeNil)
  43. ctx.So(res, convey.ShouldNotBeNil)
  44. })
  45. })
  46. })
  47. }
  48. func TestDaoTeams(t *testing.T) {
  49. convey.Convey("Teams", t, func(ctx convey.C) {
  50. var (
  51. c = context.Background()
  52. )
  53. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  54. res, err := d.Teams(c)
  55. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  56. ctx.So(err, convey.ShouldBeNil)
  57. ctx.So(res, convey.ShouldNotBeNil)
  58. })
  59. })
  60. })
  61. }
  62. func TestDaoTags(t *testing.T) {
  63. convey.Convey("Tags", t, func(ctx convey.C) {
  64. var (
  65. c = context.Background()
  66. )
  67. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  68. res, err := d.Tags(c)
  69. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  70. ctx.So(err, convey.ShouldBeNil)
  71. ctx.So(res, convey.ShouldNotBeNil)
  72. })
  73. })
  74. })
  75. }
  76. func TestDaoYears(t *testing.T) {
  77. convey.Convey("Years", t, func(ctx convey.C) {
  78. var (
  79. c = context.Background()
  80. )
  81. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  82. res, err := d.Years(c)
  83. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  84. ctx.So(err, convey.ShouldBeNil)
  85. ctx.So(res, convey.ShouldNotBeNil)
  86. })
  87. })
  88. })
  89. }
  90. func TestDaoCalendar(t *testing.T) {
  91. convey.Convey("Calendar", t, func(ctx convey.C) {
  92. var (
  93. c = context.Background()
  94. stime = int64(0)
  95. etime = int64(0)
  96. )
  97. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  98. res, err := d.Calendar(c, stime, etime)
  99. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  100. ctx.So(err, convey.ShouldBeNil)
  101. ctx.So(res, convey.ShouldNotBeNil)
  102. })
  103. })
  104. })
  105. }
  106. func TestDaoSeason(t *testing.T) {
  107. convey.Convey("Season", t, func(ctx convey.C) {
  108. var (
  109. c = context.Background()
  110. )
  111. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  112. res, err := d.Season(c)
  113. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  114. ctx.So(err, convey.ShouldBeNil)
  115. ctx.So(res, convey.ShouldNotBeNil)
  116. })
  117. })
  118. })
  119. }
  120. func TestDaoModule(t *testing.T) {
  121. convey.Convey("Module", t, func(ctx convey.C) {
  122. var (
  123. c = context.Background()
  124. mmid = int64(69)
  125. )
  126. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  127. mod, err := d.Module(c, mmid)
  128. ctx.Convey("Then err should be nil.mod should not be nil.", func(ctx convey.C) {
  129. ctx.So(err, convey.ShouldBeNil)
  130. ctx.So(mod, convey.ShouldNotBeNil)
  131. })
  132. })
  133. })
  134. }
  135. func TestDaoModules(t *testing.T) {
  136. convey.Convey("Modules", t, func(ctx convey.C) {
  137. var (
  138. c = context.Background()
  139. aid = int64(1)
  140. )
  141. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  142. mods, err := d.Modules(c, aid)
  143. ctx.Convey("Then err should be nil.mods should not be nil.", func(ctx convey.C) {
  144. ctx.So(err, convey.ShouldBeNil)
  145. ctx.So(mods, convey.ShouldNotBeNil)
  146. })
  147. })
  148. })
  149. }
  150. func TestDaoTrees(t *testing.T) {
  151. convey.Convey("Trees", t, func(ctx convey.C) {
  152. var (
  153. c = context.Background()
  154. madID = int64(1)
  155. )
  156. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  157. mods, err := d.Trees(c, madID)
  158. ctx.Convey("Then err should be nil.mods should not be nil.", func(ctx convey.C) {
  159. ctx.So(err, convey.ShouldBeNil)
  160. ctx.So(mods, convey.ShouldNotBeNil)
  161. })
  162. })
  163. })
  164. }
  165. func TestDaoActive(t *testing.T) {
  166. convey.Convey("Active", t, func(ctx convey.C) {
  167. var (
  168. c = context.Background()
  169. aid = int64(1)
  170. )
  171. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  172. mod, err := d.Active(c, aid)
  173. ctx.Convey("Then err should be nil.mod should not be nil.", func(ctx convey.C) {
  174. ctx.So(err, convey.ShouldBeNil)
  175. ctx.So(mod, convey.ShouldNotBeNil)
  176. })
  177. })
  178. })
  179. }
  180. func TestDaoPActDetail(t *testing.T) {
  181. convey.Convey("PActDetail", t, func(ctx convey.C) {
  182. var (
  183. c = context.Background()
  184. id = int64(2)
  185. )
  186. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  187. _, err := d.PActDetail(c, id)
  188. ctx.Convey("Then err should be nil.mod should not be nil.", func(ctx convey.C) {
  189. ctx.So(err, convey.ShouldBeNil)
  190. })
  191. })
  192. })
  193. }
  194. func TestDaoActData(t *testing.T) {
  195. convey.Convey("ActDetail", t, func(ctx convey.C) {
  196. var (
  197. c = context.Background()
  198. aid = int64(1)
  199. )
  200. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  201. actData, err := d.ActDetail(c, aid)
  202. ctx.Convey("Then err should be nil.actData should not be nil.", func(ctx convey.C) {
  203. ctx.So(err, convey.ShouldBeNil)
  204. ctx.So(actData, convey.ShouldNotBeNil)
  205. })
  206. })
  207. })
  208. }
  209. func TestDaoAppSeason(t *testing.T) {
  210. convey.Convey("AppSeason", t, func(ctx convey.C) {
  211. var (
  212. c = context.Background()
  213. )
  214. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  215. res, err := d.AppSeason(c)
  216. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  217. ctx.So(err, convey.ShouldBeNil)
  218. ctx.So(res, convey.ShouldNotBeNil)
  219. })
  220. })
  221. })
  222. }
  223. func TestDaoSeasonAll(t *testing.T) {
  224. convey.Convey("SeasonAll", t, func(ctx convey.C) {
  225. var (
  226. c = context.Background()
  227. )
  228. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  229. res, err := d.SeasonAll(c)
  230. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  231. ctx.So(err, convey.ShouldBeNil)
  232. ctx.So(res, convey.ShouldNotBeNil)
  233. })
  234. })
  235. })
  236. }
  237. func TestDaoContest(t *testing.T) {
  238. convey.Convey("Contest", t, func(ctx convey.C) {
  239. var (
  240. c = context.Background()
  241. cid = int64(1)
  242. )
  243. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  244. res, err := d.Contest(c, cid)
  245. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  246. ctx.So(err, convey.ShouldBeNil)
  247. ctx.So(res, convey.ShouldNotBeNil)
  248. })
  249. })
  250. })
  251. }
  252. func TestDaoContestRecent(t *testing.T) {
  253. convey.Convey("ContestRecent", t, func(ctx convey.C) {
  254. var (
  255. c = context.Background()
  256. homeid = int64(1)
  257. awayid = int64(2)
  258. contestid = int64(1)
  259. ps = int64(2)
  260. )
  261. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  262. res, err := d.ContestRecent(c, homeid, awayid, contestid, ps)
  263. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  264. ctx.So(err, convey.ShouldBeNil)
  265. ctx.So(res, convey.ShouldNotBeNil)
  266. })
  267. })
  268. })
  269. }
  270. func TestDaoContestData(t *testing.T) {
  271. convey.Convey("ContestData", t, func(ctx convey.C) {
  272. var (
  273. c = context.Background()
  274. cid = int64(458)
  275. )
  276. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  277. res, err := d.ContestData(c, cid)
  278. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  279. ctx.So(err, convey.ShouldBeNil)
  280. ctx.So(res, convey.ShouldNotBeNil)
  281. })
  282. })
  283. })
  284. }
  285. func TestDaoRawEpSeasons(t *testing.T) {
  286. convey.Convey("RawEpSeasons", t, func(ctx convey.C) {
  287. var (
  288. c = context.Background()
  289. sids = []int64{1}
  290. )
  291. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  292. res, err := d.RawEpSeasons(c, sids)
  293. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  294. ctx.So(err, convey.ShouldBeNil)
  295. ctx.So(res, convey.ShouldNotBeNil)
  296. })
  297. })
  298. })
  299. }
  300. func TestDaoActTeams(t *testing.T) {
  301. convey.Convey("ActTeams", t, func(ctx convey.C) {
  302. var (
  303. c = context.Background()
  304. tids = []int64{1}
  305. )
  306. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  307. res, err := d.ActTeams(c, tids)
  308. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  309. ctx.So(err, convey.ShouldBeNil)
  310. ctx.So(res, convey.ShouldNotBeNil)
  311. })
  312. })
  313. })
  314. }
  315. func TestDaoKDetails(t *testing.T) {
  316. convey.Convey("KDetails", t, func(ctx convey.C) {
  317. var (
  318. c = context.Background()
  319. )
  320. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  321. res, err := d.KDetails(c)
  322. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  323. ctx.So(err, convey.ShouldBeNil)
  324. ctx.So(res, convey.ShouldNotBeNil)
  325. })
  326. })
  327. })
  328. }
  329. func TestDaoRawEpContests(t *testing.T) {
  330. convey.Convey("RawEpContests", t, func(ctx convey.C) {
  331. var (
  332. c = context.Background()
  333. cids = []int64{1, 2, 3, 4, 5, 6}
  334. )
  335. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  336. res, err := d.RawEpContests(c, cids)
  337. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  338. ctx.So(err, convey.ShouldBeNil)
  339. ctx.So(res, convey.ShouldNotBeNil)
  340. })
  341. })
  342. })
  343. }