无法在junit测试中从Application Context加载bean

时间:2014-05-12 15:37:53

标签: java spring spring-mvc junit mockito

我正在尝试为我的应用实施一组测试。在这种情况下,我有一些mybatis映射器,其bean在我的applicationContext.xml中定义。例如:

<bean id="usersMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">
    <property name="mapperInterface" value="com.myapp.dao.UserMapper" />
    <property name="sqlSessionFactory" ref="sqlSessionFactory" />
</bean> 

我一直在寻找几个小时如何正确实施junit测试,因为一些互联网帖子已被弃用或不是最新的。这实际上是我的junit课程:

@ContextConfiguration(locations = {"classpath:*applicationContext.xml"})
@RunWith(SpringJUnit4ClassRunner.class)
public class GroupTest {


    @Autowired
    ApplicationContext context;

    @Test
    public void testCreateGroup() throws SQLException {
        UserMapper um = (UserMapper)context.getBean("usersMapper");  
    }
}

启动期间没有错误。当我尝试获取bean时,usersMapper返回一个异常(没有bean定义..)也许,是不是正在加载正确的applicationContext?

我也试过Mockito没有成功。我读过它确实很酷,但它是否能够加载上下文以及Spring?当我从UserMapper调用getUsers方法时,它返回null。这是我的实施:

@ContextConfiguration(locations = {"classpath:*applicationContext.xml"})
@RunWith(SpringJUnit4ClassRunner.class)
public class GroupTest {


    @Mock
    private UserMapper userMapper;


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


    @Test
    public void testCreateGroup() throws SQLException {
        userMapper.getUsers(); 
    }
}

对于记录...我的applicationContext.xml放在/src/main/webapp/WEB-INF/applicationContext.xml中 希望你能以正确的方式指导我。谢谢

Edit1:添加了applicationContext.xml和context.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:p="http://www.springframework.org/schema/p"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">

    <bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
        <property name="jndiName" value="java:comp/env/jdbc/adminDB"/>
    </bean>

    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"/>
    </bean>

    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="configLocation" value="/WEB-INF/mybatis-config.xml" /> 
    </bean> 

    <bean id="usersMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">
        <property name="mapperInterface" value="es.unican.meteo.dao.UserMapper" />
        <property name="sqlSessionFactory" ref="sqlSessionFactory" />
    </bean> 

</beans>

似乎Peter Hart解决方案加载了applicationContext.xml但是出现了一个新问题。我需要在我的应用程序中使用jndi资源(applicationContext.xml中包含的引用)。在测试环境中这是不可能的吗? 例外情况如下:

Caused by: javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file:  java.naming.factory.initial 

这是我的context.xml

<Context>
    <Resource name="jdbc/adminDB" auth="Container" type="javax.sql.DataSource"
             maxActive="20" maxIdle="10" username="***" password="***"
             driverClassName="org.apache.derby.jdbc.ClientDriver"
             url="jdbc:***"/>
</Context>

3 个答案:

答案 0 :(得分:1)

问题在于您已经请求了类路径资源,并且WEB-INF/applicationContext.xml可能不在类路径上(通常不会)。

您可以尝试将applicationContext.xml移动到类路径上的某个位置。我猜你正在使用maven,在这种情况下,这通常是src/main/resourcessrc/test/resources(如果这是特定于特定测试,而不是&#39}。真实的应用程序上下文文件)。我也会修复你的@ContextConfiguration @ohiocowboy建议(假设你把它直接放在那个目录中,因为如果你明确说明这个位置,事情通常会更好。)

如果您的应用程序上下文绝对需要位于WEB-INF/applicationContext.xml,您可以尝试使用file:src/main/webapp/WEB-INF/applicationContext.xml。如果您使用mvn test从项目的基本目录运行,它应该可以工作,它也可能来自eclipse测试运行器(不知道Idea或NetBeans,但我的猜测是它可能有效)。

答案 1 :(得分:0)

您的应用程序上下文未正确加载。 @ContextConfiguration注释的locations属性应为"classpath:main/webapp/WEB-INF/applicationContext.xml""classpath:**/applicationContext.xml""classpath*:applicationContext.xml"。运行测试时,未部署应用程序,因此WEB-INF不会在类路径中(除非您自己将其添加到测试类路径中)。

使用模拟对象时,需要为要调用的方法提供模拟实现。 getUsers()方法返回null,因为您尚未设置所需的结果。您可以在http://docs.mockito.googlecode.com/hg/org/mockito/Mockito.html查看mockito网站上的示例。

答案 2 :(得分:0)

@ContextConfiguration(locations = {"classpath:/applicationContext.xml"})

UPDATE 实际上,这并不是因为。 applicationContext.xml不在类路径上。需要将其移动到WEB-INF / classes目录中。