public_test.go 628 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package service
  2. import (
  3. "context"
  4. "flag"
  5. "path/filepath"
  6. "time"
  7. "go-common/app/interface/main/creative/conf"
  8. "go-common/library/cache/redis"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. pvr *Public
  13. )
  14. func CleanCache() {
  15. c := context.TODO()
  16. pool := redis.NewPool(conf.Conf.Redis.Antispam.Config)
  17. pool.Get(c).Do("FLUSHDB")
  18. }
  19. func init() {
  20. dir, _ := filepath.Abs("../cmd/creative.toml")
  21. flag.Set("conf", dir)
  22. conf.Init()
  23. pvr = New(conf.Conf, NewRPCDaos(conf.Conf))
  24. time.Sleep(time.Second)
  25. }
  26. func WithService(f func(p *Public)) func() {
  27. return func() {
  28. Reset(func() { CleanCache() })
  29. f(pvr)
  30. }
  31. }