show_test.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package region
  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 TestChildShow(t *testing.T) {
  28. Convey("get ChildShow data", t, WithService(func(s *Service) {
  29. res := s.ChildShow(context.TODO(), model.PlatIPhone, 0, 1, 0, 111, "", "iphone", time.Now())
  30. So(res, ShouldNotBeEmpty)
  31. }))
  32. }
  33. func TestShow(t *testing.T) {
  34. Convey("get Show data", t, WithService(func(s *Service) {
  35. res := s.Show(context.TODO(), model.PlatIPhone, 1, 0, 0, "channel", "", "", "iphone", "phone", "")
  36. So(res, ShouldNotBeEmpty)
  37. }))
  38. }
  39. func TestShowDynamic(t *testing.T) {
  40. Convey("get ShowDynamic data", t, WithService(func(s *Service) {
  41. res := s.ShowDynamic(context.TODO(), model.PlatIPhone, 0, 1, 1, 20)
  42. So(res, ShouldNotBeEmpty)
  43. }))
  44. }
  45. func TestChildListShow(t *testing.T) {
  46. Convey("get ChildListShow data", t, WithService(func(s *Service) {
  47. res := s.ChildListShow(context.TODO(), model.PlatIPhone, 1, 0, 1, 20, 0, 0, "new", "ios", "iphone", "phone")
  48. So(res, ShouldNotBeEmpty)
  49. }))
  50. }
  51. func TestDynamic(t *testing.T) {
  52. Convey("get Dynamic data", t, WithService(func(s *Service) {
  53. res := s.Dynamic(context.TODO(), model.PlatIPhone, 1, 0, 0, "channel", "", "", "iphone", "phone", "", time.Now())
  54. So(res, ShouldNotBeEmpty)
  55. }))
  56. }
  57. func TestDynamicList(t *testing.T) {
  58. Convey("get DynamicList data", t, WithService(func(s *Service) {
  59. res := s.DynamicList(context.TODO(), model.PlatIPhone, 1, true, 0, 0, time.Now())
  60. So(res, ShouldNotBeEmpty)
  61. }))
  62. }
  63. func TestDynamicChild(t *testing.T) {
  64. Convey("get DynamicChild data", t, WithService(func(s *Service) {
  65. res := s.DynamicChild(context.TODO(), model.PlatIPhone, 1, 0, 0, 0, "iphone", time.Now())
  66. So(res, ShouldNotBeEmpty)
  67. }))
  68. }
  69. func TestDynamicListChild(t *testing.T) {
  70. Convey("get DynamicListChild data", t, WithService(func(s *Service) {
  71. res := s.DynamicListChild(context.TODO(), model.PlatIPhone, 1, 0, 0, true, 0, 0, time.Now())
  72. So(res, ShouldNotBeEmpty)
  73. }))
  74. }
  75. func TestAudit(t *testing.T) {
  76. Convey("get Audit data", t, WithService(func(s *Service) {
  77. res, _ := s.Audit(context.TODO(), "iphone", model.PlatIPhone, 1, 1, false)
  78. So(res, ShouldNotBeEmpty)
  79. }))
  80. }
  81. func TestAuditChild(t *testing.T) {
  82. Convey("get AuditChild data", t, WithService(func(s *Service) {
  83. res, _ := s.AuditChild(context.TODO(), "iphone", "", model.PlatIPhone, 1, 1, 0)
  84. So(res, ShouldNotBeEmpty)
  85. }))
  86. }
  87. func TestAuditChildList(t *testing.T) {
  88. Convey("get AuditChildList data", t, WithService(func(s *Service) {
  89. res, _ := s.AuditChildList(context.TODO(), "iphone", "", model.PlatIPhone, 1, 1, 0, 1, 1)
  90. So(res, ShouldNotBeEmpty)
  91. }))
  92. }