Write JUnit Tests in Spring With Mocked and Real Objects
How to use mocked and non-mocked data to write unit tests using the free and open source JUnit framework.
Join the DZone community and get the full member experience.
Join For FreeMany times we need to mock the external service or database data to unit test the code. At the same time, we may require to reuse the same unit testing code to test actual external service or database (real objects). How can we make use of the same unit testing code for Mocked and Non-Mocked data?
The document includes the steps to write unit tests using mocked and real data with a simple example, e.g. unit testing implemented with mocked and real data for a repository layer (database layer).
Step 1: Create Spring configuration classes with the profiles “mock “and “dev”. The default profile will be “mock”.
a). Spring configuration with Mocked Bean reference:
@Configuration
@Profile("mock")
publicclass TestConfigurationMock{
@Bean(name = "personRepository")
public PersonRepository getPersonRepository() {
return MockFactoryBean.getPersonRepository();
}
…
.
}
b). Spring configuration with real object reference (non-mocked):
@Configuration
@Profile("dev")
publicclass TestConfiguration{
@Bean(name = "personRepository")
public PersonRepository getPersonRepository() {
return new PersonRepository();
}
…
.
}
Step 2: Create a MockFactoryBean that gives all mocked beans with sample data:
public class MockFactoryBean {
publicstatic PersonRepository getPersonRepository (){
PersonRepository personRepository = Mockito.mock(PersonRepository.class);
Person person = new Person();
Person.setName(“ABC”);
List<Person> personList = new ArrayList<Person>();
when(personRepository.getPersonDetails()).thenReturn(personList);
return personRepository;
}
..
}
Steps 3: Write JUnit tests with this mocked and real object reference Spring configuration:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = { TestConfigurationMock.class },.class)
@ActiveProfiles(resolver = SpringActiveProfileResolver.class)
publicclass TestPersonRepository {
@Autowired
private PersonRepository personRepository;
@Test
publicvoid getAllPersonDetails() {
List<Person> personDetailList = personRepository. getPersonDetails();
Assert.assertNotNull(personDetailList.get(0).getPersonName());
}
..
}
From the above JUnit example (TestPersonRepository.java):
@ContextConfiguration(classes = { TestConfigurationMock.class , TestConfiguration.class})
In the above example, based on the profile, either the Mocked or non-mocked bean will be injected into JUnit at runtime.
Mocked configuration can be used in all JUnit tests that require data from an external entity like a database and external services. Do not add any mocked data in the "Dev" profile and any non-mocked objects in the "mocked" profile.
- Assert only the key data sets expected in both mocked and non-mocked tests to avoid any JUnit failures upon profile change.
- Add the duplicate Mocked Bean (with different sample data) in the MockFactoryBean if it is required to cover-up different use cases in the mocked profile.
Opinions expressed by DZone contributors are their own.
Comments