Skip to content

Instantly share code, notes, and snippets.

@bibryam
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save bibryam/9909434 to your computer and use it in GitHub Desktop.

Select an option

Save bibryam/9909434 to your computer and use it in GitHub Desktop.
package org.apache.camel.component.redis;
import org.apache.camel.impl.JndiRegistry;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.data.redis.connection.jedis.JedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
@Ignore
public class RedisProducerIntegrationTest extends RedisTestSupport {
private static final JedisConnectionFactory CONNECTION_FACTORY = new JedisConnectionFactory();
static {
CONNECTION_FACTORY.afterPropertiesSet();
}
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry registry = super.createRegistry();
redisTemplate = new RedisTemplate();
redisTemplate.setConnectionFactory(CONNECTION_FACTORY);
redisTemplate.afterPropertiesSet();
registry.bind("redisTemplate", redisTemplate);
return registry;
}
@Test
public void shouldSetAString() throws Exception {
sendHeaders(
RedisConstants.COMMAND, "SET",
RedisConstants.KEY, "key1",
RedisConstants.VALUE, "value");
assertEquals("value", redisTemplate.opsForValue().get("key1"));
}
@Test
public void shouldGetAString() throws Exception {
redisTemplate.opsForValue().set("key2", "value");
Object result = sendHeaders(RedisConstants.KEY, "key2", RedisConstants.COMMAND, "GET");
assertEquals("value", result);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment