java - 如何模拟 HttpServletRequest 和 HttpServletResponse 对象?

标签 java servlets mockito

我有一个简单的 servlet。他转发到 jsp 页面。但是,当我在测试中为 HttpServletRequestHttpServletResponse 使用模拟对象而不是原始对象时,我得到了 NullPointerException

public class SimpleServlet extends HttpServlet {
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        req.getRequestDispatcher("WEB-INF/views/AdminMenu.jsp")
                .forward(req, resp); // In this place I get NPE (16th string.)
    }
}

这是我创建 HttpServletRequestHttpServletResponse 对象并将它们发送到 doPost 方法的测试:

@Test
public void test() throws ServletException, IOException {

    final HttpServletRequest req = mock(HttpServletRequest.class);
    final HttpServletResponse resp = mock(HttpServletResponse.class);


    final SimpleServlet simpleServlet = new SimpleServlet();

    simpleServlet.doPost(req, resp);

}

这是我运行文本后的日志:

java.lang.NullPointerException
    at ru.pravvich.servlets.SimpleServlet.doPost(SimpleServlet.java:16)
    at ru.pravvich.servlets.SimpleServletTest.test(SimpleServletTest.java:28)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
    at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:117)
    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:42)
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:262)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:84)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)

什么原因?帮我解决这个问题。谢谢。

最佳答案

模拟 req.getRequestDispatcher("WEB-INF/views/AdminMenu.jsp") 的调用以避免 NullPointerException

关于java - 如何模拟 HttpServletRequest 和 HttpServletResponse 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44652424/

相关文章:

java - 是否可以从 Servlet 填充下拉列表(在 HTML/JSP 中)?

java - 将Servlet中的数据推送到网页

Scala 测试 Mailer.sendEmailClientSuspended

java - Mockito 当剩余调用参数传入为 JSON 时返回 null

java - Hibernate - 未能延迟初始化角色集合 : could not initialize proxy - no Session

java - 我需要了解如何从数据库中获取唯一的随机行

Java数据结构建议

java - 迭代从 JSP 上的 servlet 发送的 ArrayList?

java - 使用 Apache-cxf/jax-rs 将对象传递给休息服务有什么好的来源吗?寻求帮助

java - mockito.when 返回 null 值