38 lines
605 B
Go
38 lines
605 B
Go
|
package service
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"flag"
|
||
|
"path/filepath"
|
||
|
"time"
|
||
|
|
||
|
"go-common/app/interface/main/history/conf"
|
||
|
"go-common/library/cache/redis"
|
||
|
|
||
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
s *Service
|
||
|
)
|
||
|
|
||
|
func CleanCache() {
|
||
|
c := context.TODO()
|
||
|
pool := redis.NewPool(conf.Conf.Redis.Config)
|
||
|
pool.Get(c).Do("FLUSHDB")
|
||
|
}
|
||
|
|
||
|
func WithService(f func(s *Service)) func() {
|
||
|
return func() {
|
||
|
Reset(func() { CleanCache() })
|
||
|
f(s)
|
||
|
}
|
||
|
}
|
||
|
func init() {
|
||
|
dir, _ := filepath.Abs("../cmd/history-interface-test.toml")
|
||
|
flag.Set("conf", dir)
|
||
|
conf.Init()
|
||
|
s = New(conf.Conf)
|
||
|
time.Sleep(time.Second)
|
||
|
}
|