service_test.go 798 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package music
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/creative/conf"
  6. "path/filepath"
  7. "testing"
  8. "time"
  9. "go-common/app/interface/main/creative/service"
  10. . "github.com/smartystreets/goconvey/convey"
  11. )
  12. var (
  13. s *Service
  14. p *service.Public
  15. )
  16. func init() {
  17. dir, _ := filepath.Abs("../../cmd/creative.toml")
  18. flag.Set("conf", dir)
  19. conf.Init()
  20. rpcdaos := service.NewRPCDaos(conf.Conf)
  21. p = service.New(conf.Conf, rpcdaos)
  22. s = New(conf.Conf, rpcdaos, p)
  23. time.Sleep(time.Second)
  24. }
  25. func WithService(f func(s *Service)) func() {
  26. return func() {
  27. Reset(func() {})
  28. f(s)
  29. }
  30. }
  31. func Test_loadPreValues(t *testing.T) {
  32. Convey("loadPreValues", t, WithService(func(s *Service) {
  33. s.loadPreValues()
  34. vals := s.BgmList(context.Background(), 1)
  35. So(vals, ShouldNotBeNil)
  36. }))
  37. }