You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2010/12/02 18:03:50 UTC

svn commit: r1041456 - /wicket/trunk/wicket/src/test/java/org/apache/wicket/util/tester/WicketTesterSessionInvalidateTest.java

Author: mgrigorov
Date: Thu Dec  2 17:03:50 2010
New Revision: 1041456

URL: http://svn.apache.org/viewvc?rev=1041456&view=rev
Log:
WICKET-3212 WicketTester can't create new sessions

Add unit test for session invalidation with WicketTester

Added:
    wicket/trunk/wicket/src/test/java/org/apache/wicket/util/tester/WicketTesterSessionInvalidateTest.java   (with props)

Added: wicket/trunk/wicket/src/test/java/org/apache/wicket/util/tester/WicketTesterSessionInvalidateTest.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket/src/test/java/org/apache/wicket/util/tester/WicketTesterSessionInvalidateTest.java?rev=1041456&view=auto
==============================================================================
--- wicket/trunk/wicket/src/test/java/org/apache/wicket/util/tester/WicketTesterSessionInvalidateTest.java (added)
+++ wicket/trunk/wicket/src/test/java/org/apache/wicket/util/tester/WicketTesterSessionInvalidateTest.java Thu Dec  2 17:03:50 2010
@@ -0,0 +1,82 @@
+/*
+ * 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.util.tester;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNull;
+
+import org.apache.wicket.MarkupContainer;
+import org.apache.wicket.markup.IMarkupResourceStreamProvider;
+import org.apache.wicket.markup.html.WebPage;
+import org.apache.wicket.markup.html.link.Link;
+import org.apache.wicket.request.mapper.parameter.PageParameters;
+import org.apache.wicket.util.resource.IResourceStream;
+import org.apache.wicket.util.resource.StringResourceStream;
+import org.junit.Test;
+
+public class WicketTesterSessionInvalidateTest
+{
+
+	/**
+	 * https://issues.apache.org/jira/browse/WICKET-3212
+	 */
+	@Test
+	public void sessionInvalidate()
+	{
+		WicketTester tester = new WicketTester();
+
+		tester.startPage(MyPage.class);
+
+		assertNull(tester.getSession().getStyle());
+
+		tester.getSession().setStyle("style1");
+
+		assertEquals("style1", tester.getSession().getStyle());
+
+		// invalidate the session
+		tester.clickLink("link");
+
+		assertNull(tester.getSession().getStyle());
+	}
+
+	public static class MyPage extends WebPage implements IMarkupResourceStreamProvider
+	{
+
+		public MyPage(PageParameters pageParameters)
+		{
+			super(pageParameters);
+
+			add(new Link<Void>("link")
+			{
+
+				@Override
+				public void onClick()
+				{
+					getSession().invalidate();
+				}
+
+			});
+		}
+
+		public IResourceStream getMarkupResourceStream(MarkupContainer container,
+			Class<?> containerClass)
+		{
+			return new StringResourceStream(
+				"<html><body><a wicket:id='link'>link</a></body></html>");
+		}
+	}
+}

Propchange: wicket/trunk/wicket/src/test/java/org/apache/wicket/util/tester/WicketTesterSessionInvalidateTest.java
------------------------------------------------------------------------------
    svn:eol-style = native