workflow_test.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. package appeal
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/model/appeal"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestAppealAppealList(t *testing.T) {
  9. var (
  10. c = context.TODO()
  11. mid = int64(0)
  12. business = int(0)
  13. ip = ""
  14. )
  15. convey.Convey("AppealList", t, func(ctx convey.C) {
  16. as, err := d.AppealList(c, mid, business, ip)
  17. ctx.Convey("Then err should be nil.as should not be nil.", func(ctx convey.C) {
  18. ctx.So(err, convey.ShouldBeNil)
  19. ctx.So(as, convey.ShouldNotBeNil)
  20. })
  21. })
  22. }
  23. func TestAppealAppealDetail(t *testing.T) {
  24. var (
  25. c = context.TODO()
  26. mid = int64(0)
  27. id = int64(0)
  28. business = int(0)
  29. ip = ""
  30. )
  31. convey.Convey("AppealDetail", t, func(ctx convey.C) {
  32. a, err := d.AppealDetail(c, mid, id, business, ip)
  33. ctx.Convey("Then err should be nil.a should not be nil.", func(ctx convey.C) {
  34. ctx.So(err, convey.ShouldBeNil)
  35. ctx.So(a, convey.ShouldNotBeNil)
  36. })
  37. })
  38. }
  39. func TestAppealAddAppeal(t *testing.T) {
  40. var (
  41. c = context.TODO()
  42. tid = int64(0)
  43. aid = int64(0)
  44. mid = int64(0)
  45. business = int64(0)
  46. qq = ""
  47. phone = ""
  48. email = ""
  49. desc = ""
  50. attachments = ""
  51. ip = ""
  52. ap = &appeal.BusinessAppeal{}
  53. )
  54. convey.Convey("AddAppeal", t, func(ctx convey.C) {
  55. apID, err := d.AddAppeal(c, tid, aid, mid, business, qq, phone, email, desc, attachments, ip, ap)
  56. ctx.Convey("Then err should be nil.apID should not be nil.", func(ctx convey.C) {
  57. ctx.So(err, convey.ShouldBeNil)
  58. ctx.So(apID, convey.ShouldNotBeNil)
  59. })
  60. })
  61. }
  62. func TestAppealAddReply(t *testing.T) {
  63. var (
  64. c = context.TODO()
  65. cid = int64(0)
  66. event = int64(0)
  67. content = ""
  68. attachments = ""
  69. ip = ""
  70. )
  71. convey.Convey("AddReply", t, func(ctx convey.C) {
  72. err := d.AddReply(c, cid, event, content, attachments, ip)
  73. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  74. ctx.So(err, convey.ShouldBeNil)
  75. })
  76. })
  77. }
  78. func TestAppealAppealExtra(t *testing.T) {
  79. var (
  80. c = context.TODO()
  81. mid = int64(0)
  82. cid = int64(0)
  83. business = int64(0)
  84. val = int64(0)
  85. key = ""
  86. ip = ""
  87. )
  88. convey.Convey("AppealExtra", t, func(ctx convey.C) {
  89. err := d.AppealExtra(c, mid, cid, business, val, key, ip)
  90. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  91. ctx.So(err, convey.ShouldBeNil)
  92. })
  93. })
  94. }
  95. func TestAppealAppealState(t *testing.T) {
  96. var (
  97. c = context.TODO()
  98. mid = int64(0)
  99. id = int64(0)
  100. business = int64(0)
  101. state = int64(0)
  102. ip = ""
  103. )
  104. convey.Convey("AppealState", t, func(ctx convey.C) {
  105. err := d.AppealState(c, mid, id, business, state, ip)
  106. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  107. ctx.So(err, convey.ShouldBeNil)
  108. })
  109. })
  110. }
  111. func TestAppealAppealStarInfo(t *testing.T) {
  112. var (
  113. c = context.TODO()
  114. mid = int64(0)
  115. cid = int64(0)
  116. business = int(0)
  117. ip = ""
  118. )
  119. convey.Convey("AppealStarInfo", t, func(ctx convey.C) {
  120. star, etime, err := d.AppealStarInfo(c, mid, cid, business, ip)
  121. ctx.Convey("Then err should be nil.star,etime should not be nil.", func(ctx convey.C) {
  122. ctx.So(err, convey.ShouldBeNil)
  123. ctx.So(etime, convey.ShouldNotBeNil)
  124. ctx.So(star, convey.ShouldNotBeNil)
  125. })
  126. })
  127. }