service_test.go 787 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package faq
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/creative/conf"
  6. faqMdl "go-common/app/interface/main/creative/model/faq"
  7. "path/filepath"
  8. "testing"
  9. "time"
  10. "go-common/app/interface/main/creative/service"
  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_Pre(t *testing.T) {
  31. var (
  32. c = context.TODO()
  33. res map[string]*faqMdl.Faq
  34. )
  35. Convey("Pre", t, WithService(func(s *Service) {
  36. res = s.Pre(c)
  37. So(res, ShouldNotBeNil)
  38. }))
  39. }