[jboss-cvs] JBossAS SVN: r81939 - in projects/metadata/trunk/src/test/java/org/jboss/test/metadata: jbmeta152 and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 2 03:21:54 EST 2008


Author: ALRubinger
Date: 2008-12-02 03:21:54 -0500 (Tue, 02 Dec 2008)
New Revision: 81939

Added:
   projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/
   projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/SecureService.java
   projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/SecureServiceBean.java
   projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/SecureServiceBeanBase.java
   projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/unit/
   projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/unit/OverriddenNotAdditiveRolesAllowedTestCase.java
Log:
[JBMETA-152] Added Unit Tests

Added: projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/SecureService.java
===================================================================
--- projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/SecureService.java	                        (rev 0)
+++ projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/SecureService.java	2008-12-02 08:21:54 UTC (rev 81939)
@@ -0,0 +1,48 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.metadata.jbmeta152;
+
+/**
+ * SecureService
+ *
+ * @author <a href="mailto:andrew.rubinger at jboss.org">ALR</a>
+ * @version $Revision: $
+ */
+public interface SecureService
+{
+   //------------------------------------------------------------------------------||
+   // Constants -------------------------------------------------------------------||
+   //------------------------------------------------------------------------------||
+
+   String ROLES_EJB = "EJBRole";
+
+   String ROLES_BEAN_BASE = "BaseRole";
+
+   //------------------------------------------------------------------------------||
+   // Contracts -------------------------------------------------------------------||
+   //------------------------------------------------------------------------------||
+
+   /**
+    * Dummy method, must be named "someMethod" for test to work
+    */
+   void someMethod();
+}

Added: projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/SecureServiceBean.java
===================================================================
--- projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/SecureServiceBean.java	                        (rev 0)
+++ projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/SecureServiceBean.java	2008-12-02 08:21:54 UTC (rev 81939)
@@ -0,0 +1,48 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.metadata.jbmeta152;
+
+import javax.annotation.security.RolesAllowed;
+import javax.ejb.Local;
+import javax.ejb.Stateless;
+
+/**
+ * SecureServiceBean
+ * 
+ * A Test EJB which should override the
+ * roles allowed to execute the test method 
+ *
+ * @author <a href="mailto:andrew.rubinger at jboss.org">ALR</a>
+ * @version $Revision: $
+ */
+ at Stateless
+ at Local(SecureService.class)
+public class SecureServiceBean extends SecureServiceBeanBase implements SecureService
+{
+   @Override
+   @RolesAllowed(SecureService.ROLES_EJB)
+   public void someMethod()
+   {
+      return;
+   }
+
+}

Added: projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/SecureServiceBeanBase.java
===================================================================
--- projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/SecureServiceBeanBase.java	                        (rev 0)
+++ projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/SecureServiceBeanBase.java	2008-12-02 08:21:54 UTC (rev 81939)
@@ -0,0 +1,44 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.metadata.jbmeta152;
+
+import javax.annotation.security.RolesAllowed;
+
+/**
+ * SecureServiceBeanBase
+ * 
+ * A base upon which the EJB will build, declaring 
+ * an allowed role for the test method which should
+ * be overridden
+ *
+ * @author <a href="mailto:andrew.rubinger at jboss.org">ALR</a>
+ * @version $Revision: $
+ */
+public class SecureServiceBeanBase implements SecureService
+{
+   @RolesAllowed(SecureService.ROLES_BEAN_BASE)
+   public void someMethod()
+   {
+      return;
+   }
+
+}

