I'm trying to test service-class of reactive mongoDB application, created on SpringBoot.
I don't use embedded mongodb! I'm only trying to mock repository
This is reactive mongo repository:
package com.spb.budget_server.repository;
public interface EntryRepository extends ReactiveMongoRepository<Entry, String> {
}
Repository, which should use it:
package com.spb.budget_server.repository.impl;
@AllArgsConstructor
@Repository
public class EntryRepositoryImpl {
private EntryRepository entryRepository;
//
}
And test class:
@ExtendWith(SpringExtension.class)
@SpringBootTest(classes = {EntryRepositoryImpl.class, EntryRepository.class})
public class EntryServiceTest {
@Autowired
private EntryRepositoryImpl entryRepositoryImpl;
//
}
Main configuration:
@Configuration
@EnableReactiveMongoRepositories()
public class MongoConfig extends AbstractReactiveMongoConfiguration {
// some db-settings
}
May be It doesn't matter is that case, but test-configurations is:
@TestConfiguration
public class TestConfig {
@Bean
public EntryRepositoryImpl mockEntryRepositoryImpl() {
return Mockito.mock(EntryRepositoryImpl.class);
}
}
And, after running test, I receive the following exception:
Error creating bean with name 'entryRepositoryImpl':
caused by:
NoSuchBeanDefinitionException: No qualifying bean of type 'com.spb.budget_server.repository.EntryRepository' available: expected at least 1 bean which qualifies as autowire candidate
What am I doing wrong? Any ideas?