match_test.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. package like
  2. import (
  3. "context"
  4. "testing"
  5. "fmt"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestLikeMatch(t *testing.T) {
  9. convey.Convey("Match", t, func(ctx convey.C) {
  10. var (
  11. c = context.Background()
  12. id = int64(10256)
  13. )
  14. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  15. res, err := d.Match(c, id)
  16. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  17. ctx.So(err, convey.ShouldBeNil)
  18. fmt.Printf("%+v", res)
  19. })
  20. })
  21. })
  22. }
  23. func TestLikeActMatch(t *testing.T) {
  24. convey.Convey("ActMatch", t, func(ctx convey.C) {
  25. var (
  26. c = context.Background()
  27. sid = int64(10256)
  28. )
  29. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  30. res, err := d.ActMatch(c, sid)
  31. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  32. ctx.So(err, convey.ShouldBeNil)
  33. fmt.Printf("%+v", res)
  34. })
  35. })
  36. })
  37. }
  38. func TestLikeObject(t *testing.T) {
  39. convey.Convey("Object", t, func(ctx convey.C) {
  40. var (
  41. c = context.Background()
  42. id = int64(10256)
  43. )
  44. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  45. res, err := d.Object(c, id)
  46. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  47. ctx.So(err, convey.ShouldBeNil)
  48. fmt.Printf("%+v", res)
  49. })
  50. })
  51. })
  52. }
  53. func TestLikeRawMatchSubjects(t *testing.T) {
  54. convey.Convey("RawMatchSubjects", t, func(ctx convey.C) {
  55. var (
  56. c = context.Background()
  57. ids = []int64{10256}
  58. )
  59. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  60. res, err := d.RawMatchSubjects(c, ids)
  61. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  62. ctx.So(err, convey.ShouldBeNil)
  63. ctx.So(res, convey.ShouldNotBeNil)
  64. })
  65. })
  66. })
  67. }
  68. func TestLikeObjectsUnStart(t *testing.T) {
  69. convey.Convey("ObjectsUnStart", t, func(ctx convey.C) {
  70. var (
  71. c = context.Background()
  72. sid = int64(10256)
  73. )
  74. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  75. res, err := d.ObjectsUnStart(c, sid)
  76. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  77. ctx.So(err, convey.ShouldBeNil)
  78. fmt.Printf("%+v", res)
  79. })
  80. })
  81. })
  82. }
  83. func TestLikeAddGuess(t *testing.T) {
  84. convey.Convey("AddGuess", t, func(ctx convey.C) {
  85. var (
  86. c = context.Background()
  87. mid = int64(77)
  88. matID = int64(7)
  89. objID = int64(7)
  90. sid = int64(10256)
  91. result = int64(7)
  92. stake = int64(7)
  93. )
  94. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  95. lastID, err := d.AddGuess(c, mid, matID, objID, sid, result, stake)
  96. ctx.Convey("Then err should be nil.lastID should not be nil.", func(ctx convey.C) {
  97. ctx.So(err, convey.ShouldBeNil)
  98. ctx.So(lastID, convey.ShouldNotBeNil)
  99. })
  100. })
  101. })
  102. }
  103. func TestLikeListGuess(t *testing.T) {
  104. convey.Convey("ListGuess", t, func(ctx convey.C) {
  105. var (
  106. c = context.Background()
  107. sid = int64(10256)
  108. mid = int64(77)
  109. )
  110. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  111. res, err := d.ListGuess(c, sid, mid)
  112. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  113. ctx.So(err, convey.ShouldBeNil)
  114. ctx.So(res, convey.ShouldNotBeNil)
  115. })
  116. })
  117. })
  118. }