skill_test.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package academy
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/model/academy"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestAcademyOccupations(t *testing.T) {
  9. convey.Convey("Occupations", t, func(ctx convey.C) {
  10. var (
  11. c = context.Background()
  12. )
  13. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  14. res, err := d.Occupations(c)
  15. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  16. ctx.So(err, convey.ShouldBeNil)
  17. ctx.So(res, convey.ShouldNotBeNil)
  18. })
  19. })
  20. })
  21. }
  22. func TestAcademySkills(t *testing.T) {
  23. convey.Convey("Skills", t, func(ctx convey.C) {
  24. var (
  25. c = context.Background()
  26. )
  27. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  28. res, err := d.Skills(c)
  29. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  30. ctx.So(err, convey.ShouldBeNil)
  31. ctx.So(res, convey.ShouldNotBeNil)
  32. })
  33. })
  34. })
  35. }
  36. func TestAcademySkillArcs(t *testing.T) {
  37. convey.Convey("SkillArcs", t, func(ctx convey.C) {
  38. var (
  39. c = context.Background()
  40. pids = []int64{}
  41. skids = []int64{}
  42. sids = []int64{}
  43. offset = int(0)
  44. limit = int(0)
  45. )
  46. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  47. res, err := d.SkillArcs(c, pids, skids, sids, offset, limit)
  48. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  49. ctx.So(err, convey.ShouldBeNil)
  50. ctx.So(res, convey.ShouldNotBeNil)
  51. })
  52. })
  53. })
  54. }
  55. func TestAcademySkillArcCount(t *testing.T) {
  56. convey.Convey("SkillArcCount", t, func(ctx convey.C) {
  57. var (
  58. c = context.Background()
  59. pids = []int64{}
  60. skids = []int64{}
  61. sids = []int64{}
  62. )
  63. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  64. count, err := d.SkillArcCount(c, pids, skids, sids)
  65. ctx.Convey("Then err should be nil.count should not be nil.", func(ctx convey.C) {
  66. ctx.So(err, convey.ShouldBeNil)
  67. ctx.So(count, convey.ShouldNotBeNil)
  68. })
  69. })
  70. })
  71. }
  72. func TestAcademyPlayAdd(t *testing.T) {
  73. convey.Convey("PlayAdd", t, func(ctx convey.C) {
  74. var (
  75. c = context.Background()
  76. p = &academy.Play{}
  77. )
  78. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  79. id, err := d.PlayAdd(c, p)
  80. ctx.Convey("Then err should be nil.id should not be nil.", func(ctx convey.C) {
  81. ctx.So(err, convey.ShouldBeNil)
  82. ctx.So(id, convey.ShouldNotBeNil)
  83. })
  84. })
  85. })
  86. }
  87. func TestAcademyPlays(t *testing.T) {
  88. convey.Convey("Plays", t, func(ctx convey.C) {
  89. var (
  90. c = context.Background()
  91. mid = int64(0)
  92. offset = int(0)
  93. limit = int(0)
  94. )
  95. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  96. res, err := d.Plays(c, mid, offset, limit)
  97. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  98. ctx.So(err, convey.ShouldBeNil)
  99. ctx.So(res, convey.ShouldNotBeNil)
  100. })
  101. })
  102. })
  103. }
  104. func TestAcademyPlayCount(t *testing.T) {
  105. convey.Convey("PlayCount", t, func(ctx convey.C) {
  106. var (
  107. c = context.Background()
  108. mid = int64(0)
  109. )
  110. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  111. count, err := d.PlayCount(c, mid)
  112. ctx.Convey("Then err should be nil.count should not be nil.", func(ctx convey.C) {
  113. ctx.So(err, convey.ShouldBeNil)
  114. ctx.So(count, convey.ShouldNotBeNil)
  115. })
  116. })
  117. })
  118. }