redis_test.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaokeyReplyZSet(t *testing.T) {
  8. convey.Convey("keyReplyZSet", t, func(ctx convey.C) {
  9. var (
  10. name = ""
  11. oid = int64(0)
  12. tp = int(0)
  13. )
  14. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  15. p1 := keyReplyZSet(name, oid, tp)
  16. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  17. ctx.So(p1, convey.ShouldNotBeNil)
  18. })
  19. })
  20. })
  21. }
  22. func TestDaoPingRedis(t *testing.T) {
  23. convey.Convey("PingRedis", t, func(ctx convey.C) {
  24. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  25. err := d.PingRedis(context.Background())
  26. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  27. ctx.So(err, convey.ShouldBeNil)
  28. })
  29. })
  30. })
  31. }
  32. func TestDaoExpireReplyZSetRds(t *testing.T) {
  33. convey.Convey("ExpireReplyZSetRds", t, func(ctx convey.C) {
  34. var (
  35. name = ""
  36. oid = int64(0)
  37. tp = int(0)
  38. )
  39. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  40. ok, err := d.ExpireReplyZSetRds(context.Background(), name, oid, tp)
  41. ctx.Convey("Then err should be nil.ok should not be nil.", func(ctx convey.C) {
  42. ctx.So(err, convey.ShouldBeNil)
  43. ctx.So(ok, convey.ShouldNotBeNil)
  44. })
  45. })
  46. })
  47. }
  48. func TestDaoGetReplyZSetRds(t *testing.T) {
  49. convey.Convey("ReplyZSetRds", t, func(ctx convey.C) {
  50. var (
  51. name = ""
  52. oid = int64(0)
  53. tp = int(0)
  54. start = int(0)
  55. end = int(0)
  56. )
  57. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  58. rpIDs, err := d.ReplyZSetRds(context.Background(), name, oid, tp, start, end)
  59. ctx.Convey("Then err should be nil.rpIDs should not be nil.", func(ctx convey.C) {
  60. ctx.So(err, convey.ShouldBeNil)
  61. ctx.So(rpIDs, convey.ShouldBeNil)
  62. })
  63. })
  64. })
  65. }
  66. func TestDaoCountReplyZSetRds(t *testing.T) {
  67. convey.Convey("CountReplyZSetRds", t, func(ctx convey.C) {
  68. var (
  69. name = ""
  70. oid = int64(-1)
  71. tp = int(0)
  72. )
  73. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  74. count, err := d.CountReplyZSetRds(context.Background(), name, oid, tp)
  75. ctx.Convey("Then err should be nil.rpIDs should not be nil.", func(ctx convey.C) {
  76. ctx.So(err, convey.ShouldBeNil)
  77. ctx.So(count, convey.ShouldEqual, 0)
  78. })
  79. })
  80. })
  81. }