[jboss-cvs] JBossAS SVN: r63530 - projects/aop/tags/JBoss_AOP_2_0_0_alpha5/aop/src/test/org/jboss/test/aop/reflection.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jun 14 10:16:46 EDT 2007


Author: kabir.khan at jboss.com
Date: 2007-06-14 10:16:45 -0400 (Thu, 14 Jun 2007)
New Revision: 63530

Removed:
   projects/aop/tags/JBoss_AOP_2_0_0_alpha5/aop/src/test/org/jboss/test/aop/reflection/ExtendedSetAccessiblePOJO.java
   projects/aop/tags/JBoss_AOP_2_0_0_alpha5/aop/src/test/org/jboss/test/aop/reflection/ReflectionNoSecurityTestCase.java
   projects/aop/tags/JBoss_AOP_2_0_0_alpha5/aop/src/test/org/jboss/test/aop/reflection/SamePackageSetAccessiblePOJO.java
   projects/aop/tags/JBoss_AOP_2_0_0_alpha5/aop/src/test/org/jboss/test/aop/reflection/setaccessible/
Log:
Should never have made it into release

Deleted: projects/aop/tags/JBoss_AOP_2_0_0_alpha5/aop/src/test/org/jboss/test/aop/reflection/ExtendedSetAccessiblePOJO.java
===================================================================
--- projects/aop/tags/JBoss_AOP_2_0_0_alpha5/aop/src/test/org/jboss/test/aop/reflection/ExtendedSetAccessiblePOJO.java	2007-06-14 14:13:49 UTC (rev 63529)
+++ projects/aop/tags/JBoss_AOP_2_0_0_alpha5/aop/src/test/org/jboss/test/aop/reflection/ExtendedSetAccessiblePOJO.java	2007-06-14 14:16:45 UTC (rev 63530)
@@ -1,132 +0,0 @@
-/*
-  * JBoss, Home of Professional Open Source
-  * Copyright 2005, 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.aop.reflection;
-
-import java.lang.reflect.Field;
-import java.lang.reflect.Modifier;
-
-import org.jboss.test.aop.reflection.setaccessible.DifferentPackageSetAccessiblePOJO;
-
-/**
- * @author Jason Hill
- * @version $Revision: 57688 $
- */
-public class ExtendedSetAccessiblePOJO extends DifferentPackageSetAccessiblePOJO
-{
-   /**
-    * Test Accessability of visible and non-visible fields
-    */
-   public void testSetAccesible() throws Exception
-   {
-      testSetAccessible(this, "advisedPrivateField",   true);
-      // Fix this - still broken with AOP
-      //testSetAccessable(this, "defaultAccessField",    true);
-      //testSetAccessable(this, "advisedProtectedField", false);
-      testSetAccessible(this, "advisedPublicField",    false);
-   }
-   
-   private void testSetAccessible(Object object, String fieldName, boolean illegalAccessExceptionTest) throws Exception
-   {
-      System.out.println("ExtendedSetAccessiblePOJO.testSetAccessible(" +fieldName + ", " + illegalAccessExceptionTest + ")");
-      
-      //final Field field = object.getClass().getDeclaredField(fieldName);
-      final Field field = object.getClass().getSuperclass().getDeclaredField(fieldName);
-      final int modifiers = field.getModifiers();
-      
-      String fieldAccess;
-      
-      if(Modifier.isPublic(modifiers))         fieldAccess = "public";
-      else if(Modifier.isProtected(modifiers)) fieldAccess = "protected";
-      else if(Modifier.isPrivate(modifiers))   fieldAccess = "private";
-      else                                     fieldAccess = "default-access";
-      
-      fieldAccess += "/extended-class";
-      //fieldAccess += getClass().getPackage().equals(object.getClass().getPackage())?
-      //      "/same-package" : "/different-package";
-      
-      if(illegalAccessExceptionTest)
-      {
-         // Verify that an IllegalAccessException is correctly generated
-         // When accessing non-visible fields
-         SetAccessibleAspect.reset();
-         
-         String errorGet = "IllegalAccessException should have been thrown because setAccessable had not been called before calling Field.get() on a " + fieldAccess + " field.";
-         
-         try
-         {
-            field.get(object);
-            throw new RuntimeException(errorGet); 
-         }
-         catch(IllegalAccessException e)
-         {
-            // IllegalAccessException is expected because setAccessable has not been called
-         }
-         
-         String errorSet = "IllegalAccessException should have been thrown because setAccessable had not been called before calling Field.set() on a " + fieldAccess + " field."; 
-         
-         try
-         {
-            field.set(object, "new value");
-            throw new RuntimeException(errorSet); 
-         }
-         catch(IllegalAccessException e)
-         {
-            // IllegalAccessException is expected because setAccessable has not been called
-         }
-         
-         // Make the field accessable
-         field.setAccessible(true);
-      }
-      
-      // Verify that an IllegalAccessException is not generated
-      // when accessing visible fields 
-      // or when accessing non-visible fields after calling Field.setAccessable()
-      SetAccessibleAspect.reset();
-      
-      String errorGet = "Could not get " + fieldAccess + " field using Field.get()";
-      if(illegalAccessExceptionTest) errorGet += " after calling Field.setAccessable()";
-      
-      try
-      {
-         field.get(object);
-      }
-      catch(IllegalAccessException e)
-      {
-         throw new RuntimeException(errorGet);
-      }
-      
-      String errorSet = "Could not set " + fieldAccess + " field using Field.set()";
-      if(illegalAccessExceptionTest) errorSet += " after calling Field.setAccessable()";
-      
-      try
-      {
-         field.set(object, "new value");
-      }
-      catch(IllegalAccessException e)
-      {
-         throw new RuntimeException(errorSet);
-      }
-      
-      // Make sure interception actually occurred
-      SetAccessibleAspect.validateInterception(fieldAccess);
-   }
-}

