Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Bartel2015-04-23 04:25:34 +0000
committerJan Bartel2015-04-23 04:27:11 +0000
commit184c4d4af830a95d93f5de3fd57139c96db5be1a (patch)
treedd27f75a073309b232d60f04202f0a46197b7d55 /tests/test-sessions/test-sessions-common
parentf7adc1aa5f569590284bfaba561472a9a5e3094f (diff)
downloadorg.eclipse.jetty.project-184c4d4af830a95d93f5de3fd57139c96db5be1a.tar.gz
org.eclipse.jetty.project-184c4d4af830a95d93f5de3fd57139c96db5be1a.tar.xz
org.eclipse.jetty.project-184c4d4af830a95d93f5de3fd57139c96db5be1a.zip
464564 NoSql sessions created inside a forward not persisted correctly
Diffstat (limited to 'tests/test-sessions/test-sessions-common')
-rw-r--r--tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractForwardedSessionTest.java183
1 files changed, 183 insertions, 0 deletions
diff --git a/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractForwardedSessionTest.java b/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractForwardedSessionTest.java
new file mode 100644
index 0000000000..e5e6c6ba7a
--- /dev/null
+++ b/tests/test-sessions/test-sessions-common/src/main/java/org/eclipse/jetty/server/session/AbstractForwardedSessionTest.java
@@ -0,0 +1,183 @@
+//
+// ========================================================================
+// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd.
+// ------------------------------------------------------------------------
+// All rights reserved. This program and the accompanying materials
+// are made available under the terms of the Eclipse Public License v1.0
+// and Apache License v2.0 which accompanies this distribution.
+//
+// The Eclipse Public License is available at
+// http://www.eclipse.org/legal/epl-v10.html
+//
+// The Apache License v2.0 is available at
+// http://www.opensource.org/licenses/apache2.0.php
+//
+// You may elect to redistribute this code under either of these licenses.
+// ========================================================================
+//
+
+package org.eclipse.jetty.server.session;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
+
+import java.io.IOException;
+
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import javax.servlet.http.HttpSession;
+
+import org.eclipse.jetty.client.HttpClient;
+import org.eclipse.jetty.client.api.ContentResponse;
+import org.eclipse.jetty.client.api.Request;
+import org.eclipse.jetty.servlet.ServletContextHandler;
+import org.junit.Test;
+
+
+/**
+ * AbstractForwardedSessionTest
+ *
+ * Test that creating a session inside a forward on the same context works, and that
+ * attributes set after the forward returns are preserved.
+ *
+ * This test requires that the sessions will be persisted, as the server is stopped and
+ * then restarted in order to check that all the attributes were saved.
+ */
+public abstract class AbstractForwardedSessionTest
+{
+
+
+ public abstract AbstractTestServer createServer(int port);
+
+
+ @Test
+ public void testSessionCreateInForward() throws Exception
+ {
+ AbstractTestServer testServer = createServer(0);
+ ServletContextHandler testServletContextHandler = testServer.addContext("/context");
+ testServletContextHandler.addServlet(Servlet1.class, "/one");
+ testServletContextHandler.addServlet(Servlet2.class, "/two");
+ testServletContextHandler.addServlet(Servlet3.class, "/three");
+ testServletContextHandler.addServlet(Servlet4.class, "/four");
+
+
+
+ try
+ {
+ testServer.start();
+ int serverPort=testServer.getPort();
+ HttpClient client = new HttpClient();
+ client.start();
+ try
+ {
+ //make a request to the first servlet, which will forward it to other servlets
+ ContentResponse response = client.GET("http://localhost:" + serverPort + "/context/one");
+ assertEquals(HttpServletResponse.SC_OK, response.getStatus());
+ String sessionCookie = response.getHeaders().get("Set-Cookie");
+ assertTrue(sessionCookie != null);
+ // Mangle the cookie, replacing Path with $Path, etc.
+ sessionCookie = sessionCookie.replaceFirst("(\\W)(P|p)ath=", "$1\\$Path=");
+
+ //test that the session was created, and that it contains the attributes from servlet3 and servlet1
+
+ //stop the server, to make sure any session persistence has happened
+ testServer.stop();
+
+ //restart
+ testServer.start();
+ serverPort = testServer.getPort();
+
+ //Make a fresh request
+ Request request = client.newRequest("http://localhost:" + serverPort + "/context/four");
+ request.header("Cookie", sessionCookie);
+ response = request.send();
+ assertEquals(HttpServletResponse.SC_OK, response.getStatus());
+
+ }
+ finally
+ {
+ client.stop();
+ }
+ }
+ finally
+ {
+ testServer.stop();
+ }
+
+ }
+
+
+ public static class Servlet1 extends HttpServlet
+ {
+ @Override
+ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
+ {
+ //Don't create a session, just forward to another session in the same context
+ assertNull(request.getSession(false));
+
+ //The session will be created by the other servlet, so will exist as this dispatch returns
+ RequestDispatcher dispatcher = request.getServletContext().getRequestDispatcher("/two");
+ dispatcher.forward(request, response);
+
+ HttpSession sess = request.getSession(false);
+ assertNotNull(sess);
+ sess.setAttribute("servlet1", "servlet1");
+ }
+ }
+
+ public static class Servlet2 extends HttpServlet
+ {
+ @Override
+ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
+ {
+ //forward to yet another servlet to do the creation
+ assertNull(request.getSession(false));
+
+ RequestDispatcher dispatcher = request.getServletContext().getRequestDispatcher("/three");
+ dispatcher.forward(request, response);
+
+ //the session should exist after the forward
+ HttpSession sess = request.getSession(false);
+ assertNotNull(sess);
+ }
+ }
+
+
+
+ public static class Servlet3 extends HttpServlet
+ {
+ @Override
+ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
+ {
+ //No session yet
+ assertNull(request.getSession(false));
+
+ //Create it
+ HttpSession session = request.getSession();
+ assertNotNull(session);
+
+ //Set an attribute on it
+ session.setAttribute("servlet3", "servlet3");
+ }
+ }
+
+
+ public static class Servlet4 extends HttpServlet
+ {
+ @Override
+ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
+ {
+ //Check that the session contains attributes set during and after the session forward
+ HttpSession session = request.getSession();
+ assertNotNull(session);
+ assertNotNull(session.getAttribute("servlet1"));
+ assertNotNull(session.getAttribute("servlet3"));
+ }
+ }
+
+}

Back to the top