daily_test.go 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package daily
  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 TestDaily(t *testing.T) {
  28. Convey("get Daily data", t, WithService(func(s *Service) {
  29. res := s.Daily(context.TODO(), model.PlatIPhone, 100000, 4, 1, 20)
  30. So(res, ShouldNotBeEmpty)
  31. }))
  32. }
  33. func TestColumnList(t *testing.T) {
  34. Convey("get ColumnList data", t, WithService(func(s *Service) {
  35. res := s.ColumnList(model.PlatIPhone, 100000, 4)
  36. So(res, ShouldNotBeEmpty)
  37. }))
  38. }
  39. func TestCategory(t *testing.T) {
  40. Convey("get Category data", t, WithService(func(s *Service) {
  41. res := s.Category(model.PlatIPhone, 100000, 4, 4, 1, 20)
  42. So(res, ShouldNotBeEmpty)
  43. }))
  44. }