use of org.apache.rocketmq.connect.redis.parser.MoveParser in project rocketmq-externals by apache.
the class ParserTest method testMoveParser.
@Test
public void testMoveParser() {
String command = "move key 1";
KVEntry builder = new MoveParser().parse(parseCommand(command));
Assert.assertEquals("move", builder.getCommand());
Assert.assertEquals("key", builder.getKey());
Assert.assertTrue(1 == builder.getParam(Options.REDIS_DB_INDEX));
}
Aggregations