Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to inject a Mockito mock object into a Spring (3+) bean for the purposes of unit testing with JUnit. My bean dependencies are currently injected by using the @Autowired annotation on private member fields.

I have considered using ReflectionTestUtils.setField but the bean instance that I wish to inject is actually a proxy and hence does not declare the private member fields of the target class. I do not wish to create a public setter to the dependency as I will then be modifying my interface purely for the purposes of testing.

I have followed some advice given by the Spring community but the mock does not get created and the auto-wiring fails:

<bean id="dao" class="org.mockito.Mockito" factory-method="mock">
    <constructor-arg value="com.package.Dao" />
</bean>

The error I currently encounter is as follows:

...
Caused by: org...NoSuchBeanDefinitionException:
    No matching bean of type [com.package.Dao] found for dependency:
    expected at least 1 bean which qualifies as autowire candidate for this dependency.
    Dependency annotations: {
        @org...Autowired(required=true),
        @org...Qualifier(value=dao)
    }
at org...DefaultListableBeanFactory.raiseNoSuchBeanDefinitionException(D...y.java:901)
at org...DefaultListableBeanFactory.doResolveDependency(D...y.java:770)

If I set the constructor-arg value to something invalid no error occurs when starting the application context.

share|improve this question

16 Answers

up vote 41 down vote accepted

Please take a look at this tiny little creature: https://bitbucket.org/kubek2k/springockito/wiki/Home

share|improve this answer
2  
This is a very clean approach - I like it! – teabot Jul 25 '11 at 9:29
2  
You had me at Springockito-annotations. – Zefi Apr 12 '12 at 9:30
1  
Forget all the rest, springockito-annotations is something you want to use. The nice thing is that you can have a non-complete XML configuration (omit the mocks) and annotations will fill in the blanks (the mocks). Then just @Autowire everything. – Tuukka Mustonen Nov 1 '12 at 10:43
1  
Sadly, Springockito doesn't let you easily grab the WebApplicationContext (you might do this if you're writing an integration test with @WebAppConfiguation), as documented by tihs issue: bitbucket.org/kubek2k/springockito/issue/12/… You've probably just got to call the mock() method yourself. – fatuhoku Mar 22 at 13:21

The best way is:

<bean id="dao" class="org.mockito.Mockito" factory-method="mock"> 
    <constructor-arg value="com.package.Dao" /> 
</bean> 
share|improve this answer
I get an error: "Error creating bean with name 'mockito': bean definition is abstract" – tttppp Oct 5 '10 at 13:28
I updated the code. Try it now! – amra Oct 5 '10 at 22:52
3  
@amra: spring dosn't infer the type of the object returned in this case... stackoverflow.com/q/6976421/306488 – Sloin Aug 8 '11 at 7:35
4  
Don't know why this answer is upvoted so much, the resulting bean cannot be autowired because it has the wrong type. – azerole Dec 7 '12 at 14:53
@InjectMocks
private MyTestObject testObject

@Mock
private MyDependentObject mockedObject

@Before
public void setup() {
        MockitoAnnotations.initMocks(this);
}

This will inject any mocked objects in the test class, so in this case it will inject mockedObject in testObject. This was mentioned above but here is the code.

share|improve this answer
How do I stub a particular method of mockedObject? – Teinacher Jul 13 '12 at 9:14
@Teinacher when(mockedObject.execute).thenReturn(objToReturn); You can put that either in the before method or inside your test method. – chaostheory Apr 8 at 6:36

Since 1.8.3 Mockito has @InjectMocks - this is incredibly useful. My JUnit tests are @RunWith the MockitoJUnitRunner and I build @Mock objects that satisfy all the dependencies for the class being tested, which are all injected when the private member is annotated with @InjectMocks.

I @RunWith the SpringJUnit4Runner for integration tests only now.

I will note that it does not seem to be able to inject List in the same manner as Spring. It looks only for a Mock object that satisfies the List, and will not inject a list of Mock objects. The workaround for me was to use a @Spy against a manually instantiated list, and manually .add the mock object(s) to that list for unit testing. Maybe that was intentional, because it certainly forced me to pay close attention to what was being mocked together.

share|improve this answer
Yeah this is the best way. Springockito doesn't actually inject the mocks for whatever reason in my case. – chaostheory Apr 8 at 6:37

Update: There are now better, cleaner solutions to this problem. Please consider the other answers first.

I eventually found an answer to this by ronen on his blog. The problem I was having is due to the method Mockito.mock(Class c) declaring a return type of Object. Consequently Spring is unable to infer the bean type from the factory method return type.

Ronen's solution is to create a FactoryBean implementation that returns mocks. The FactoryBean interface allows Spring to query the type of objects created by the factory bean.

My mocked bean definition now looks like:

<bean id="mockDaoFactory" name="dao" class="com.package.test.MocksFactory">
    <property name="type" value="com.package.Dao" />
