我正试图为我的应用程序实现一组测试。在这种情况下,我有一些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 and context.xml add:
<?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>
问题是您请求了一个类路径资源,而WEB-INF/applicationContext.xml
可能不在类路径上(通常不会)。
您可以尝试将applicationContext.xml移到类路径的某个位置。我猜您正在使用maven,在这种情况下,这通常是src/main/resources
或src/test/resources
(如果这特定于特定的测试,而不是"真正的"应用程序上下文文件)。我也会像@ohiocowboy建议的那样修复你的@ContextConfiguration
(假设你把它直接放在那个目录中,因为如果你明确了位置,事情通常会更好)。
如果您的应用程序上下文绝对需要在WEB-INF/applicationContext.xml
中,您可以尝试使用file:src/main/webapp/WEB-INF/applicationContext.xml
。如果您使用mvn test
从项目的基本目录运行,它应该可以工作,并且它也可能从eclipse测试运行器中工作(不知道idea或NetBeans,但我猜它可能会工作)。
应用程序上下文没有被正确加载。@ContextConfiguration
注释的locations属性应该是"classpath:main/webapp/WEB-INF/applicationContext.xml"
、"classpath:**/applicationContext.xml"
或"classpath*:applicationContext.xml"
。当您运行测试时,没有部署应用程序,因此WEB-INF将不在类路径中(除非您自己将其添加到测试类路径中)。
在使用模拟对象时,需要为将要调用的方法提供模拟实现。getUsers()
方法返回null,因为您没有设置所需的结果。您可以查看mockito网站上的示例http://docs.mockito.googlecode.com/hg/org/mockito/Mockito.html。
try
@ContextConfiguration(locations = {"classpath:/applicationContext.xml"})
更新实际上这也行不通,因为。applicationContext.xml不在类路径上。它需要移动到WEB-INF/classes目录