3

wicketframework を使用すると、wickettester を使用して最後にレンダリングされたページを見ることができます。私の wicketapplication が、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

したがって、runtimeexecoptions -> 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 を読み取らないため、このエラーをマップする方法がわかりません。これをテストする方法に関するヒントはありますか?

4

1 に答える 1

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);

誰かを助けることを願っています

于 2014-01-31T10:09:37.960 に答える