Deleted: projects/aop/tags/JBoss_AOP_2_0_0_alpha5/aop/src/test/org/jboss/test/aop/reflection/ReflectionNoSecurityTestCase.java
===================================================================
--- projects/aop/tags/JBoss_AOP_2_0_0_alpha5/aop/src/test/org/jboss/test/aop/reflection/ReflectionNoSecurityTestCase.java	2007-06-14 14:13:49 UTC (rev 63529)
+++ projects/aop/tags/JBoss_AOP_2_0_0_alpha5/aop/src/test/org/jboss/test/aop/reflection/ReflectionNoSecurityTestCase.java	2007-06-14 14:16:45 UTC (rev 63530)
@@ -1,56 +0,0 @@
-/*
-* JBoss, Home of Professional Open Source.
-* Copyright 2006, 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.aop.reflection;
-
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Completes the ReflectionTester, and runs some tests with no security manager enabled 
- * since the tests have a different ProtectionDomain 
- * 
- * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
- * @version $Revision: 1.1 $
- */
-public class ReflectionNoSecurityTestCase extends TestCase
-{
-   ReflectionPOJO reflectionPOJO;
-   public static Test suite()
-   {
-      TestSuite suite = new TestSuite("ReflectionTester");
-      suite.addTestSuite(ReflectionNoSecurityTestCase.class);
-      return suite;
-   }
-   public ReflectionNoSecurityTestCase(String name)
-   {
-      super(name);
-   }
-
-   public void testSetAccessibleField()
-   {
-     System.out.println("RUNNING TEST SET ACCESSIBLE");
-     ReflectionPOJO reflectionPOJO = new ReflectionPOJO();
-     reflectionPOJO.testSetAccessible();
-   }
-
-}

Deleted: projects/aop/tags/JBoss_AOP_2_0_0_alpha5/aop/src/test/org/jboss/test/aop/reflection/SamePackageSetAccessiblePOJO.java
===================================================================
--- projects/aop/tags/JBoss_AOP_2_0_0_alpha5/aop/src/test/org/jboss/test/aop/reflection/SamePackageSetAccessiblePOJO.java	2007-06-14 14:13:49 UTC (rev 63529)
+++ projects/aop/tags/JBoss_AOP_2_0_0_alpha5/aop/src/test/org/jboss/test/aop/reflection/SamePackageSetAccessiblePOJO.java	2007-06-14 14:16:45 UTC (rev 63530)
@@ -1,11 +0,0 @@
-package org.jboss.test.aop.reflection;
-
-public class SamePackageSetAccessiblePOJO
-{
-   public String advisedPublicField = null;
-
-   @SuppressWarnings("unused")
-   private String advisedPrivateField     = null;
-   protected String advisedProtectedField = null;
-   String defaultAccessField              = null;
-}




More information about the jboss-cvs-commits mailing list