service_test.go 842 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package resource
  2. import (
  3. "context"
  4. "flag"
  5. "path/filepath"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/creative/conf"
  9. "go-common/app/interface/main/creative/service"
  10. "go-common/library/ecode"
  11. . "github.com/smartystreets/goconvey/convey"
  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_Resource(t *testing.T) {
  31. Convey("Resource", t, WithService(func(s *Service) {
  32. res, err := s.AcademyBanner(context.TODO(), "", "", "", "", "", "", 1, 2, int8(2), int64(123), false)
  33. So(err, ShouldEqual, ecode.NothingFound)
  34. So(res, ShouldNotBeEmpty)
  35. }))
  36. }