http_test.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. gock "gopkg.in/h2non/gock.v1"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. // TestReplysCount .
  9. func TestSendSysMsg(t *testing.T) {
  10. convey.Convey("return someting", t, func(convCtx convey.C) {
  11. defer gock.OffAll()
  12. httpMock("POST", d.sendMsgURL).Reply(200).JSON(`{"code": 0}`)
  13. err := d.SendSysMsg(context.Background(), 1, "test", "test")
  14. convCtx.So(err, convey.ShouldBeNil)
  15. })
  16. }
  17. func TestGetQS(t *testing.T) {
  18. convey.Convey("return someting", t, func(convCtx convey.C) {
  19. defer gock.OffAll()
  20. httpMock("GET", d.getQSURL).Reply(200).JSON(`{"code": 0,"data":{}}`)
  21. res, err := d.GetQS(context.Background(), 1)
  22. convCtx.So(err, convey.ShouldBeNil)
  23. convCtx.So(res, convey.ShouldNotBeNil)
  24. })
  25. }
  26. func TestReplysCount(t *testing.T) {
  27. convey.Convey("return someting", t, func(convCtx convey.C) {
  28. res, err := d.ReplysCount(context.Background(), []int64{2, 3, 4})
  29. convCtx.So(err, convey.ShouldBeNil)
  30. convCtx.So(res, convey.ShouldNotBeNil)
  31. })
  32. }
  33. func TestSendMedal(t *testing.T) {
  34. convey.Convey("return someting", t, func(convCtx convey.C) {
  35. defer gock.OffAll()
  36. httpMock("POST", d.sendMedalURL).Reply(200).JSON(`{"code": 0}`)
  37. err := d.SendMedal(context.Background(), 1, 1)
  38. convCtx.So(err, convey.ShouldBeNil)
  39. })
  40. }