View Javadoc

1   // ========================================================================
2   // Copyright 2004-2010 Mort Bay Consulting Pty. Ltd.
3   // ------------------------------------------------------------------------
4   // All rights reserved. This program and the accompanying materials
5   // are made available under the terms of the Eclipse Public License v1.0
6   // and Apache License v2.0 which accompanies this distribution.
7   // The Eclipse Public License is available at
8   // http://www.eclipse.org/legal/epl-v10.html
9   // The Apache License v2.0 is available at
10  // http://www.opensource.org/licenses/apache2.0.php
11  // You may elect to redistribute this code under either of these licenses.
12  // ========================================================================
13  
14  package org.eclipse.jetty.server.session;
15  
16  import java.io.IOException;
17  import java.util.Random;
18  import java.util.concurrent.TimeUnit;
19  
20  import javax.servlet.ServletException;
21  import javax.servlet.http.HttpServlet;
22  import javax.servlet.http.HttpServletRequest;
23  import javax.servlet.http.HttpServletResponse;
24  import javax.servlet.http.HttpSession;
25  
26  import org.eclipse.jetty.client.ContentExchange;
27  import org.eclipse.jetty.client.HttpClient;
28  import org.eclipse.jetty.http.HttpMethods;
29  import org.junit.Test;
30  import static org.junit.Assert.assertEquals;
31  import static org.junit.Assert.assertTrue;
32  
33  /**
34   * AbstractOrphanedSessionTest
35   */
36  public abstract class AbstractOrphanedSessionTest
37  {
38  
39      public abstract AbstractTestServer createServer(int port, int max, int scavenge);
40  
41      /**
42       * If nodeA creates a session, and just afterwards crashes, it is the only node that knows about the session.
43       * We want to test that the session data is gone after scavenging.
44       */
45      @Test
46      public void testOrphanedSession() throws Exception
47      {
48          Random random = new Random(System.nanoTime());
49  
50          // Disable scavenging for the first server, so that we simulate its "crash".
51          String contextPath = "";
52          String servletMapping = "/server";
53          int inactivePeriod = 5;
54          AbstractTestServer server1 = createServer(0, inactivePeriod, -1);
55          server1.addContext(contextPath).addServlet(TestServlet.class, servletMapping);
56          server1.start();
57          int port1 = server1.getPort();
58          try
59          {
60              int scavengePeriod = 2;
61              AbstractTestServer server2 = createServer(0, inactivePeriod, scavengePeriod);
62              server2.addContext(contextPath).addServlet(TestServlet.class, servletMapping);
63              server2.start();
64              int port2 = server2.getPort();
65              try
66              {
67                  HttpClient client = new HttpClient();
68                  client.setConnectorType(HttpClient.CONNECTOR_SOCKET);
69                  client.start();
70                  try
71                  {
72                      // Connect to server1 to create a session and get its session cookie
73                      ContentExchange exchange1 = new ContentExchange(true);
74                      exchange1.setMethod(HttpMethods.GET);
75                      exchange1.setURL("http://localhost:" + port1 + contextPath + servletMapping + "?action=init");
76                      client.send(exchange1);
77                      exchange1.waitForDone();
78                      assertEquals(HttpServletResponse.SC_OK,exchange1.getResponseStatus());
79                      String sessionCookie = exchange1.getResponseFields().getStringField("Set-Cookie");
80                      assertTrue(sessionCookie != null);
81                      // Mangle the cookie, replacing Path with $Path, etc.
82                      sessionCookie = sessionCookie.replaceFirst("(\\W)(P|p)ath=", "$1\\$Path=");
83  
84                      // Wait for the session to expire.
85                      // The first node does not do any scavenging, but the session
86                      // must be removed by scavenging done in the other node.
87                      Thread.sleep(TimeUnit.SECONDS.toMillis(inactivePeriod + 2L * scavengePeriod));
88  
89                      System.err.println("FINISHED waiting for session to expire");
90                      // Perform one request to server2 to be sure that the session has been expired
91                      
92                      System.err.println("CHECKING NODE2");
93                      ContentExchange exchange2 = new ContentExchange(true);
94                      exchange2.setMethod(HttpMethods.GET);
95                      exchange2.setURL("http://localhost:" + port2 + contextPath + servletMapping + "?action=check");
96                      exchange2.getRequestFields().add("Cookie", sessionCookie);
97                      client.send(exchange2);
98                      exchange2.waitForDone();
99                      assertEquals(HttpServletResponse.SC_OK,exchange2.getResponseStatus());
100                 }
101                 finally
102                 {
103                     client.stop();
104                 }
105             }
106             finally
107             {
108                 server2.stop();
109             }
110         }
111         finally
112         {
113             server1.stop();
114         }
115     }
116 
117     public static class TestServlet extends HttpServlet
118     {
119         @Override
120         protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
121         {
122             String action = request.getParameter("action");
123             if ("init".equals(action))
124             {
125                 HttpSession session = request.getSession(true);
126                 session.setAttribute("A", "A");
127             }
128             else if ("check".equals(action))
129             {
130                 HttpSession session = request.getSession(false);
131                 assertTrue(session == null);
132             }
133         }
134     }
135 }