subject_test.go 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. package like
  2. import (
  3. "context"
  4. "testing"
  5. "fmt"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestLikeVoteLog(t *testing.T) {
  9. convey.Convey("VoteLog", t, func(ctx convey.C) {
  10. var (
  11. c = context.Background()
  12. sid = int64(0)
  13. aid = int64(0)
  14. mid = int64(0)
  15. stage = int64(0)
  16. vote = int64(0)
  17. )
  18. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  19. rows, err := d.VoteLog(c, sid, aid, mid, stage, vote)
  20. ctx.Convey("Then err should be nil.rows should not be nil.", func(ctx convey.C) {
  21. ctx.So(err, convey.ShouldBeNil)
  22. ctx.So(rows, convey.ShouldNotBeNil)
  23. })
  24. })
  25. })
  26. }
  27. func TestLikeNewestSubject(t *testing.T) {
  28. convey.Convey("NewestSubject", t, func(ctx convey.C) {
  29. var (
  30. c = context.Background()
  31. typeIDs = []int64{10256}
  32. )
  33. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  34. res, err := d.NewestSubject(c, typeIDs)
  35. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  36. ctx.So(err, convey.ShouldBeNil)
  37. fmt.Printf("%+v", res)
  38. })
  39. })
  40. })
  41. }
  42. func TestLikeRawActSubject(t *testing.T) {
  43. convey.Convey("RawActSubject", t, func(ctx convey.C) {
  44. var (
  45. c = context.Background()
  46. id = int64(0)
  47. )
  48. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  49. res, err := d.RawActSubject(c, id)
  50. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  51. ctx.So(err, convey.ShouldBeNil)
  52. ctx.So(res, convey.ShouldNotBeNil)
  53. })
  54. })
  55. })
  56. }
  57. func TestLikeSubjectListMoreSid(t *testing.T) {
  58. convey.Convey("SubjectListMoreSid", t, func(ctx convey.C) {
  59. var (
  60. c = context.Background()
  61. minSid = int64(0)
  62. )
  63. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  64. res, err := d.SubjectListMoreSid(c, minSid)
  65. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  66. ctx.So(err, convey.ShouldBeNil)
  67. ctx.So(res, convey.ShouldNotBeNil)
  68. })
  69. })
  70. })
  71. }
  72. func TestLikeSubjectMaxID(t *testing.T) {
  73. convey.Convey("SubjectMaxID", t, func(ctx convey.C) {
  74. var (
  75. c = context.Background()
  76. )
  77. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  78. res, err := d.SubjectMaxID(c)
  79. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  80. ctx.So(err, convey.ShouldBeNil)
  81. ctx.So(res, convey.ShouldNotBeNil)
  82. })
  83. })
  84. })
  85. }