redis_mask_test.go 803 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestSetnxMaskJob(t *testing.T) {
  9. Convey("", t, func() {
  10. ok, err := testDao.SetnxMaskJob(context.Background(), time.Now().String())
  11. So(err, ShouldBeNil)
  12. t.Logf("ok:%v", ok)
  13. })
  14. }
  15. func TestGetMaskJob(t *testing.T) {
  16. Convey("", t, func() {
  17. value, err := testDao.GetMaskJob(context.Background())
  18. So(err, ShouldBeNil)
  19. t.Logf("ok:%v", value)
  20. })
  21. }
  22. func TestGetSetMaskJob(t *testing.T) {
  23. Convey("", t, func() {
  24. value, err := testDao.GetSetMaskJob(context.Background(), time.Now().String())
  25. So(err, ShouldBeNil)
  26. t.Logf("ok:%v", value)
  27. })
  28. }
  29. func TestDelMaskJob(t *testing.T) {
  30. Convey("", t, func() {
  31. err := testDao.DelMaskJob(context.Background())
  32. So(err, ShouldBeNil)
  33. })
  34. }