36

我有一个查找查询参数并返回布尔值的函数:

  public static Boolean getBooleanFromRequest(HttpServletRequest request, String key) {
        Boolean keyValue = false;
        if(request.getParameter(key) != null) {
            String value = request.getParameter(key);
            if(keyValue == null) {
                keyValue = false;
            }
            else {
                if(value.equalsIgnoreCase("true") || value.equalsIgnoreCase("1")) {
                    keyValue = true;
                }
            }
        }
        return keyValue;
    }

我的 pom.xml 中有 junit 和 easymock,我该如何模拟 HttpServletRequest ?

4

5 回答 5

24

使用一些模拟框架,例如MockitoJMock,它们具有此类对象的模拟能力。

在 Mockito 中,您可以像这样进行模拟:

 HttpServletRequest  mockedRequest = Mockito.mock(HttpServletRequest.class);

有关 Mockito 的详细信息,请参阅:我如何饮用它?在 Mockito 网站上。

在 JMock 中,您可以模拟如下:

 Mockery context = new Mockery();
 HttpServletRequest  mockedRequest = context.mock(HttpServletRequest.class);

关于jMock的详细信息,请参考:jMock - 入门

于 2012-10-18T01:55:20.040 回答
15

HttpServletRequest 与任何其他接口非常相似,因此您可以按照EasyMock 自述文件进行模拟

这是一个如何对 getBooleanFromRequest 方法进行单元测试的示例

// static import allows for more concise code (createMock etc.)
import static org.easymock.EasyMock.*;

// other imports omitted

public class MyServletMock
{
   @Test
   public void test1()
   {
      // Step 1 - create the mock object
      HttpServletRequest req = createMock(HttpServletRequest.class);

      // Step 2 - record the expected behavior

      // to test true, expect to be called with "param1" and if so return true
      // Note that the method under test calls getParameter twice (really
      // necessary?) so we must relax the restriction and program the mock
      // to allow this call either once or twice
      expect(req.getParameter("param1")).andReturn("true").times(1, 2);

      // program the mock to return false for param2
      expect(req.getParameter("param2")).andReturn("false").times(1, 2);

      // switch the mock to replay state
      replay(req);

      // now run the test.  The method will call getParameter twice
      Boolean bool1 = getBooleanFromRequest(req, "param1");
      assertTrue(bool1);
      Boolean bool2 = getBooleanFromRequest(req, "param2");
      assertFalse(bool2);

      // call one more time to watch test fail, just to liven things up
      // call was not programmed in the record phase so test blows up
      getBooleanFromRequest(req, "bogus");

   }
}
于 2012-10-18T02:59:10.640 回答
11

这是一个旧线程......但问题仍然相关。

另一个不错的选择是 Spring 框架中的 MockServiceRequest 和 MockServiceResponse:

http://docs.spring.io/spring/docs/2.0.x/api/org/springframework/mock/web/package-summary.html

于 2014-07-23T04:55:45.373 回答
2

我不了解easymock,但Johannes Link 的“Java 中的单元测试:测试如何驱动代码”一书中包含了如何使用他构建的虚拟对象库来测试Servlet 的解释。

这本书的配套网站现在已经消失了(出版公司发生了一些变化......)但原始德国出版物的配套网站仍然存在。从中,您可以下载所有虚拟对象的定义

于 2012-10-18T01:59:44.773 回答
0

看看 Mockrunner:http ://mockrunner.sourceforge.net/

它有很多易于使用的 Java EE 模拟,包括 HttpServletRequest 和 HttpServletResponse。

于 2012-11-27T21:10:05.760 回答