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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Jul 22 06:38:36 EDT 2007


Author: anil.saldhana at jboss.com
Date: 2007-07-22 06:38:36 -0400 (Sun, 22 Jul 2007)
New Revision: 64183

Added:
   projects/security/security-xacml/trunk/jboss-xacml/src/tests/org/jboss/test/security/xacml/factories/util/
   projects/security/security-xacml/trunk/jboss-xacml/src/tests/org/jboss/test/security/xacml/factories/util/XACMLTestUtil.java
Log:
test util class

Added: projects/security/security-xacml/trunk/jboss-xacml/src/tests/org/jboss/test/security/xacml/factories/util/XACMLTestUtil.java
===================================================================
--- projects/security/security-xacml/trunk/jboss-xacml/src/tests/org/jboss/test/security/xacml/factories/util/XACMLTestUtil.java	                        (rev 0)
+++ projects/security/security-xacml/trunk/jboss-xacml/src/tests/org/jboss/test/security/xacml/factories/util/XACMLTestUtil.java	2007-07-22 10:38:36 UTC (rev 64183)
@@ -0,0 +1,157 @@
+/*
+  * 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.security.xacml.factories.util;
+
+import java.io.InputStream;
+import java.security.Principal;
+import java.security.acl.Group;
+import java.util.Enumeration;
+import java.util.Vector;
+
+import junit.framework.TestCase;
+
+import org.jboss.security.xacml.factories.RequestResponseContextFactory;
+import org.jboss.security.xacml.interfaces.PolicyDecisionPoint;
+import org.jboss.security.xacml.interfaces.RequestContext;
+import org.jboss.security.xacml.interfaces.ResponseContext;
+import org.jboss.security.xacml.interfaces.XACMLConstants;
+
+//$Id$
+
+/**
+ *  Utility class for the JBossXACML Tests
+ *  @author Anil.Saldhana at redhat.com
+ *  @since  Jul 22, 2007 
+ *  @version $Revision$
+ */
+public class XACMLTestUtil
+{ 
+   /**
+    * Get the decision from the PDP
+    * @param pdp
+    * @param requestFileLoc a file where the xacml request is stored
+    * @return
+    * @throws Exception
+    */
+   public static int getDecision(PolicyDecisionPoint pdp, 
+         String requestFileLoc) throws Exception
+   {
+      ClassLoader tcl = Thread.currentThread().getContextClassLoader();
+      InputStream is = tcl.getResourceAsStream(requestFileLoc);
+      RequestContext request = RequestResponseContextFactory.createRequestCtx();
+      request.readRequest(is);
+      ResponseContext response = pdp.evaluate(request);
+      if(response == null)
+       throw new RuntimeException("Response is null");
+      return response.getDecision(); 
+   }
+   
+   /**
+    * Get the decision from the PDP
+    * @param pdp
+    * @param request RequestContext containing the request
+    * @return
+    * @throws Exception
+    */
+   public static int getDecision(PolicyDecisionPoint pdp, RequestContext request) 
+   throws Exception
+   {
+      ResponseContext response = pdp.evaluate(request);
+      TestCase.assertNotNull("Response is not null", response);
+      return response.getDecision(); 
+   }
+   
+   /**
+    * Get a Group with the passed rolename
+    * @param roleName rolename which will be placed as a principal
+    * @return
+    */
+   public static Group getRoleGroup( final String roleName)
+   {
+      return new Group() {
+
+         private Vector vect = new Vector();
+         public boolean addMember(final Principal principal)
+         { 
+            return vect.add(principal);
+         }
+
+         public boolean isMember(Principal principal)
+         { 
+            return vect.contains(principal);
+         }
+
+         public Enumeration<? extends Principal> members()
+         { 
+            vect.add(new Principal()
+            {
+
+               public String getName()
+               { 
+                  return roleName;
+               }});
+            return vect.elements();
+         }
+
+         public boolean removeMember(Principal principal)
+         { 
+            return vect.remove(principal);
+         }
+
+         public String getName()
+         { 
+            return "ROLES";
+         }
+       }; 
+   } 
+   
+   /**
+    * Validate the 7 Oasis XACML Interoperability Use Cases
+    * @param pdp
+    * @throws Exception
+    */
+   public static void validateInteropCases(PolicyDecisionPoint pdp) throws Exception
+   {
+      TestCase.assertNotNull("JBossPDP is != null", pdp);
+      TestCase.assertEquals("Case 1 should be deny", XACMLConstants.DECISION_DENY,
+            XACMLTestUtil.getDecision(pdp,
+                "test/requests/interop/scenario2-testcase1-request.xml"));
+      TestCase.assertEquals("Case 2 should be deny", XACMLConstants.DECISION_PERMIT,
+            XACMLTestUtil.getDecision(pdp,
+                "test/requests/interop/scenario2-testcase2-request.xml"));
+      TestCase.assertEquals("Case 3 should be deny", XACMLConstants.DECISION_PERMIT,
+            XACMLTestUtil.getDecision(pdp,
+                "test/requests/interop/scenario2-testcase3-request.xml"));
+      TestCase.assertEquals("Case 4 should be deny", XACMLConstants.DECISION_DENY,
+            XACMLTestUtil.getDecision(pdp,
+                "test/requests/interop/scenario2-testcase4-request.xml"));
+      TestCase.assertEquals("Case 5 should be deny", XACMLConstants.DECISION_DENY,
+            XACMLTestUtil.getDecision(pdp,
+                "test/requests/interop/scenario2-testcase5-request.xml"));
+      TestCase.assertEquals("Case 6 should be deny", XACMLConstants.DECISION_DENY,
+            XACMLTestUtil.getDecision(pdp,
+                "test/requests/interop/scenario2-testcase6-request.xml"));
+      TestCase.assertEquals("Case 7 should be deny", XACMLConstants.DECISION_PERMIT,
+            XACMLTestUtil.getDecision(pdp,
+                "test/requests/interop/scenario2-testcase7-request.xml")); 
+   }
+}




More information about the jboss-cvs-commits mailing list