118 lines
3.0 KiB
Java
118 lines
3.0 KiB
Java
package redis.clients.jedis.tests.commands;
|
|
|
|
import java.util.List;
|
|
|
|
import org.junit.Test;
|
|
|
|
import redis.clients.jedis.DebugParams;
|
|
import redis.clients.jedis.Jedis;
|
|
import redis.clients.jedis.JedisMonitor;
|
|
import redis.clients.jedis.exceptions.JedisDataException;
|
|
|
|
public class ControlCommandsTest extends JedisCommandTestBase {
|
|
@Test
|
|
public void save() {
|
|
String status = jedis.save();
|
|
assertEquals("OK", status);
|
|
}
|
|
|
|
@Test
|
|
public void bgsave() {
|
|
try {
|
|
String status = jedis.bgsave();
|
|
assertEquals("Background saving started", status);
|
|
} catch (JedisDataException e) {
|
|
assertTrue("ERR Background save already in progress"
|
|
.equalsIgnoreCase(e.getMessage()));
|
|
}
|
|
}
|
|
|
|
@Test
|
|
public void bgrewriteaof() {
|
|
String status = jedis.bgrewriteaof();
|
|
assertEquals("Background append only file rewriting started", status);
|
|
}
|
|
|
|
@Test
|
|
public void lastsave() throws InterruptedException {
|
|
long before = jedis.lastsave();
|
|
String st = "";
|
|
while (!st.equals("OK")) {
|
|
try {
|
|
Thread.sleep(1000);
|
|
st = jedis.save();
|
|
} catch (JedisDataException e) {
|
|
|
|
}
|
|
}
|
|
long after = jedis.lastsave();
|
|
assertTrue((after - before) > 0);
|
|
}
|
|
|
|
@Test
|
|
public void info() {
|
|
String info = jedis.info();
|
|
assertNotNull(info);
|
|
}
|
|
|
|
@Test
|
|
public void monitor() {
|
|
new Thread(new Runnable() {
|
|
public void run() {
|
|
Jedis j = new Jedis("localhost");
|
|
j.auth("foobared");
|
|
for (int i = 0; i < 4; i++) {
|
|
j.incr("foobared");
|
|
}
|
|
try {
|
|
Thread.sleep(2500);
|
|
} catch (InterruptedException e) {
|
|
}
|
|
j.incr("foobared");
|
|
j.disconnect();
|
|
}
|
|
}).start();
|
|
|
|
jedis.monitor(new JedisMonitor() {
|
|
private int count = 0;
|
|
|
|
public void onCommand(String command) {
|
|
if (command.contains("INCR")) {
|
|
count++;
|
|
}
|
|
if (count == 5) {
|
|
client.disconnect();
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
@Test
|
|
public void configGet() {
|
|
List<String> info = jedis.configGet("m*");
|
|
assertNotNull(info);
|
|
}
|
|
|
|
@Test
|
|
public void configSet() {
|
|
List<String> info = jedis.configGet("maxmemory");
|
|
String memory = info.get(1);
|
|
String status = jedis.configSet("maxmemory", "200");
|
|
assertEquals("OK", status);
|
|
jedis.configSet("maxmemory", memory);
|
|
}
|
|
|
|
@Test
|
|
public void sync() {
|
|
jedis.sync();
|
|
}
|
|
|
|
@Test
|
|
public void debug() {
|
|
jedis.set("foo", "bar");
|
|
String resp = jedis.debug(DebugParams.OBJECT("foo"));
|
|
assertNotNull(resp);
|
|
resp = jedis.debug(DebugParams.RELOAD());
|
|
assertNotNull(resp);
|
|
}
|
|
} |