service_test.go 525 B

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