A simple redis java mock for unit testing.
added features:
- setex
- zscore
- eval
The very simple way.
private static RedisServer server = null;
@Before
public void before() throws IOException {
server = RedisServer.newRedisServer(); // bind to a random port
}
@Test
public void test() {
...
Jedis jedis = new Jedis(server.getHost(), server.getBindPort());
...
}
@After
public void after() {
server.stop();
server = null;
}
RedisServer master = newRedisServer();
RedisServer slave = newRedisServer();
master.setSlave(slave);
We can make a RedisServer close connection after every serveral commands. This will cause a connection exception for clients.
RedisServer server = RedisServer.newRedisServer();
ServiceOptions options = new ServiceOptions();
options.setCloseSocketAfterSeveralCommands(3);
server.setOptions(options);
server.start();
strlen
get
append
exists
set
ttl
decrby
pfadd
pfmerge
mget
mset
getset
del
expireat
pexpireat
setex
psetex
setnx
setbit
getbit
pttl
expire
pexpire
incr
incrby
decr
pfcount