Mockito:捕获 HttpServletResponse#sendError()

发布于 2024-09-05 03:13:22 字数 148 浏览 2 评论 0原文

我可以使用 Mockito 捕获传递给 HttpServletResponse#sendError() 方法的内容吗?我不知道该怎么做。

Can I use Mockito to capture what was passed to the HttpServletResponse#sendError() method? I can't figure out how to do that.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

北斗星光 2024-09-12 03:13:22

您应该使用 Mockito 上的 verify 方法来执行此操作。通常,嘲笑 HttpResponse 并不是一种愉快的体验。

mockResponse = mock(HttpSR→);
//…
verify(mockResponse, times(1)).sendError(..);

作为 sendError 的参数,您可以传递mockito匹配器,它可以对您需要的参数进行任何检查。

You should use the verify method on Mockito to do this. Usually mocking HttpResponse isn't a pleasant experience though.

mockResponse = mock(HttpSR→);
//…
verify(mockResponse, times(1)).sendError(..);

As arguments to sendError you can then pass mockito matchers, which can do any check on the argument that you need.

杯别 2024-09-12 03:13:22

我认为发帖者想知道如何检索传递给该方法的参数。您可以使用:

// given
HttpServletResponse response = mock(HttpServletResponse.class); 
ArgumentCaptor<Integer> intArg = ArgumentCaptor.forClass(Integer.class);
ArgumentCaptor<String> stringArg = ArgumentCaptor.forClass(String.class);
doNothing().when(response).sendError(intArg.capture(), stringArg.capture());

// when (do your test here)
response.sendError(404, "Not found");

// then (do your assertions here, I just print out the values)
System.out.println(intArg.getValue());
System.err.println(stringArg.getValue());

I think the poster wanted to know, how to retrieve the arguments that were passed to the method. You can use:

// given
HttpServletResponse response = mock(HttpServletResponse.class); 
ArgumentCaptor<Integer> intArg = ArgumentCaptor.forClass(Integer.class);
ArgumentCaptor<String> stringArg = ArgumentCaptor.forClass(String.class);
doNothing().when(response).sendError(intArg.capture(), stringArg.capture());

// when (do your test here)
response.sendError(404, "Not found");

// then (do your assertions here, I just print out the values)
System.out.println(intArg.getValue());
System.err.println(stringArg.getValue());
jJeQQOZ5 2024-09-12 03:13:22

您可能需要查看Mockito 间谍 (第 13 章)。对于无法模拟的对象,有时可以检查其内部结构并以这种方式存根某些方法。

如果您可以发布一些示例代码,我可以看一下。

You might want to look at Mockito spies (chapter 13). For objects you can't mock, you can sometimes examine their internals and stub certain methods this way.

If you can post some sample code, I can take a look at it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文