answercheck_test.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestServiceProCheck(t *testing.T) {
  9. convey.Convey("ProCheck", t, func() {
  10. hid, err := s.ProCheck(context.Background(), 14771787, []int64{}, nil, "")
  11. convey.So(err, convey.ShouldBeNil)
  12. convey.So(hid, convey.ShouldNotBeNil)
  13. })
  14. }
  15. func TestServiceCheckBase(t *testing.T) {
  16. convey.Convey("CheckBase", t, func() {
  17. res, err := s.CheckBase(context.Background(), 14771787, []int64{}, nil, "")
  18. convey.So(err, convey.ShouldBeNil)
  19. convey.So(res, convey.ShouldNotBeNil)
  20. })
  21. }
  22. func TestServiceCaptcha(t *testing.T) {
  23. convey.Convey("Captcha", t, func() {
  24. res, err := s.Captcha(context.Background(), 14771787, "", 0)
  25. convey.So(err, convey.ShouldBeNil)
  26. convey.So(res, convey.ShouldNotBeNil)
  27. })
  28. }
  29. func TestServiceValidate(t *testing.T) {
  30. convey.Convey("Validate", t, func() {
  31. res, err := s.Validate(context.Background(), "", "", "", "", 0, 0, "", "", nil)
  32. convey.So(err, convey.ShouldBeNil)
  33. convey.So(res, convey.ShouldNotBeNil)
  34. })
  35. }
  36. func TestServicecheckQsIDs(t *testing.T) {
  37. convey.Convey("checkQsIDs", t, func() {
  38. ok, err := s.checkQsIDs(context.Background(), []int64{}, 0, []int64{}, 0)
  39. convey.So(err, convey.ShouldBeNil)
  40. convey.So(ok, convey.ShouldNotBeNil)
  41. })
  42. }
  43. func TestServicecheckAns(t *testing.T) {
  44. convey.Convey("checkAns", t, func() {
  45. errIds, rc, err := s.checkAns(context.Background(), 14771787, []int64{}, nil, "", 0)
  46. convey.So(err, convey.ShouldBeNil)
  47. convey.So(rc, convey.ShouldNotBeNil)
  48. convey.So(errIds, convey.ShouldNotBeNil)
  49. })
  50. }
  51. func TestServicebasePass(t *testing.T) {
  52. convey.Convey("basePass", t, func() {
  53. s.basePass(context.Background(), 0, nil, time.Now())
  54. })
  55. }
  56. func TestServicependant(t *testing.T) {
  57. convey.Convey("pendant", t, func() {
  58. err := s.pendant(context.Background(), nil, 0, "", nil)
  59. convey.So(err, convey.ShouldBeNil)
  60. })
  61. }
  62. func TestServicecheckAnswerBlock(t *testing.T) {
  63. convey.Convey("checkAnswerBlock", t, func() {
  64. block := s.checkAnswerBlock(context.Background(), 0)
  65. convey.So(block, convey.ShouldNotBeNil)
  66. })
  67. }
  68. func TestServicesendData(t *testing.T) {
  69. convey.Convey("sendData", t, func() {
  70. s.sendData(context.Background(), nil, nil, "")
  71. })
  72. }
  73. func TestServiceExtraCheck(t *testing.T) {
  74. convey.Convey("ExtraCheck", t, func() {
  75. err := s.ExtraCheck(context.Background(), 14771787, []int64{}, nil, "", "", "", "")
  76. convey.So(err, convey.ShouldBeNil)
  77. })
  78. }
  79. func TestServicecheckExtraPassAns(t *testing.T) {
  80. convey.Convey("checkExtraPassAns", t, func() {
  81. ret, qs, err := s.checkExtraPassAns(context.Background(), 14771787, []int64{}, nil, "", 0)
  82. convey.So(err, convey.ShouldBeNil)
  83. convey.So(qs, convey.ShouldNotBeNil)
  84. convey.So(ret, convey.ShouldNotBeNil)
  85. })
  86. }
  87. func TestServicesendExtraRetMsg(t *testing.T) {
  88. convey.Convey("sendExtraRetMsg", t, func() {
  89. rs, err := s.sendExtraRetMsg(context.Background(), 0, nil, []int64{}, nil, 0)
  90. convey.So(err, convey.ShouldBeNil)
  91. convey.So(rs, convey.ShouldNotBeNil)
  92. })
  93. }
  94. func TestServicePendantRec(t *testing.T) {
  95. convey.Convey("PendantRec", t, func() {
  96. err := s.PendantRec(context.Background(), nil)
  97. convey.So(err, convey.ShouldBeNil)
  98. })
  99. }