</bean>
share|improve this answer
1  
Updated link to Ronen's Solution: narkisr.com/blog/2008/2647754885089732945 – Jeff Martin Oct 7 '10 at 20:23
Link down :( so sad – Tom Jun 1 '11 at 18:52
I don't understand that, the factory method has return type Object ... But the amra's solution has a generic return type so that Spring should recognize it... But the amra's solution doesn't work for me – Sloin Aug 7 '11 at 22:35
Neither this solution, spring doesn't infer the type of bean that is returned from the factoryBean hence No matching bean of type [ com.package.Dao ] ... – Sloin Aug 7 '11 at 22:55

Below code works with autowiring - it is not shortest version but usefull when it should work only with standard spring/mockito jars.

<bean id="dao" class="org.springframework.aop.framework.ProxyFactoryBean">
   <property name="target"> <bean class="org.mockito.Mockito" factory-method="mock"> <constructor-arg value="com.package.Dao /> </bean> </property>
   <property name="proxyInterfaces"> <value>com.package.Dao</value> </property>
</bean> 
share|improve this answer

Perhaps not the perfect solution, but I tend not to use spring to do DI for unit tests. the dependencies for a single bean (the class under test) usually aren't overly complex so I just do the injection directly in the test code.

share|improve this answer
2  
I understand your approach. However, I find myself in this situation on a large legacy code base that doesn't easily allow for this - yet. – teabot Mar 16 '10 at 19:08
1  
I have found the Mockito/Spring combo to be very useful when I need to test code that depends heavily on Spring aspects/AOP (for instance, when testing spring security rules). Although one is perfectly justified in claiming that such tests should be a integration test. – Lars Tackmann Mar 18 '10 at 13:06
@Lars - agreed - the same could be said of the tests I am dealing with. – teabot Mar 18 '10 at 22:45

I can do the following using Mockito --

<bean id="stateMachine" class="org.mockito.Mockito" factory-method="mock"> <constructor-arg value="com.abcd.StateMachine"/> </bean>

With Regards, A

share|improve this answer
Thanks for the answer @Alexander. May I ask: does it wire-up correctly? If so which versions of Spring/Mockito are you using? – teabot Apr 27 '10 at 10:01

If you're using spring >= 3.0, try using Springs @Configuration annotation to define part of the application context

@Configuration
@ImportResource("com/blah/blurk/rest-of-config.xml")
public class DaoTestConfiguration {

    @Bean
    public ApplicationService applicationService() {
        return mock(ApplicationService.class);
    }

}

If you don't want to use the @ImportResource, it can be done the other way around too:

<beans>
    <!-- rest of your config -->

    <!-- the container recognize this as a Configuration and adds it's beans 
         to the container -->
    <bean class="com.package.DaoTestConfiguration"/>
</beans>

For more information, have a look at http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/beans.html#beans-java

share|improve this answer

Posting a few examples based on the above approaches

With Spring:

@ContextConfiguration(locations = { "classpath:context.xml" })
@RunWith(SpringJUnit4ClassRunner.class)
public class TestServiceTest {
    @InjectMocks
    private TestService testService;
    @Mock
    private TestService2 testService2;
}

Without Spring:

@RunWith(MockitoJUnitRunner.class)
public class TestServiceTest {
    @InjectMocks
    private TestService testService = new TestServiceImpl();
    @Mock
    private TestService2 testService2;
}
share|improve this answer

I found a similar answer as teabot to create a MockFactory that provides the mocks. I used the following example to create the mock factory (since the link to narkisr are dead): http://hg.randompage.org/java/src/407e78aa08a0/projects/bookmarking/backend/spring/src/test/java/org/randompage/bookmarking/backend/testUtils/MocksFactory.java

<bean id="someFacade" class="nl.package.test.MockFactory">
    <property name="type" value="nl.package.someFacade"/>
</bean>

This also helps to prevent that Spring wants to resolve the injections from the mocked bean.

share|improve this answer
<bean id="mockDaoFactory" name="dao" class="com.package.test.MocksFactory">
    <property name="type" value="com.package.Dao" />
</bean>

this ^ works perfectly well if declared first/early in the XML file. Mockito 1.9.0/Spring 3.0.5

share|improve this answer

Today I found out that a spring context where I declared a before the Mockito beans, was failing to load. After moving the AFTER the mocks, the app context was loaded successfully. Take care :)

share|improve this answer
There is something missing. 8-) You moved what after the mocks? – hstoerr Apr 27 '12 at 9:15

I could not get the mockito beans to be processed correctly until I listed them first in the config file. Not sure why.

share|improve this answer

Looks like the link to blog post you refer to in your answer has changed to http://narkisr.com/blog/2008/2647754885089732945

share|improve this answer

I have a very simple solution using Spring Java Config and Mockito:

@Configuration
public class TestConfig {

    @Mock BeanA beanA;
    @Mock BeanB beanB;

    public TestConfig() {
        MockitoAnnotations.initMocks(this); //This is a key
    }

    //You basically generate getters and add @Bean annotation everywhere
    @Bean
    public BeanA getBeanA() {
        return beanA;
    }

    @Bean
    public BeanB getBeanB() {
        return beanB;
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.