sports_test.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package sports
  2. import (
  3. "context"
  4. "flag"
  5. "net/url"
  6. "path/filepath"
  7. "testing"
  8. "time"
  9. "go-common/app/interface/main/activity/conf"
  10. "go-common/app/interface/main/activity/model/sports"
  11. . "github.com/smartystreets/goconvey/convey"
  12. )
  13. var svf *Service
  14. func init() {
  15. dir, _ := filepath.Abs("../../cmd/activity-test.toml")
  16. flag.Set("conf", dir)
  17. if err := conf.Init(); err != nil {
  18. panic(err)
  19. }
  20. if svf == nil {
  21. svf = New(conf.Conf)
  22. }
  23. time.Sleep(time.Second)
  24. }
  25. func WithService(f func(s *Service)) func() {
  26. return func() {
  27. f(svf)
  28. }
  29. }
  30. func TestService_Qq(t *testing.T) {
  31. Convey("test service qq", t, WithService(func(svf *Service) {
  32. var (
  33. params url.Values
  34. )
  35. res, err := svf.Qq(context.Background(), params, &sports.ParamQq{Tp: 1})
  36. So(err, ShouldBeNil)
  37. So(res, ShouldNotBeEmpty)
  38. }))
  39. }
  40. func TestService_News(t *testing.T) {
  41. Convey("test service qq news", t, WithService(func(svf *Service) {
  42. var (
  43. params url.Values
  44. )
  45. res, err := svf.News(context.Background(), params, &sports.ParamNews{Route: "getQQNewsIndexAndItemsVerify"})
  46. So(err, ShouldBeNil)
  47. So(res, ShouldNotBeEmpty)
  48. }))
  49. }