service_test.go 423 B

123456789101112131415161718192021222324252627282930
  1. package search
  2. import (
  3. "flag"
  4. "path/filepath"
  5. "time"
  6. "go-common/app/interface/main/tv/conf"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. var (
  10. srv *Service
  11. )
  12. func init() {
  13. dir, _ := filepath.Abs("../../cmd/tv-interface.toml")
  14. flag.Set("conf", dir)
  15. conf.Init()
  16. srv = New(conf.Conf)
  17. time.Sleep(time.Second)
  18. }
  19. func WithService(f func(s *Service)) func() {
  20. return func() {
  21. Reset(func() {})
  22. f(srv)
  23. }
  24. }