banner_test.go 683 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package banner
  2. import (
  3. "context"
  4. "flag"
  5. "path/filepath"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/app-show/conf"
  9. "go-common/app/interface/main/app-show/model"
  10. . "github.com/smartystreets/goconvey/convey"
  11. )
  12. var (
  13. s *Service
  14. )
  15. func WithService(f func(s *Service)) func() {
  16. return func() {
  17. f(s)
  18. }
  19. }
  20. func init() {
  21. dir, _ := filepath.Abs("../../cmd/app-show-test.toml")
  22. flag.Set("conf", dir)
  23. conf.Init()
  24. s = New(conf.Conf)
  25. time.Sleep(time.Second)
  26. }
  27. func TestDisplay(t *testing.T) {
  28. Convey("get Display data", t, WithService(func(s *Service) {
  29. res := s.Display(context.TODO(), model.PlatIPhone, 0, "", "", "", "iphone")
  30. So(res, ShouldNotBeEmpty)
  31. }))
  32. }