jury_test.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestDaoJuryApply(t *testing.T) {
  9. convey.Convey("JuryApply", t, func(convCtx convey.C) {
  10. var (
  11. c = context.Background()
  12. mid = int64(0)
  13. expired = time.Now()
  14. )
  15. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  16. err := d.JuryApply(c, mid, expired)
  17. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  18. convCtx.So(err, convey.ShouldBeNil)
  19. })
  20. })
  21. })
  22. }
  23. func TestDaoAddUserVoteTotal(t *testing.T) {
  24. convey.Convey("AddUserVoteTotal", t, func(convCtx convey.C) {
  25. var (
  26. c = context.Background()
  27. mid = int64(0)
  28. )
  29. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  30. err := d.AddUserVoteTotal(c, mid)
  31. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  32. convCtx.So(err, convey.ShouldBeNil)
  33. })
  34. })
  35. })
  36. }
  37. func TestDaoJuryInfo(t *testing.T) {
  38. convey.Convey("JuryInfo", t, func(convCtx convey.C) {
  39. var (
  40. c = context.Background()
  41. mid = int64(0)
  42. )
  43. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  44. r, err := d.JuryInfo(c, mid)
  45. convCtx.Convey("Then err should be nil.r should not be nil.", func(convCtx convey.C) {
  46. convCtx.So(err, convey.ShouldBeNil)
  47. convCtx.So(r, convey.ShouldNotBeNil)
  48. })
  49. })
  50. })
  51. }
  52. func TestDaoJuryInfos(t *testing.T) {
  53. convey.Convey("JuryInfos", t, func(convCtx convey.C) {
  54. var (
  55. c = context.Background()
  56. mids = []int64{111, 88889017}
  57. )
  58. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  59. mbj, err := d.JuryInfos(c, mids)
  60. convCtx.Convey("Then err should be nil.mbj should not be nil.", func(convCtx convey.C) {
  61. convCtx.So(err, convey.ShouldBeNil)
  62. convCtx.So(mbj, convey.ShouldNotBeNil)
  63. })
  64. })
  65. })
  66. }