[jboss-cvs] JBossAS SVN: r64376 - projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/authorization/xacml.

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


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

Removed:
   projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/authorization/xacml/TestHttpServletRequest.java
Modified:
   projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/authorization/xacml/WebXACMLUnitTestCase.java
Log:
move the test httpservletrequest

Deleted: projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/authorization/xacml/TestHttpServletRequest.java
===================================================================
--- projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/authorization/xacml/TestHttpServletRequest.java	2007-07-31 18:03:56 UTC (rev 64375)
+++ projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/authorization/xacml/TestHttpServletRequest.java	2007-07-31 18:04:52 UTC (rev 64376)
@@ -1,327 +0,0 @@
-/*
-  * 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.authorization.xacml;
-
-import java.io.BufferedReader;
-import java.io.IOException;
-import java.io.UnsupportedEncodingException;
-import java.security.Principal;
-import java.util.Enumeration;
-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;
-   
-   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 arg0)
-   {
-      return null;
-   }
-
-   public Map getParameterMap()
-   {
-     return null;
-   }
-
-   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
-   { 
-   } 
-}

Modified: projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/authorization/xacml/WebXACMLUnitTestCase.java
===================================================================
--- projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/authorization/xacml/WebXACMLUnitTestCase.java	2007-07-31 18:03:56 UTC (rev 64375)
+++ projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/authorization/xacml/WebXACMLUnitTestCase.java	2007-07-31 18:04:52 UTC (rev 64376)
@@ -28,6 +28,7 @@
 
 import javax.security.auth.Subject;
 import javax.security.jacc.PolicyContext;
+import javax.servlet.http.HttpServletRequest;
 
 import junit.framework.TestCase;
 
@@ -47,6 +48,7 @@
 import org.jboss.security.plugins.JBossAuthorizationManager;
 import org.jboss.security.plugins.SecurityContextAssociation;
 import org.jboss.security.plugins.SecurityContextFactory;
+import org.jboss.test.util.TestHttpServletRequest;
 
 //$Id$
 
@@ -75,9 +77,10 @@
       WebXACMLPolicyModuleDelegate pc = new WebXACMLPolicyModuleDelegate();
       Resource er = getResource();
       assertEquals(AuthorizationContext.PERMIT, pc.authorize(er));
+      Principal principal = new SimplePrincipal("Notjduke");
+      HttpServletRequest hsr = new TestHttpServletRequest(principal, uri, "GET");
       //Now change the ejb principal
-      er.getMap().put(ResourceKeys.WEB_REQUEST, 
-            new TestHttpServletRequest(new SimplePrincipal("Notjduke"), uri, "GET"));
+      er.getMap().put(ResourceKeys.WEB_REQUEST, hsr);
       assertEquals(AuthorizationContext.DENY, pc.authorize(er));
    }
    




More information about the jboss-cvs-commits mailing list