如果您想测试缓存等技术方面,请不要使用数据库。了解您想在这里测试什么很重要。您要确保使用相同参数的调用避免方法调用。面向数据库的存储库与本主题完全正交。
这是我的建议:
- 设置一个配置声明式缓存的集成测试(或从您的生产配置中导入必要的部分。
- 配置存储库的模拟实例。
- 编写一个测试用例来设置模拟的预期行为,调用方法并相应地验证输出。
样本
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
public class CachingIntegrationTest {
// Your repository interface
interface MyRepo extends Repository<Object, Long> {
@Cacheable("sample")
Object findByEmail(String email);
}
@Configuration
@EnableCaching
static class Config {
// Simulating your caching configuration
@Bean
CacheManager cacheManager() {
return new ConcurrentMapCacheManager("sample");
}
// A repository mock instead of the real proxy
@Bean
MyRepo myRepo() {
return Mockito.mock(MyRepo.class);
}
}
@Autowired CacheManager manager;
@Autowired MyRepo repo;
@Test
public void methodInvocationShouldBeCached() {
Object first = new Object();
Object second = new Object();
// Set up the mock to return *different* objects for the first and second call
Mockito.when(repo.findByEmail(Mockito.any(String.class))).thenReturn(first, second);
// First invocation returns object returned by the method
Object result = repo.findByEmail("foo");
assertThat(result, is(first));
// Second invocation should return cached value, *not* second (as set up above)
result = repo.findByEmail("foo");
assertThat(result, is(first));
// Verify repository method was invoked once
Mockito.verify(repo, Mockito.times(1)).findByEmail("foo");
assertThat(manager.getCache("sample").get("foo"), is(notNullValue()));
// Third invocation with different key is triggers the second invocation of the repo method
result = repo.findByEmail("bar");
assertThat(result, is(second));
}
}
如您所见,我们在这里做了一些过度测试:
- 我认为最相关的检查是第二次调用返回第一个对象。这就是缓存的全部意义所在。使用相同键的前两次调用返回相同的对象,而使用不同键的第三次调用导致对存储库的第二次实际调用。
- 我们通过检查缓存是否确实具有第一个键的值来加强测试用例。甚至可以扩展它以检查实际值。另一方面,我也认为最好避免这样做,因为您倾向于测试更多机制的内部而不是应用程序级别的行为。
关键要点
- 您不需要任何基础设施来测试容器行为。
- 设置测试用例既简单又直接。
- 精心设计的组件让您可以编写简单的测试用例,并且需要较少的集成测试工作。