redis_test.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoSetIncomeCache(t *testing.T) {
  8. convey.Convey("SetIncomeCache", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. key = "100"
  12. value = map[string]interface{}{
  13. "aa": "bb",
  14. }
  15. )
  16. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  17. err := d.SetIncomeCache(c, key, value)
  18. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  19. ctx.So(err, convey.ShouldNotBeNil)
  20. })
  21. })
  22. })
  23. }
  24. func TestDaoGetIncomeCache(t *testing.T) {
  25. convey.Convey("GetIncomeCache", t, func(ctx convey.C) {
  26. var (
  27. c = context.Background()
  28. key = "100"
  29. )
  30. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  31. _, err := d.GetIncomeCache(c, key)
  32. ctx.Convey("Then err should be nil.data should not be nil.", func(ctx convey.C) {
  33. ctx.So(err, convey.ShouldNotBeNil)
  34. })
  35. })
  36. })
  37. }
  38. func TestDaosetCacheKV(t *testing.T) {
  39. convey.Convey("setCacheKV", t, func(ctx convey.C) {
  40. var (
  41. c = context.Background()
  42. key = "200"
  43. value = []byte("aaaaaa")
  44. expire = int64(100)
  45. )
  46. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  47. err := d.setCacheKV(c, key, value, expire)
  48. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  49. ctx.So(err, convey.ShouldNotBeNil)
  50. })
  51. })
  52. })
  53. }
  54. func TestDaogetCacheVal(t *testing.T) {
  55. convey.Convey("getCacheVal", t, func(ctx convey.C) {
  56. var (
  57. c = context.Background()
  58. key = "200"
  59. )
  60. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  61. _, err := d.getCacheVal(c, key)
  62. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  63. ctx.So(err, convey.ShouldNotBeNil)
  64. })
  65. })
  66. })
  67. }