service_test.go 709 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package service
  2. import (
  3. "context"
  4. "flag"
  5. "path/filepath"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/reply/conf"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. testSvr *Service
  13. )
  14. func init() {
  15. dir, _ := filepath.Abs("../cmd/reply-test.toml")
  16. flag.Set("conf", dir)
  17. conf.Init()
  18. testSvr = New(conf.Conf)
  19. time.Sleep(time.Second)
  20. }
  21. func CleanCache() {
  22. //c := context.Background()
  23. //pool := redis.NewPool(conf.Conf.Redis.Config)
  24. //pool.Get(c).Do("FLUSHDB")
  25. }
  26. func WithService(f func(s *Service)) func() {
  27. return func() {
  28. Reset(func() { CleanCache() })
  29. f(testSvr)
  30. }
  31. }
  32. func TestFetchFans(t *testing.T) {
  33. s := &Service{}
  34. s.FetchFans(context.Background(), []int64{1, 2}, 11)
  35. }