[jboss-cvs] JBossAS SVN: r71089 - in projects/microcontainer/trunk/aop-mc-int/src: tests/org/jboss/test/microcontainer/test and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Mar 20 13:35:52 EDT 2008


Author: kabir.khan at jboss.com
Date: 2008-03-20 13:35:52 -0400 (Thu, 20 Mar 2008)
New Revision: 71089

Added:
   projects/microcontainer/trunk/aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/test/AnnotationsInProxyTestCase.xml
   projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/microcontainer/test/AnnotationsInProxyTestCase.java
Log:
[JBMICROCONT-200] Test that the aop proxies contain annotations from superclass

Added: projects/microcontainer/trunk/aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/test/AnnotationsInProxyTestCase.xml
===================================================================
--- projects/microcontainer/trunk/aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/test/AnnotationsInProxyTestCase.xml	                        (rev 0)
+++ projects/microcontainer/trunk/aop-mc-int/src/resources/tests/org/jboss/test/microcontainer/test/AnnotationsInProxyTestCase.xml	2008-03-20 17:35:52 UTC (rev 71089)
@@ -0,0 +1,9 @@
+<deployment xmlns="urn:jboss:bean-deployer:2.0">
+   <bean name="AspectManager" class="org.jboss.aop.AspectManager">
+      <constructor factoryClass="org.jboss.aop.AspectManager" factoryMethod="instance"/>
+   </bean>
+
+   <bean name="Bean" class="org.jboss.test.microcontainer.support.AnnotatedBean">
+      <annotation>@org.jboss.test.microcontainer.support.Marker</annotation>
+   </bean>
+</deployment>

Added: projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/microcontainer/test/AnnotationsInProxyTestCase.java
===================================================================
--- projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/microcontainer/test/AnnotationsInProxyTestCase.java	                        (rev 0)
+++ projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/microcontainer/test/AnnotationsInProxyTestCase.java	2008-03-20 17:35:52 UTC (rev 71089)
@@ -0,0 +1,60 @@
+/*
+  * 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.microcontainer.test;
+
+import java.lang.reflect.Method;
+
+import junit.framework.Test;
+
+import org.jboss.aop.proxy.container.AspectManaged;
+import org.jboss.test.aop.junit.AOPMicrocontainerTest;
+import org.jboss.test.microcontainer.support.AnnotatedBean;
+
+/**
+ * 
+ * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
+ * @version $Revision: 43840 $
+ */
+public class AnnotationsInProxyTestCase extends AOPMicrocontainerTest
+{
+   public static Test suite()
+   {
+      return suite(AnnotationsInProxyTestCase.class);
+   }
+   
+   public AnnotationsInProxyTestCase(String name)
+   {
+      super(name);
+   }
+   
+   public void testAnnotationsInProxy() throws Exception
+   {
+      AnnotatedBean bean = (AnnotatedBean)getBean("Bean");
+      assertTrue(bean instanceof AspectManaged);
+      org.jboss.test.microcontainer.support.Test test = bean.getClass().getAnnotation(org.jboss.test.microcontainer.support.Test.class);
+      assertNotNull(test);
+      
+      Method method = bean.getClass().getMethod("method");
+      test = method.getAnnotation(org.jboss.test.microcontainer.support.Test.class);
+      assertNotNull(test);      
+   }
+}




More information about the jboss-cvs-commits mailing list