java mockito respose_如何使用Mockito部分模拟HttpServletRequest

在单元测试中,遇到需要部分模拟HttpServletRequest的情况,特别是当请求对象既是输入又是输出时。问题在于Mockito的mock对象不会保留setAttribute()的设置,导致getAttribute()返回null。测试代码创建了一个mock的HttpServletRequest和HttpServletResponse,然后通过when()方法设置了getAttribute()的返回值。但在实际场景中,由于缺少对request.setAttribute()的模拟,导致insertSumIntoDB()接收到null。这是一个关于如何在Mockito中实现部分模拟的挑战。
摘要由CSDN通过智能技术生成

我嘲笑一个HttpServletRequest,在servlet调用中有新的值在请求中设置,因为使用相同的请求我们正在请求某些jsp的请求,因此request对象被用作servlet的输入对象以及下一页的输出。如何使用Mockito部分模拟HttpServletRequest

我嘲笑所有输入参数,但对于所有了request.setAttribute(),我的代码是什么都不做,因为它是一个嘲弄类,说如果我有

request.setAttribute(a,"10")

System.out.println("a = " + request.getAttribute("a"));

我得到空因为我还没有给对于Request.getAttribute(“a”)来说任何行为都是显而易见的,我不能,它是我对下一页的响应,所以解释我需要2行为,因此我的请求对象部分模仿,并且我无法窥探或做任何部分嘲弄到目前为止。有任何想法吗?

代码:

//Testcase

Myservlet.java

public void doPost(request,response)

{

String a = request.getAttribute("a");

String b = request.getAttribute("b");

int sum = Integer.parseInt(a) + Integer.parseInt(b);

request.setAttribute("sum",sum);

//well in this example i can use sum what i calculated but in real senario i can't , i have to use request.getAttribute("sum")

insertSumIntoDB(request.getAttribute("sum"));

}

}

//testMyservlet.java

@test

public void testServlet()

{

HttpServletRequest request = mock(HttpServletRequest.class);

HttpServletResponse response = mock(HttpServletResponse.class);

when(request.getAttribute(a)).thenReturn("10");

when(request.getAttribute(b)).thenReturn("20");

new Myservlet(request,response);

}

2014-03-28

Vivek

+0

你能告诉你的嘲讽的尝试? –

+0

我改变了职位。请参阅insertSumIntoDB(request.getAttribute(“sum”))这实际上是insertSumintoDb(null),因为我没有给request.getAttribute(“sum”)的行为; –

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值