如何 运行 在 spring mvc 中进行测试

how to run test in spring mvc

我正在尝试 运行 对我的控制器进行一些测试,但不知何故 @Autowire 注释不起作用。

这是我正在尝试做的事情:

@WebAppConfiguration
@ContextConfiguration("/WEB-INF/spring/app-config.xml")
public class ClientsTest {

    private Client client = new Cliente();

    @Test
    public void test() {

        BindingResult result = mock(BindingResult.class);
        ClientController clientController = new ClientController();
        ModelAndView model = clientController.regClient(client, result);
        Assert.assertEquals("success", model.getViewName());

    }
}

@Controller
public class ClientController {

    @Autowired private ClientService clientService;

    @RequestMapping(value="/regClient.html", method = RequestMethod.POST)
    public ModelAndView regClient(@ModelAttribute("client") @Valid Client client, BindingResult result){

        ModelAndView model = new ModelAndView();

        if(result.hasErrors())
        {
            model.setViewName("error");
        }
        else
        {
            model = clientService.regClient(client);
            model.setViewName("success");
        }

        return model;
    }
}

<?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">

       <!-- Scans the classpath of this application for @Components to deploy as beans -->
       <context:component-scan base-package="com.app.app_v2.web" />

       <!-- Configures the @Controller programming model -->
       <mvc:annotation-driven conversion-service="conversionService"/>

       <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
            <property name="basenames">
                <list>
                    <value>client</value>
                </list>
            </property>
       </bean>

       <bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
            <property name="formatters">
                <set>
                    <ref bean="clientFormatter"/>
                </set>
            </property>
       </bean>

       <bean id="clientFormatter" class="com.app.app_v2.spring.ClientFormatter"/>

       <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"></property>
            <property name="prefix" value="/WEB-INF/views/"></property>
            <property name="suffix" value=".jsp"></property>        
       </bean>

       <bean id="clientService" class="com.app.app_v2.services.ClientService"/>

</beans>

据我所知,clientService 为空,这就是我遇到异常的原因。 因为我不太了解运行宁测试所以我请求你的帮助。

关于 @Autowire 不工作的直接问题与您显式实例化 clientController 的事实有关,而不是通过 Spring 框架。如果你想让 class 成为一个 Spring bean,你需要让 Spring 框架管理它的生命周期,只有依赖注入才会启动,所有 spring 注释为 @Autowire 的 bean 将被注入。此外,测试应该是 运行 和 spring 运行ner SpringJUnit4ClassRunner

请注意,这不是必需的,因为您可以通过两种方式进行测试。通过模拟您的 clientService 来更多地进行单元测试,例如通过 EasyMock 或 Mockito。您当前发布的测试看起来更适合这种方式。要了解如何完成测试,请查看此 blog post

另一方面,您可以进行集成测试。自版本 3.2 Spring MVC 提供了测试模块,这应该是针对 Spring MVC 编写集成测试的真正方式。您可以关注一个很棒的 blog series 支持的源代码来学习如何做。