Is this the same problem as I posted before with the title "Raw urls
using WicketTester 1.3.0" ? Appears so on the surface. I will try the
workaround.

Let me know about the jira id, I am eager to try to contribute as soon
as this has been confirmed to be a bug instead of just a stupid
newuser ;)

**
Martin

2008/1/18, Johan Compagner <[EMAIL PROTECTED]>:
> please make a jira issue for this
>
> On 1/18/08, Lauri Piispanen - Conmio Ltd <[EMAIL PROTECTED]> wrote:
> >
> > Hi all,
> >
> > I'm having problems trying to test interception pages with WicketTester
> > in Wicket 1.3. For some reason my application homepage is used instead
> > of the one that threw the RestartResponseAtInterceptPageException. I
> > have the same code running fine in the servlet environment, so I think
> > the issue is most likely with WicketTester. Either that, or it's
> > actually due to my erroneous use of it. Here's my test case:
> >
> >    public void testContinueToOriginalDestination() throws Exception {
> >        tester.startPage(TargetPage.class);
> >        tester.assertRenderedPage(InterceptPage.class);
> >
> >        tester.submitForm("form");
> >        tester.assertRenderedPage(TargetPage.class); // This line fails,
> > as the rendered page is actually the application home page.
> >    }
> >
> > TargetPage is set to throw a RestartResponseAtInterceptException at
> > first request:
> >
> >    private boolean firstTime = true;
> >
> >    public TargetPage() {
> >        if (firstTime) {
> >            firstTime = false;
> >            throw new
> > RestartResponseAtInterceptPageException(InterceptPage.class);
> >        }
> >    }
> >
> > My intercept page simply has a form with a
> > continueToOriginalDestination() when submit:
> >
> >    public InterceptPage() {
> >        add(new Form("form") {
> >            @Override
> >            protected void onSubmit() {
> >                continueToOriginalDestination();
> >            }
> >
> >        });
> >    }
> >
> > Can anyone help me with this, or have I encountered some bug with the
> > tester? I have test cases that reproduce the issue.
> >
> > Sincerely,
> >
> > --
> >
> > Lauri Piispanen
> >
> > +358 45 630 2546
> > Senior Product Architect
> > Conmio Ltd
> > http://www.conmio.com
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to