使用wicketframework,可以使用wickettester并查看lastrederedpage。 我想测试我的wicketapplication是否将用户重定向到我的自定义ErrorPage on runtimeexceptions和缺少资源(404)。
对于第一种情况,我将重定向设置为我的自定义errorpage并验证它是否有效。基本上,
“settings.setInternalErrorPage(ErrorPage.class);
”
并且基本上具有单元测试:
tester = new WicketTester(webApplication);
APage aPage = new APage();
tester.startPage(aPage);
tester.assertRenderedPage(APage.class);
tester.setExposeExceptions(false);
//Page rendered ok, now throw an exception at a button submit
when(aPage.getServiceFacade()).thenThrow(new RuntimeException("DummyException"));
tester.submitForm("searchPanel:searchForm");
tester.assertRenderedPage(ErrorPage.class);//YES, we got redirected to deploymode
所以测试runtimeexecptions - > errorpage工作正常。 现在来测试缺少的资源。 基本上我用“
设置web.xml <error-page>
<error-code>404</error-code>
<location>/error404</location>
</error-page>
然后我也安装在检票口。 这适用于实际使用。但是在测试的时候......我试过了..
MockHttpServletRequest request = tester.getRequest();
String contextPath = request.getContextPath();
String filterPrefix = request.getFilterPrefix();
tester.setExposeExceptions(false);
tester.executeUrl(contextPath + "/" + filterPrefix + "/"+ "startpage" + "/MyStrangeurlToNothing);
tester.assertRenderedPage(ErrorPage.class);
但是,测试对象的lastrenderedpage在这种情况下不起作用并且给我null。我想WicketTester不会读取web.xml,因此,不知道如何映射此错误。关于如何测试这个的任何提示?
答案 0 :(得分:4)
我知道这已经很老了,但万一有人有同样的问题(就像我一样):
我在这里找到了解决方案:
https://issues.apache.org/jira/browse/WICKET-4104
在我的案例中翻译成:
WicketTester tester = ...; // set up tester
tester.setFollowRedirects(false); // important
tester.startpage(...);
// or
tester.executeUrl(...);
// then test to see if there was a redirect
assert tester.getLastResponse().getRedirectLocation() != null;
assert aTester.getLastResponse().getRedirectLocation().endsWith("....");
// then manually redirect to that page and test its the page you expected
Url url = Url.parse(aTester.getLastResponse().getRedirectLocation());
aTester.executeUrl(url.getPath().substring(1)); // the substring chops off and leading /
aTester.assertRenderedPage(YourRedirectPage.class);
希望能帮到某人