此代码使用Spring 3.1和junit4以及spring-test 3.1。我想使用和加载junit3.8.x来转换此代码。这是由于遗留构建系统。我怎样才能做到这一点?弹簧的大多数在线文档都围绕下面的方法。我需要能够加载弹簧类'。在这种情况下,我有一个XML文件,rest-servlet.xml
和'服务'类被注释。我希望能够在每次测试之前加载rest-servlet spring配置文件并设置spring。
<?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:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="com.ca.services.rest.*,com.ca.services.test.*" />
<mvc:annotation-driven />
</beans>
TestActivityLog:
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.ApplicationContext;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.ca.services.rest.activity.services.ActivityDaoRepository;
import com.ca.services.rest.activity.services.ActivityService;
import com.ca.services.rest.activity.services.impl.ActivityServiceImpl;
import com.ca.services.test.mock.MockActivityDaoRepository;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"file:**/WEB-INF/rest-servlet.xml"})
public class TestActivityLog {
@Autowired
@Qualifier("mockActivityDaoRepository")
private MockActivityDaoRepository repository;
@Autowired
private ApplicationContext applicationContext;
@Autowired
public TestActivityLog() {
super();
}
@Before
public void setup() throws Exception {
}
@Test
public void testOne() {
Assert.assertEquals("abc", "abc");
}
public void testService2() {
final ActivityDaoRepository repo = repository;
final String chk1 = "[POL.ActivityAPI:as1.0.0]";
final String chk2 = String.valueOf(repo.getVersion());
Assert.assertEquals(chk1, chk2);
}
public void testService3() {
final ActivityService service = new ActivityServiceImpl(repository);
}
}
答案 0 :(得分:6)
这可以通过模拟SpringJUnitRunner
来实现。此类从提供的配置位置(在类路径中)加载应用程序上下文,并在测试用例中自动装配字段。
假设我们有一个想要测试的控制器bean(在beans.xml中定义)。
public class Controller {
public String message() {
return "Hello";
}
}
测试用例:
public class Spring38TestCase extends TestCase {
private Controller controller;
private ApplicationContext context;
@Override
protected void setUp() throws Exception {
//Initializing spring application context.
context = new ClassPathXmlApplicationContext("beans.xml");
//Setting fields in test case explicitly in case of auto wiring
controller = context.getBean(Controller.class);
}
public void testController() {
assertEquals("Hello", controller.message());
}
}
答案 1 :(得分:0)
对于在Spring中使用JUnit 3.8,可以使用以下模板编写测试用例。 (见http://docs.spring.io/autorepo/docs/spring/3.0.x/reference/testing.html)
public class MyServiceTestCase
extends AbstractDependencyInjectionSpringContextTests {
private myService MyService;
@Test
public void testAddService() {
// a test case
}
/**
* The spring context configuration
*/
@Override
protected String[] getConfigLocations() {
return new String[] { "rest-servlet.xml" };
}
}