Search in sources :

Example 1 with SignIn2Application

use of org.apache.wicket.examples.authentication2.SignIn2Application in project wicket by apache.

the class Signin2Test method testSignIn2.

/**
 * Test page.
 */
@Test
public void testSignIn2() {
    WicketTester tester = new WicketTester(new SignIn2Application());
    try {
        tester.startPage(Home.class);
        tester.assertRenderedPage(SignIn2.class);
        FormTester formTester = tester.newFormTester("signInPanel:signInForm");
        formTester.setValue("username", "wicket");
        formTester.setValue("password", "wicket");
        formTester.setValue("rememberMeContainer:rememberMe", "true");
        formTester.submit();
        tester.assertRenderedPage(Home.class);
        // a) With wicket submitting a form will result in a temporary redirect,
        // with the redirect setting the Cookie.
        // b) jWebUnits Cookie test methods are all using the http response
        // object only
        // c) Like a browser, jwebunit will automatically handle the redirect
        // request
        // Hence dumpCookie will not print an Cookie and assertCookiePresent
        // will
        // fail.
        // The only mean available is to indirectly test the cookies. Indirectly
        // because
        // the screen flow depends on the cookies.
        // this.dumpCookies(System.err);
        // this.assertCookiePresent("signInPanel.signInForm.username");
        // this.assertCookiePresent("signInPanel.signInForm.password");
        Collection<Cookie> cookies = tester.getLastResponse().getCookies();
        for (Cookie cookie : cookies) {
            if ("signInPanel.signInForm.username".equals(cookie.getName())) {
                assertEquals("wicket", cookie.getValue());
            }
        }
        tester.startPage(SignOut.class);
        tester.assertRenderedPage(SignOut.class);
        tester.startPage(Home.class);
        tester.assertRenderedPage(SignIn2.class);
    } finally {
        tester.destroy();
    }
}
Also used : Cookie(javax.servlet.http.Cookie) FormTester(org.apache.wicket.util.tester.FormTester) WicketTester(org.apache.wicket.util.tester.WicketTester) SignIn2Application(org.apache.wicket.examples.authentication2.SignIn2Application) Test(org.junit.Test)

Aggregations

Cookie (javax.servlet.http.Cookie)1 SignIn2Application (org.apache.wicket.examples.authentication2.SignIn2Application)1 FormTester (org.apache.wicket.util.tester.FormTester)1 WicketTester (org.apache.wicket.util.tester.WicketTester)1 Test (org.junit.Test)1