Last active
August 29, 2015 13:57
-
-
Save bibryam/9909434 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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