#java #spring #mockito #ehcache #ehcache-3
#java #весна #mockito #ehcache #ehcache-3
Вопрос:
Я использую EhCache 3 с Spring и хочу выполнить модульные тесты для этого класса конфигурации.
@Configuration
@EnableCaching
public class EhCacheConfiguration {
@Bean
public JCacheManagerCustomizer cacheManagerCustomizer() {
return cacheManager -> {
Cache<SimpleKey, Try.Success<Person>> cache = cacheManager .getCache("cache");
if (cache == null) {
cacheManager .createCache("cache", jcacheConfiguration());
}
};
}
private javax.cache.configuration.Configuration<SimpleKey, Try.Success> jcacheConfiguration() {
return Eh107Configuration.fromEhcacheCacheConfiguration(
CacheConfigurationBuilder
.newCacheConfigurationBuilder(
SimpleKey.class,
Try.Success.class,
ResourcePoolsBuilder.heap(2000).offheap(25, MemoryUnit.MB)
)
.withExpiry(ExpiryPolicyBuilder.timeToLiveExpiration(Duration.ofHours(timeToLive)))
.build()
);
}
}
Я пытался использовать этот тестовый класс, но я не могу издеваться над CacheManager внутри компонента cacheManagerCustomizer.
Я пытался использовать MockBean, Mock, InjectMocks, но я заблудился
@ExtendWith(MockitoExtension.class)
class EhCacheConfigurationTest {
private EhCacheConfiguration cut;
@MockBean
private CacheManager cacheManager;
@BeforeEach
void setUp() {
cut = new EhCacheConfiguration();
MockitoAnnotations.initMocks(this);
}
@Test
void checkIfCacheIsCalled() {
assertThat(cut.cacheManagerCustomizer()).isInstanceOf(JCacheManagerCustomizer.class);
verify(cacheManager).getCache("cache");
}
}
У меня есть это сообщение об ошибке:
org.mockito.exceptions.misusing.NullInsteadOfMockException:
Argument passed to verify() should be a mock but is null!
Как я могу издеваться над компонентом CacheManager внутри компонента cacheManagerCustomizer?