[jboss-cvs] JBossAS SVN: r83834 - in projects/aop/trunk/aop/src: resources/test/standalone and 2 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Feb 3 16:07:55 EST 2009


Author: stalep
Date: 2009-02-03 16:07:55 -0500 (Tue, 03 Feb 2009)
New Revision: 83834

Added:
   projects/aop/trunk/aop/src/resources/test/standalone/
   projects/aop/trunk/aop/src/resources/test/standalone/jboss-aop.xml
   projects/aop/trunk/aop/src/test/java/org/jboss/test/aop/standalone/
   projects/aop/trunk/aop/src/test/java/org/jboss/test/aop/standalone/POJO.java
   projects/aop/trunk/aop/src/test/java/org/jboss/test/aop/standalone/PackageInterceptor.java
   projects/aop/trunk/aop/src/test/java/org/jboss/test/aop/standalone/PackageTestCase.java
Log:
test to verify ticket 257109
https://enterprise.redhat.com/issue-tracker/257109

Added: projects/aop/trunk/aop/src/resources/test/standalone/jboss-aop.xml
===================================================================
--- projects/aop/trunk/aop/src/resources/test/standalone/jboss-aop.xml	                        (rev 0)
+++ projects/aop/trunk/aop/src/resources/test/standalone/jboss-aop.xml	2009-02-03 21:07:55 UTC (rev 83834)
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<aop>
+  <bind pointcut="execution(* org.jboss.test.aop.standalone.POJO->foo())">
+    <interceptor class="org.jboss.test.aop.standalone.PackageInterceptor"/>
+  </bind>
+</aop>

Added: projects/aop/trunk/aop/src/test/java/org/jboss/test/aop/standalone/POJO.java
===================================================================
--- projects/aop/trunk/aop/src/test/java/org/jboss/test/aop/standalone/POJO.java	                        (rev 0)
+++ projects/aop/trunk/aop/src/test/java/org/jboss/test/aop/standalone/POJO.java	2009-02-03 21:07:55 UTC (rev 83834)
@@ -0,0 +1,38 @@
+/*
+  * 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.standalone;
+
+/**
+ * A POJO.
+ * 
+ * @author <a href="mailto:stale.pedersen at jboss.org">Stale W. Pedersen</a>
+ * @version $Revision: 1.1 $
+ */
+public class POJO
+{
+   
+   public void foo()
+   {
+      
+   }
+
+}

Added: projects/aop/trunk/aop/src/test/java/org/jboss/test/aop/standalone/PackageInterceptor.java
===================================================================
--- projects/aop/trunk/aop/src/test/java/org/jboss/test/aop/standalone/PackageInterceptor.java	                        (rev 0)
+++ projects/aop/trunk/aop/src/test/java/org/jboss/test/aop/standalone/PackageInterceptor.java	2009-02-03 21:07:55 UTC (rev 83834)
@@ -0,0 +1,48 @@
+/*
+  * 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.standalone;
+
+import org.jboss.aop.advice.Interceptor;
+import org.jboss.aop.joinpoint.Invocation;
+
+/**
+ * A PackageInterceptor.
+ * 
+ * @author <a href="mailto:stale.pedersen at jboss.org">Stale W. Pedersen</a>
+ * @version $Revision: 1.1 $
+ */
+public class PackageInterceptor implements Interceptor
+{
+   public static boolean invoked = false;
+   
+   public String getName()
+   {
+      return "PackageInterceptor";
+   }
+
+   public Object invoke(Invocation invocation) throws Throwable
+   {
+      invoked = true; 
+      return invocation.invokeNext();
+   }
+
+}

Added: projects/aop/trunk/aop/src/test/java/org/jboss/test/aop/standalone/PackageTestCase.java
===================================================================
--- projects/aop/trunk/aop/src/test/java/org/jboss/test/aop/standalone/PackageTestCase.java	                        (rev 0)
+++ projects/aop/trunk/aop/src/test/java/org/jboss/test/aop/standalone/PackageTestCase.java	2009-02-03 21:07:55 UTC (rev 83834)
@@ -0,0 +1,62 @@
+/*
+  * 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.standalone;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+import org.jboss.aop.AspectManager;
+import org.jboss.test.aop.AOPTestWithSetup;
+
+/**
+ * A PackageTestCase.
+ * 
+ * @author <a href="mailto:stale.pedersen at jboss.org">Stale W. Pedersen</a>
+ * @version $Revision: 1.1 $
+ */
+public class PackageTestCase extends AOPTestWithSetup
+{
+   
+   public PackageTestCase(String name)
+   {
+      super(name);
+   }
+
+   public static Test suite()
+   {
+      TestSuite suite = new TestSuite("PackageTestCase");
+      suite.addTestSuite(PackageTestCase.class);
+      return suite;
+   }
+   
+   public void testPackage()
+   {
+      POJO pojo = new POJO();
+      pojo.foo();
+      assertTrue(PackageInterceptor.invoked);
+      
+      org.jboss.aop.standalone.Package pkg = org.jboss.aop.standalone.Package.aopClassMap();
+      System.out.println("Package size: "+pkg.advisors.size());
+      System.out.println("Number of advisors: "+AspectManager.instance().getAdvisors().size());
+      
+   }
+}




More information about the jboss-cvs-commits mailing list