[jboss-cvs] JBossAS SVN: r64374 - in projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test: util and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jul 31 14:03:14 EDT 2007


Author: anil.saldhana at jboss.com
Date: 2007-07-31 14:03:14 -0400 (Tue, 31 Jul 2007)
New Revision: 64374

Added:
   projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/util/
   projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/util/TestHttpServletRequest.java
Log:
move the test httpservletrequest

Added: projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/util/TestHttpServletRequest.java
===================================================================
--- projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/util/TestHttpServletRequest.java	                        (rev 0)
+++ projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/util/TestHttpServletRequest.java	2007-07-31 18:03:14 UTC (rev 64374)
@@ -0,0 +1,330 @@
+/*
+  * JBoss, Home of Professional Open Source
+  * Copyright 2007, JBoss Inc., and individual contributors as indicated
+  * by the @authors tag. See the copyright.txt in the distribution for a
+  * full listing of individual contributors.
+  *
+  * This is free software; you can redistribute it and/or modify it
+  * under the terms of the GNU Lesser General Public License as
+  * published by the Free Software Foundation; either version 2.1 of
+  * the License, or (at your option) any later version.
+  *
+  * This software is distributed in the hope that it will be useful,
+  * but WITHOUT ANY WARRANTY; without even the implied warranty of
+  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+  * Lesser General Public License for more details.
+  *
+  * You should have received a copy of the GNU Lesser General Public
+  * License along with this software; if not, write to the Free
+  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+  */
+package org.jboss.test.util;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.UnsupportedEncodingException;
+import java.security.Principal;
+import java.util.Enumeration;
+import java.util.HashMap;
+import java.util.Locale;
+import java.util.Map;
+import java.util.Vector;
+
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletInputStream;
+import javax.servlet.http.Cookie;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpSession;
+
+//$Id$
+
+/**
+ *  Test Http Servlet Request 
+ *  @author Anil.Saldhana at redhat.com
+ *  @since  May 8, 2007 
+ *  @version $Revision$
+ */
+public class TestHttpServletRequest implements HttpServletRequest
+{
+   private Principal p = null;
+   private String uri;
+   private String meth;
+   
+   private Map parameterMap = new HashMap();
+   
+   public TestHttpServletRequest(Principal p, String uri, String meth)
+   {
+      this.p = p; 
+      this.uri = uri;
+      this.meth = meth;
+   }
+
+   public String getAuthType()
+   { 
+      return null;
+   }
+
+   public String getContextPath()
+   { 
+      return null;
+   }
+
+   public Cookie[] getCookies()
+   { 
+      return null;
+   }
+
+   public long getDateHeader(String arg0)
+   { 
+      return 0;
+   }
+
+   public String getHeader(String arg0)
+   { 
+      return null;
+   }
+
+   public Enumeration getHeaderNames()
+   { 
+      return null;
+   }
+
+   public Enumeration getHeaders(String arg0)
+   { 
+      return null;
+   }
+
+   public int getIntHeader(String arg0)
+   { 
+      return 0;
+   }
+
+   public String getMethod()
+   {  
+      return meth;
+   }
+
+   public String getPathInfo()
+   { 
+      return null;
+   }
+
+   public String getPathTranslated()
+   { 
+      return null;
+   }
+
+   public String getQueryString()
+   { 
+      return null;
+   }
+
+   public String getRemoteUser()
+   {  
+      return null;
+   }
+
+   public String getRequestURI()
+   { 
+      return uri;
+   }
+
+   public StringBuffer getRequestURL()
+   { 
+      return null;
+   }
+
+   public String getRequestedSessionId()
+   { 
+      return null;
+   }
+
+   public String getServletPath()
+   { 
+      return null;
+   }
+
+   public HttpSession getSession()
+   { 
+      return null;
+   }
+
+   public HttpSession getSession(boolean arg0)
+   {
+      return null;
+   }
+
+   public Principal getUserPrincipal()
+   {
+      return p;
+   }
+
+   public boolean isRequestedSessionIdFromCookie()
+   {
+      return false;
+   }
+
+   public boolean isRequestedSessionIdFromURL()
+   {
+      return false;
+   }
+
+   public boolean isRequestedSessionIdFromUrl()
+   {
+      return false;
+   }
+
+   public boolean isRequestedSessionIdValid()
+   {
+      return false;
+   }
+
+   public boolean isUserInRole(String arg0)
+   {
+      return false;
+   }
+
+   public Object getAttribute(String arg0)
+   {
+      return null;
+   }
+
+   public Enumeration getAttributeNames()
+   {
+      return null;
+   }
+
+   public String getCharacterEncoding()
+   {
+      return null;
+   }
+
+   public int getContentLength()
+   {
+      return 0;
+   }
+
+   public String getContentType()
+   {
+      return null;
+   }
+
+   public ServletInputStream getInputStream() throws IOException
+   {
+      return null;
+   }
+
+   public String getLocalAddr()
+   {
+      return null;
+   }
+
+   public String getLocalName()
+   {
+      return null;
+   }
+
+   public int getLocalPort()
+   {
+      return 0;
+   }
+
+   public Locale getLocale()
+   {
+      return null;
+   }
+
+   public Enumeration getLocales()
+   {
+      return null;
+   }
+
+   public String getParameter(String arg)
+   {
+      return (String) parameterMap.get(arg);
+   }
+
+   public Map getParameterMap()
+   {
+     return parameterMap;
+   }
+
+   public Enumeration getParameterNames()
+   {
+      Vector v = new Vector();
+      return v.elements();
+   }
+
+   public String[] getParameterValues(String arg0)
+   {
+      return null;
+   }
+
+   public String getProtocol()
+   {
+      return null;
+   }
+
+   public BufferedReader getReader() throws IOException
+   {
+      return null;
+   }
+
+   public String getRealPath(String arg0)
+   {
+      return null;
+   }
+
+   public String getRemoteAddr()
+   {
+      return null;
+   }
+
+   public String getRemoteHost()
+   {
+      return null;
+   }
+
+   public int getRemotePort()
+   {
+      return 0;
+   }
+
+   public RequestDispatcher getRequestDispatcher(String arg0)
+   {
+      return null;
+   }
+
+   public String getScheme()
+   {
+      return null;
+   }
+
+   public String getServerName()
+   {
+      return null;
+   }
+
+   public int getServerPort()
+   {
+      return 0;
+   }
+
+   public boolean isSecure()
+   {
+      return false;
+   }
+
+   public void removeAttribute(String arg0)
+   { 
+   }
+
+   public void setAttribute(String arg0, Object arg1)
+   {  
+   }
+
+   public void setCharacterEncoding(String arg0) throws UnsupportedEncodingException
+   { 
+   } 
+}




More information about the jboss-cvs-commits mailing list