Mockito TooMany实际调用



我正在使用Junit和Mockito进行前向测试。这是PortalServletTest类的一部分:

@SuppressWarnings("serial")
@BeforeClass
public static void setUpTests() {
    when(request.getRequestDispatcher(Mockito.anyString())).thenReturn(rd);
    when(request.getSession()).thenReturn(httpSession);
    when(httpSession.getServletContext()).thenReturn(servletContext);
    when(servletContext.getAttribute(Constants.CONFIGURATION_MANAGER_ATTR)).thenReturn(configurationManager);
    when(configurationManager.getConfiguration()).thenReturn(configuration);
    List<List<String>> mandatoryHeaders = new ArrayList<List<String>>();
    mandatoryHeaders.add(new ArrayList<String>() {
        {
            add("HTTP_XXXX");
            add("http-xxxx");
        }
    });
    List<List<String>> optionalHeaders = new ArrayList<List<String>>();
    optionalHeaders.add(new ArrayList<String>() {
        {
            add("HTTP_YYYY");
            add("http-yyyy");
        }
    });
    when(configuration.getIdentificationHeaderFields()).thenReturn(mandatoryHeaders);
    when(configuration.getOptionalHeaderFields()).thenReturn(optionalHeaders);
}
@Test
public void testMissingHeadersRequest() throws IOException {
    when(request.getHeader(Mockito.anyString())).thenReturn(null);
    target().path("/portal").request().get();
    Mockito.verify(response, times(1)).sendError(HttpServletResponse.SC_USE_PROXY, PortalServlet.MISSING_HEADERS_MSG);
}
@Test
public void testSuccesfulRequest() throws IOException, ServletException {
    Mockito.doAnswer(new Answer<Object>() {
        public Object answer(InvocationOnMock invocation) {
            Object[] args = invocation.getArguments();
            String headerName = (String) args[0];
            return headerName;
        }
    }).when(request).getHeader(Mockito.anyString());
    target().path("/portal").request().get();
    verify(rd).forward(Mockito.any(ServletRequest.class), Mockito.any(ServletResponse.class));
}

PortalServlet代码:

RequestDispatcher rd = request.getRequestDispatcher("index.html");
        rd.forward(mutableRequest, response);

问题是在测试类时,我收到错误消息:

requestDispatcher.forward(, ); 通缉 1 次: -> at xxx.PortalServletTest.testSuccesfulRequest(PortalServletTest.java:140)

但是是2次。意外调用: -> at xxx.PortalServlet.addRequestHeaders(PortalServlet.java:144)

at xxx.PortalServletTest.testSuccesfulRequest(PortalServletTest.java:140)

如果我单独运行每个测试,它们就会通过。看起来每次测试都从PortalServlet向前计数两次。有什么建议如何解决这个问题吗?

提前谢谢。

除了@GhostCat写的内容之外,我认为您应该在测试前重置所有模拟对象:

@Before
public void before() {
   Mockito.reset(/*mocked objects to reset*/)
   // mock them here or in individual tests
}

您正在使用@BeforeClass来配置模拟对象。

在执行测试类中的@Tests之前,将调用该方法一次

您可以简单地尝试将其更改为@Before!

换句话说:在进行任何测试之前,您将模拟配置为允许一次调用。但是,您正在运行多个测试。如果您假设您的模拟都以相同的方式使用,您只需每次为每种@Test方法重新配置它们。

鉴于您的评论:这样做吗

verify(rd, times(2)).forward ...

工作/帮助?

如果您使用的是 Mockito BDD,请执行以下操作。

then(empRepository).should(times(3)).findById(emp.getId());

相关内容

  • 没有找到相关文章