2017-06-20 13 views
0

私は単純なサーブレットを持っています。彼はjspページに転送します。しかし私が模擬オブジェクトをHttpServletRequestHttpServletResponseの代わりに私のテストで元のオブジェクトを使用すると、私はNullPointerExceptionを得ます。HttpServletRequestとHttpServletResponseオブジェクトを模擬する方法は?

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) 

?この問題を解決するのに役立ちます。ありがとうございました。

+1

次を追加する必要があり、あなたは() '' getRequestDispatcherを提供する必要があります。デフォルトではNULLを返します。戻り値を設定しない限り、デフォルトのモックごとの –

+2

は 'null'を返します。つまり、 'getRequestDispatcher()'メソッドが呼び出されたときに何かを返すように 'HttpServletRequest'モックを設定する必要があります。 –

+0

はい!ありがとうございました!それは仕事です! – Pavel

答えて

3

を避けるためにreq.getRequestDispatcher("WEB-INF/views/AdminMenu.jsp")の呼び出しをモックしてください。

3

あなたはあなたが要求を嘲笑するので

RequestDispatcher rd = mock(RequestDispatcher.class); 
when(req.getRequestDispatcher(eq("WEB-INF/views/AdminMenu.jsp"))).thenReturn(rd); 
関連する問題