Object commands are supported

This commit is contained in:
ivowiblo
2012-04-19 00:32:23 -04:00
parent be163acd52
commit d102ccf1b9
9 changed files with 136 additions and 3 deletions

View File

@@ -0,0 +1,48 @@
package redis.clients.jedis.tests.commands;
import org.junit.Test;
import redis.clients.util.SafeEncoder;
public class ObjectCommandsTest extends JedisCommandTestBase {
private String key = "key";
private byte[] binaryKey = SafeEncoder.encode(key);
@Test
public void objectRefcount() {
jedis.set(key, "test");
Long refcount = jedis.objectRefcount(key);
assertEquals(new Long(1), refcount);
//Binary
refcount = jedis.objectRefcount(binaryKey);
assertEquals(new Long(1), refcount);
}
@Test
public void objectEncoding() {
jedis.set(key, "test");
String encoding = jedis.objectEncoding(key);
assertEquals("raw", encoding);
//Binary
encoding = SafeEncoder.encode(jedis.objectEncoding(binaryKey));
assertEquals("raw", encoding);
}
@Test
public void objectIdletime() throws InterruptedException {
jedis.set(key, "test");
//Wait a little bit more than 10 seconds so the idle time is 10 seconds.
Thread.sleep(10001);
Long time = jedis.objectIdletime(key);
assertEquals(new Long(10), time);
//Binary
time = jedis.objectIdletime(binaryKey);
assertEquals(new Long(10), time);
}
}