gpt4 book ai didi

unit-testing - 在 Spring Boot Camel 中模拟 RedisTemplate

转载 作者:可可西里 更新时间:2023-11-01 11:24:56 30 4
gpt4 key购买 nike

我正在尝试模拟 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'

最佳答案

问题是我没有在 toD URI 中包含模板,camel 使用了一些默认模板(我猜)。所以解决方法是:

&redisTemplate=#customTemplate

关于unit-testing - 在 Spring Boot Camel 中模拟 RedisTemplate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48194385/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com