模拟RedisTemplate在Spring Boot Camel中

时间:2018-01-10 19:01:30

标签: unit-testing spring-boot redis apache-camel mockito

我试图模仿RedisTemplate进行单元测试。我知道可以使用Camel Test API来模拟Redis,但我有很多Redis请求,我发现Mockito API更简单易用。 下面是我写的测试,它抛出了JedisConnectionException

为什么我的模拟不起作用?

@RunWith(CamelSpringBootRunner.class)
@SpringBootTest(CustomerRoute.class)
@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_EACH_TEST_METHOD)
@EnableAutoConfiguration(exclude = RedisAutoConfiguration.class)
public class CustomerRouteTest extends CamelTestSupport {

@Autowired
private CamelContext camelContext;

@Override
protected CamelContext createCamelContext() throws Exception {
    return camelContext;
}

@Test
public void routeIsProcessingTheFile() throws Exception {
   // ....
}

@Configuration
static class Config {

    @Bean
    RedisTemplate<?, ?> redisTemplate() {
        RedisTemplate<?, ?> template = mock(RedisTemplate.class);
        RedisConnectionFactory connectionFactory = mock(RedisConnectionFactory.class);
        RedisConnection connection = mock(RedisConnection.class);

        when(template.getConnectionFactory()).thenReturn(connectionFactory);
        when(connectionFactory.getConnection()).thenReturn(connection);

        when(template.opsForSet()).thenReturn(mock(SetOperations.class));
        when(template.opsForHash()).thenReturn(mock(HashOperations.class));

        return template;
    }
}
}

我正在使用:

'org.apache.camel:camel-spring-boot-starter:2.20.1'
'org.apache.camel:camel-spring-redis:2.20.1'

1 个答案:

答案 0 :(得分:0)

问题在于我没有在toD URI中包含模板而且驼峰使用了一些默认模板(我猜)。所以修复是:

&redisTemplate=#customTemplate