pointdata_test.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoLeida(t *testing.T) {
  8. convey.Convey("Leida", t, func(convCtx convey.C) {
  9. var (
  10. c = context.Background()
  11. url = "http://47.95.28.113/nesport/index.php/Api/lol/games?match_id=328266&key=d076eef519773c5954081e6a352c726d"
  12. )
  13. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  14. rs, err := d.Leida(c, url)
  15. convCtx.Convey("Then err should be nil.rs should not be nil.", func(convCtx convey.C) {
  16. convCtx.So(err, convey.ShouldBeNil)
  17. convCtx.So(rs, convey.ShouldNotBeNil)
  18. })
  19. })
  20. })
  21. }
  22. func TestDaoThirdGet(t *testing.T) {
  23. convey.Convey("ThirdGet", t, func(convCtx convey.C) {
  24. var (
  25. c = context.Background()
  26. url = "http://47.95.28.113/nesport/index.php/Api/lol/games?match_id=328266&key=d076eef519773c5954081e6a352c726d"
  27. )
  28. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  29. res, err := d.ThirdGet(c, url)
  30. convCtx.Convey("Then err should be nil.res should not be nil.", func(convCtx convey.C) {
  31. convCtx.So(err, convey.ShouldBeNil)
  32. convCtx.So(res, convey.ShouldNotBeNil)
  33. })
  34. })
  35. })
  36. }