如何模拟 FacesContext - getRequestParameterMap

发布于 2024-12-26 02:12:41 字数 316 浏览 2 评论 0原文

我有一个类,我使用 getRequestParameterMap 来检索一些数据,如下所示:

FacesContext fc = FacesContext.getCurrentInstance();
String oidValue = fc.getExternalContext.getRequestParameterMap().get("oidValue");

我需要创建一些 Junit 测试,因为涉及一些条件,所以我正在寻找某种方法来模拟值:

getRequestParameterMap()

I have a class that I use a getRequestParameterMap to retrieve some data, like this:

FacesContext fc = FacesContext.getCurrentInstance();
String oidValue = fc.getExternalContext.getRequestParameterMap().get("oidValue");

And I need to create some Junit tests because there is some conditionals involved, so what I'm looking for is some way to mock values on:

getRequestParameterMap()

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

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

发布评论

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

评论(1

菊凝晚露 2025-01-02 02:12:41

通常,您会为 FacesContext 使用一个模拟对象,并在调用 getExternalContext() 时为ExternalContext 返回另一个模拟对象,以便您最终可以返回一个包含此测试所需值的映射。然而

这里的问题是FacesContext和ExternalContext都是抽象类而不是接口,这导致easymock无法模拟它们。

然而,有PowerMock,它可以做一些增强的事情,其中​​包括调整现有类的字节码,它应该能够完成您在这里尝试做的事情。

Usually you would use a mock-object for the FacesContext and return another mock-object for ExternalContext when getExternalContext() is called so that you finally can return a map with the values necessary for this test. However

The problem here is that FacesContext and ExternalContext both are abstract classes instead of interfaces, which causes easymock to fail to mock these.

However there is PowerMock, which can do some enhanced things, among others adjust bytecode of existing classes, it should be able to do what you are trying to do here.

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