/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.web.servlets;

import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletConfig;
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.jboss.test.web.util.Util;

/** A servlet that tests use of various servlet API calls that can be affected
 by the web container integration layer.
 
 @author  Scott.Stark@jboss.org
 @version $Revision: 1.3.2.1 $
 */
public class APIServlet extends HttpServlet
{
   protected void processRequest(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException
   {
      response.setContentType("text/html");
      PrintWriter out = response.getWriter();
      out.println("<html>");
      out.println("<head><title>APIServlet</title></head><body><pre>");
      String op = request.getParameter("op");
      if( op.equals("testGetRealPath") )
      {
         String realPath = testGetRealPath();
         out.println("testGetRealPath ok, realPath="+realPath+"\n");
      }
      else if( op.equals("testSessionListener") )
      {
         testSessionListener(request);
      }
      else
      {
         throw new ServletException("Unknown operation called, op="+op);
      }
      out.println("</pre></body></html>");
      out.close();
   }

   protected void doGet(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException
   {
      processRequest(request, response);
   }

   protected void doPost(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException
   {
      processRequest(request, response);
   }

   private String testGetRealPath()
      throws ServletException
   {
      String realPath = getServletContext().getRealPath("/");
      if( realPath == null )
         throw new ServletException("getServletContext().getRealPath(/) returned null");
      return realPath;
   }

   private void testSessionListener(HttpServletRequest request)
      throws ServletException
   {
      // Create/get the session
      HttpSession session = request.getSession(true);
      String sessionID = session.getId();
      boolean created = TestSessionListener.wasCreated(sessionID);
      if( created == false )
         throw new ServletException("No session create event seen");
      // Invalidate the session to test the destroy event
      session.invalidate();
      boolean destroyed = TestSessionListener.wasDestroyed(sessionID);
      if( destroyed == false )
         throw new ServletException("No session destroy event seen");
   }
}