sports_test.go 655 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package sports
  2. import (
  3. "context"
  4. "flag"
  5. "net/url"
  6. "path/filepath"
  7. "testing"
  8. "go-common/app/interface/main/activity/conf"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var d *Dao
  12. func WithDao(f func(d *Dao)) func() {
  13. return func() {
  14. dir, _ := filepath.Abs("../cmd/activity-test.toml")
  15. flag.Set("conf", dir)
  16. conf.Init()
  17. if d == nil {
  18. d = New(conf.Conf)
  19. }
  20. f(d)
  21. }
  22. }
  23. func TestDao_Qq(t *testing.T) {
  24. Convey("test dao Qq", t, WithDao(func(d *Dao) {
  25. var (
  26. params url.Values
  27. route = "matchUnion/fetchData"
  28. )
  29. res, err := d.Qq(context.Background(), params, route)
  30. So(err, ShouldBeNil)
  31. So(res, ShouldNotBeNil)
  32. }))
  33. }