使用jUnit和Spring测试servlet和过滤器

时间:2018-03-30 14:30:20

标签: java spring servlets model-view-controller integration-testing

我想使用jUnit进行一些集成测试来测试servlet上下文(自定义过滤器和servlet)。

方案如下: 浏览器向服务器发出请求以查找用户。首先,请求认为是AuthenticationFilter。当请求路径正确时,请转到LogginServlet,在那里我尝试找到有关某个用户的信息并将其返回给浏览器。

我尝试用MockMvc测试它。我可以添加过滤器到MockMvc(正确执行)但我不能添加servlet,在过滤后调用wolud。我尝试了不同的方法来使用春天管理的servlet,但是我无法以正确的方式配置它。

有人可以帮助我进行此集成测试吗?我只想在这种情况下过滤和servlet一起工作。

测试代码:

public class MockMvcSecurityIT {

@Autowired
private WebApplicationContext context;

@Before
public void initMocks(){
    this.mockMvc = MockMvcBuilders.webAppContextSetup(context).addFilter(new AuthenticationFilter(), "/*").build();
}

@Test
public void stage10_firstRequestForLoginPageShouldReturnProperPageWithoutCreateingSession () throws Exception {

     MvcResult mvcResult = mockMvc.perform(get("/login"))
                                    .andDo(print())
                                    .andExpect(status().isOk()).andReturn();

}

过滤类:

@WebFilter(
        urlPatterns = "/*",
        dispatcherTypes = {DispatcherType.REQUEST, DispatcherType.FORWARD}
)
public class AuthenticationFilter implements Filter {

    @Override
    public void init(FilterConfig config) throws ServletException {}

    @Override
    public void destroy() {}

    @Override
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
            throws IOException, ServletException {
        // business logic to verify request


    }
}

的Servlet

@WebServlet(
        name = "LoginServlet",
        urlPatterns = {"/login"}
)
public class LoginServlet extends HttpServlet {

    private AuthenticationProvider authenticationProvider;

    public LoginServlet() {}

    @Autowired
    public LoginServlet(AuthenticationProvider authenticationProvider) {
        this.authenticationProvider = authenticationProvider;
    }

    @Override
    public void init(ServletConfig config) throws ServletException {
        super.init(config);
        SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext (this);
    }

    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    }

    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        HttpSession session = request.getSession(false);

        // business logic to find and return user

    }

}

1 个答案:

答案 0 :(得分:0)

我发现Spring中的TestContext框架在后台使用了TestDispatcherServlet,我无法配置或注册其他Servlet。有一个问题链接:

https://jira.spring.io/browse/SPR-10199

我需要找到其他方法来测试我的servlet上下文。

编辑:

最好的解决方案似乎是EmbeddedTomcat和HttpUnit。