service_test.go 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package ad
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/creative/conf"
  6. gM "go-common/app/interface/main/creative/model/game"
  7. "path/filepath"
  8. "testing"
  9. "time"
  10. . "github.com/smartystreets/goconvey/convey"
  11. "go-common/app/interface/main/creative/service"
  12. )
  13. var (
  14. s *Service
  15. )
  16. func init() {
  17. dir, _ := filepath.Abs("../../cmd/creative.toml")
  18. flag.Set("conf", dir)
  19. conf.Init()
  20. rpcdaos := service.NewRPCDaos(conf.Conf)
  21. s = New(conf.Conf, rpcdaos)
  22. time.Sleep(time.Second)
  23. }
  24. func WithService(f func(s *Service)) func() {
  25. return func() {
  26. Reset(func() {})
  27. f(s)
  28. }
  29. }
  30. func Test_GameList(t *testing.T) {
  31. var (
  32. c = context.TODO()
  33. err error
  34. localHost = "127.0.0.1"
  35. glist *gM.ListWithPager
  36. )
  37. Convey("GameList", t, WithService(func(s *Service) {
  38. glist, err = s.GameList(c, "", "", 1, 20, localHost)
  39. So(err, ShouldBeNil)
  40. So(glist, ShouldNotBeNil)
  41. So(glist.Pn, ShouldEqual, 1)
  42. So(glist.Ps, ShouldEqual, 20)
  43. So(glist.List[0].GameBaseID, ShouldBeGreaterThanOrEqualTo, glist.List[1].GameBaseID)
  44. }))
  45. }