我正在尝试在RedisTemplate中测试expire方法。例如,我将会话存储在redis中,然后尝试检索会话并检查值是否相同。对于到期会话,我使用redisTemplate的expire()方法,对于获得过期的会话,我使用getExpire()方法。但它不起作用。如何测试存储在redis中的值?
//without import and fields
public class Cache() {
private StringRedisTemplate redisTemplate;
public boolean expireSession(String session, int duration) {
return redisTemplate.expire(session, duration, TimeUnit.MINUTES);
}
}
//Test class without imports and fields
public class TestCache() {
private Cache cache = new Cache();
@Test
public void testExpireSession() {
Integer duration = 16;
String session = "SESSION_123";
cache.expireSession(session, duration);
assertEquals(redisTemplate.getExpire(session, TimeUnit.MINUTES), Long.valueOf(duration));
}
}
但测试因AssertionError而失败:
预期:16实际:0
更新 我想,getExpire()方法不起作用,但实际上expire()方法不起作用。它返回false。 redisTemplate是一个自动测试类的spring Bean。 TestCache类中有许多其他测试方法可以正常工作。
答案 0 :(得分:2)
我设置了以下代码来对getExpire()
执行测试(jedis 2.5.2,spring-data-redis 1.4.2.RELEASE):
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = DemoApplication.class)
public class DemoApplicationTests {
@Autowired
private RedisTemplate<String, String> template;
@Test
public void contextLoads() {
template.getConnectionFactory().getConnection().flushAll();
assertFalse(template.hasKey("key"));
assertFalse(template.expire("key", 10, TimeUnit.MINUTES));
assertEquals(0, template.getExpire("key", TimeUnit.MINUTES).longValue());
template.opsForHash().put("key", "hashkey", "hashvalue");
assertTrue(template.hasKey("key"));
assertTrue(template.expire("key", 10, TimeUnit.MINUTES));
assertTrue(template.getExpire("key", TimeUnit.MINUTES) > 8);
}
}
根据您的Redis配置,如果重新启动Redis实例,则所有Redis数据都将消失。
您还应该向expireSession
(assertTrue(cache.expireSession(session, duration));
)添加一个断言,以确保过期有效。