opinion_test.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoAddOpinionTx(t *testing.T) {
  8. convey.Convey("AddOpinionTx", t, func(convCtx convey.C) {
  9. var (
  10. tx, _ = d.BeginTran(context.Background())
  11. cid = int64(0)
  12. opid = int64(0)
  13. mid = int64(0)
  14. content = ""
  15. attr = int8(0)
  16. vote = int8(0)
  17. state = int8(0)
  18. )
  19. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  20. affect, err := d.AddOpinionTx(tx, cid, opid, mid, content, attr, vote, state)
  21. if err == nil {
  22. if err = tx.Commit(); err != nil {
  23. tx.Rollback()
  24. }
  25. } else {
  26. tx.Rollback()
  27. }
  28. convCtx.Convey("Then err should be nil.affect should not be nil.", func(convCtx convey.C) {
  29. convCtx.So(err, convey.ShouldBeNil)
  30. convCtx.So(affect, convey.ShouldNotBeNil)
  31. })
  32. })
  33. })
  34. }
  35. func TestDaoAddLikes(t *testing.T) {
  36. convey.Convey("AddLikes", t, func(convCtx convey.C) {
  37. var (
  38. c = context.Background()
  39. ids = []int64{53, 55}
  40. )
  41. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  42. affect, err := d.AddLikes(c, ids)
  43. convCtx.Convey("Then err should be nil.affect should not be nil.", func(convCtx convey.C) {
  44. convCtx.So(err, convey.ShouldBeNil)
  45. convCtx.So(affect, convey.ShouldNotBeNil)
  46. })
  47. })
  48. })
  49. }
  50. func TestDaoAddHates(t *testing.T) {
  51. convey.Convey("AddHates", t, func(convCtx convey.C) {
  52. var (
  53. c = context.Background()
  54. ids = []int64{53, 55}
  55. )
  56. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  57. affect, err := d.AddHates(c, ids)
  58. convCtx.Convey("Then err should be nil.affect should not be nil.", func(convCtx convey.C) {
  59. convCtx.So(err, convey.ShouldBeNil)
  60. convCtx.So(affect, convey.ShouldNotBeNil)
  61. })
  62. })
  63. })
  64. }
  65. func TestDaoDelOpinion(t *testing.T) {
  66. convey.Convey("DelOpinion", t, func(convCtx convey.C) {
  67. var (
  68. c = context.Background()
  69. opid = int64(0)
  70. )
  71. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  72. err := d.DelOpinion(c, opid)
  73. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  74. convCtx.So(err, convey.ShouldBeNil)
  75. })
  76. })
  77. })
  78. }
  79. func TestDaoOpinionIdx(t *testing.T) {
  80. convey.Convey("OpinionIdx", t, func(convCtx convey.C) {
  81. var (
  82. c = context.Background()
  83. cid = int64(0)
  84. )
  85. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  86. ops, err := d.OpinionIdx(c, cid)
  87. convCtx.Convey("Then err should be nil.ops should be nil.", func(convCtx convey.C) {
  88. convCtx.So(err, convey.ShouldBeNil)
  89. convCtx.So(ops, convey.ShouldBeNil)
  90. })
  91. })
  92. })
  93. }
  94. func TestDaoOpinionCaseIdx(t *testing.T) {
  95. convey.Convey("OpinionCaseIdx", t, func(convCtx convey.C) {
  96. var (
  97. c = context.Background()
  98. cid = int64(0)
  99. )
  100. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  101. ops, err := d.OpinionCaseIdx(c, cid)
  102. convCtx.Convey("Then err should be nil.ops should be nil.", func(convCtx convey.C) {
  103. convCtx.So(err, convey.ShouldBeNil)
  104. convCtx.So(ops, convey.ShouldBeNil)
  105. })
  106. })
  107. })
  108. }
  109. func TestDaoOpinions(t *testing.T) {
  110. convey.Convey("Opinions", t, func(convCtx convey.C) {
  111. var (
  112. c = context.Background()
  113. opids = []int64{55, 207}
  114. )
  115. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  116. ops, err := d.Opinions(c, opids)
  117. convCtx.Convey("Then err should be nil.ops should not be nil.", func(convCtx convey.C) {
  118. convCtx.So(err, convey.ShouldBeNil)
  119. convCtx.So(ops, convey.ShouldNotBeNil)
  120. })
  121. })
  122. })
  123. }
  124. func TestDaoOpContentMid(t *testing.T) {
  125. convey.Convey("OpContentMid", t, func(convCtx convey.C) {
  126. var (
  127. c = context.Background()
  128. mid = int64(0)
  129. )
  130. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  131. content, err := d.OpContentMid(c, mid)
  132. convCtx.Convey("Then err should be nil.content should not be nil.", func(convCtx convey.C) {
  133. convCtx.So(err, convey.ShouldBeNil)
  134. convCtx.So(content, convey.ShouldNotBeNil)
  135. })
  136. })
  137. })
  138. }