Added: projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/unit/OverriddenNotAdditiveRolesAllowedTestCase.java
===================================================================
--- projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/unit/OverriddenNotAdditiveRolesAllowedTestCase.java	                        (rev 0)
+++ projects/metadata/trunk/src/test/java/org/jboss/test/metadata/jbmeta152/unit/OverriddenNotAdditiveRolesAllowedTestCase.java	2008-12-02 08:21:54 UTC (rev 81939)
@@ -0,0 +1,116 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.metadata.jbmeta152.unit;
+
+import java.lang.reflect.AnnotatedElement;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Set;
+
+import junit.framework.TestCase;
+
+import org.jboss.logging.Logger;
+import org.jboss.metadata.annotation.creator.ejb.jboss.JBoss50Creator;
+import org.jboss.metadata.annotation.finder.AnnotationFinder;
+import org.jboss.metadata.annotation.finder.DefaultAnnotationFinder;
+import org.jboss.metadata.ejb.jboss.JBoss50MetaData;
+import org.jboss.metadata.ejb.spec.MethodMetaData;
+import org.jboss.metadata.ejb.spec.MethodPermissionMetaData;
+import org.jboss.metadata.ejb.spec.MethodPermissionsMetaData;
+import org.jboss.metadata.ejb.spec.MethodsMetaData;
+import org.jboss.test.metadata.jbmeta152.SecureService;
+import org.jboss.test.metadata.jbmeta152.SecureServiceBean;
+
+/**
+ * LeakingRolesAllowedTestCase
+ * 
+ * Tests EJBs that have @RolesAllowed defined on a method
+ * are overridden by inheritence, not applied in an additive model
+ * 
+ * JBMETA-152
+ *
+ * @author <a href="mailto:andrew.rubinger at jboss.org">ALR</a>
+ * @version $Revision: $
+ */
+public class OverriddenNotAdditiveRolesAllowedTestCase extends TestCase
+{
+   // -------------------------------------------------------------------||
+   // Class Members -----------------------------------------------------||
+   // -------------------------------------------------------------------||
+
+   private static final Logger log = Logger.getLogger(OverriddenNotAdditiveRolesAllowedTestCase.class);
+
+   // -------------------------------------------------------------------||
+   // Tests -------------------------------------------------------------||
+   // -------------------------------------------------------------------||
+
+   /**
+    * Ensures that @RolesAllowed definitions are overridden, not additive, 
+    * when taking an object's hierarchy into account
+    */
+   public void testRolesAllowedOverriddenNotAdditive() throws Throwable
+   {
+      /*
+       * Set up a JBoss Metadata Creator
+       */
+
+      // Define the implementation class
+      Class<?> implClass = SecureServiceBean.class;
+
+      // Make an annotation finder
+      AnnotationFinder<AnnotatedElement> finder = new DefaultAnnotationFinder<AnnotatedElement>();
+
+      // Configure to scan the test EJB
+      Collection<Class<?>> classes = new ArrayList<Class<?>>();
+      classes.add(implClass);
+      JBoss50Creator creator = new JBoss50Creator(finder);
+
+      // Make the metadata
+      JBoss50MetaData md = creator.create(classes);
+
+      // Ensure we've got the right permissions
+      MethodPermissionsMetaData permissions = md.getAssemblyDescriptor().getMethodPermissions()
+            .getMethodPermissionsByEjbName(implClass.getSimpleName());
+      TestCase.assertEquals(
+            "Only one set of " + MethodPermissionsMetaData.class.getSimpleName() + " should be defined", 1, permissions
+                  .size());
+      MethodPermissionMetaData permission = permissions.get(0);
+      TestCase.assertNotNull(permission);
+
+      // Ensure we've got the right method associated w/ the permission
+      MethodsMetaData methods = permission.getMethods();
+      TestCase.assertEquals(1, methods.size());
+      MethodMetaData method = methods.get(0);
+      TestCase.assertNotNull(method);
+      String methodName = method.getMethodName();
+      String expectedMethodName = "someMethod";
+      TestCase.assertEquals(expectedMethodName, methodName);
+
+      // Ensure we've got the right role associated w/ the permission
+      Set<String> roles = permission.getRoles();
+      TestCase.assertEquals("Only one role was expected", 1, roles.size());
+      String role = roles.iterator().next();
+      TestCase.assertEquals(SecureService.ROLES_EJB, role);
+
+   }
+
+}




More information about the jboss-cvs-commits mailing list