service_test.go 706 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package goblin
  2. import (
  3. "flag"
  4. "fmt"
  5. "path/filepath"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/tv/conf"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. srv *Service
  13. )
  14. func init() {
  15. dir, _ := filepath.Abs("../../cmd/tv-interface.toml")
  16. flag.Set("conf", dir)
  17. conf.Init()
  18. srv = New(conf.Conf)
  19. time.Sleep(time.Second)
  20. }
  21. func WithService(f func(s *Service)) func() {
  22. return func() {
  23. Reset(func() {})
  24. f(srv)
  25. }
  26. }
  27. func TestService_Labels(t *testing.T) {
  28. Convey("TestService_Labels", t, WithService(func(s *Service) {
  29. results, err := s.Labels(ctx, 1, 2)
  30. So(err, ShouldBeNil)
  31. So(results, ShouldNotBeNil)
  32. for _, v := range results {
  33. fmt.Println(v.ParamName)
  34. }
  35. }))
  36. }