Author: mgrigorov
Date: Wed Oct 5 12:53:47 2011
New Revision: 1179205
URL: http://svn.apache.org/viewvc?rev=1179205&view=rev
Log:
WICKET-2634 WicketTester doesn't handle multiple RestartResponseExceptions.
Added:
wicket/trunk/wicket-core/src/test/java/org/apache/wicket/RestartResponseExceptionTest.java
Added:
wicket/trunk/wicket-core/src/test/java/org/apache/wicket/RestartResponseExceptionTest.java
URL:
http://svn.apache.org/viewvc/wicket/trunk/wicket-core/src/test/java/org/apache/wicket/RestartResponseExceptionTest.java?rev=1179205&view=auto
==============================================================================
---
wicket/trunk/wicket-core/src/test/java/org/apache/wicket/RestartResponseExceptionTest.java
(added)
+++
wicket/trunk/wicket-core/src/test/java/org/apache/wicket/RestartResponseExceptionTest.java
Wed Oct 5 12:53:47 2011
@@ -0,0 +1,91 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.wicket;
+
+import org.apache.wicket.markup.IMarkupResourceStreamProvider;
+import org.apache.wicket.markup.html.WebPage;
+import org.apache.wicket.util.resource.AbstractStringResourceStream;
+import org.apache.wicket.util.resource.IResourceStream;
+import org.junit.Test;
+
+/**
+ * Tests for the usages of {@link RestartResponseException}
+ */
+public class RestartResponseExceptionTest extends WicketTestCase
+{
+ /**
+ * Tests that following several {@link RestartResponseException}s will
actually leave you at the
+ * final page.
+ *
+ * https://issues.apache.org/jira/browse/WICKET-2634
+ */
+ @Test
+ public void doubleRedirect()
+ {
+ tester.startPage(RestartPage1.class);
+ tester.assertRenderedPage(MyDummyPage.class);
+ }
+
+ /**
+ *
+ */
+ public static class RestartPage1 extends WebPage
+ {
+ /**
+ * Constructor.
+ */
+ public RestartPage1()
+ {
+ throw new
RestartResponseAtInterceptPageException(RestartPage2.class);
+ }
+ }
+
+ /**
+ * The final destination
+ */
+ public static class MyDummyPage extends WebPage implements
IMarkupResourceStreamProvider
+ {
+ public IResourceStream getMarkupResourceStream(MarkupContainer
container,
+ Class<?> containerClass)
+ {
+ return new AbstractStringResourceStream()
+ {
+ private static final long serialVersionUID = 1L;
+
+ @Override
+ protected String getString()
+ {
+ return "<html></html>";
+ }
+ };
+ }
+ }
+
+ /**
+ *
+ */
+ public static class RestartPage2 extends WebPage
+ {
+ /**
+ * Constructor.
+ */
+ public RestartPage2()
+ {
+ throw new RestartResponseException(MyDummyPage.class);
+ }
+ }
+}