memcache_test.go 698 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package recommend
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestAddRcmdAidsCache(t *testing.T) {
  8. Convey(t.Name(), t, func() {
  9. err := d.AddRcmdAidsCache(context.Background(), []int64{12})
  10. if err != nil {
  11. t.Log(err)
  12. }
  13. err = nil
  14. So(err, ShouldBeNil)
  15. })
  16. }
  17. func TestRcmdAidsCache(t *testing.T) {
  18. Convey(t.Name(), t, func() {
  19. _, err := d.RcmdAidsCache(context.Background())
  20. if err != nil {
  21. t.Log(err)
  22. }
  23. err = nil
  24. So(err, ShouldBeNil)
  25. })
  26. }
  27. func TestRcmdCache(t *testing.T) {
  28. Convey(t.Name(), t, func() {
  29. _, err := d.RcmdCache(context.Background())
  30. if err != nil {
  31. t.Log(err)
  32. }
  33. err = nil
  34. So(err, ShouldBeNil)
  35. })
  36. }