1 8 package test; 9 10 import junit.framework.TestCase; 11 12 import java.util.SortedSet ; 13 import java.util.TreeSet ; 14 import java.util.Set ; 15 16 import org.codehaus.aspectwerkz.annotation.Before; 17 import org.codehaus.aspectwerkz.annotation.Around; 18 import org.codehaus.aspectwerkz.joinpoint.StaticJoinPoint; 19 20 23 public class InterfaceDefinedMethodTest extends TestCase { 24 25 public static String s_log = ""; 26 27 public InterfaceDefinedMethodTest(String s) { 28 super(s); 29 } 30 31 public InterfaceDefinedMethodTest() { 32 SortedSet ss = new TreeSet (); 33 ss.add("foo"); ss.first(); 36 try { 37 Set s = ss; 38 s.add("bar"); throw new NullPointerException ("fake"); 40 } catch (NullPointerException npe) { 41 ; 42 } 43 } 44 45 49 public void testInterfaceDefinedMethod() { 50 s_log = ""; 51 SortedSet ss = new TreeSet (); 52 ss.add("foo"); ss.first(); 55 try { 56 Set s = ss; 57 s.add("bar"); throw new NullPointerException ("fake"); 59 } catch (NullPointerException npe) { 60 ; 61 } 62 assertEquals("advice advice advice advice advice advice advice ", s_log); 63 } 64 65 public void testWithinCtor() { 66 s_log = ""; 67 InterfaceDefinedMethodTest me = new InterfaceDefinedMethodTest(); 68 assertEquals("around around around around around around around ", s_log); 69 } 70 71 public void testWithinNot() { 72 s_log = ""; 73 withinNot(); 74 assertEquals("withincode withincode withincode ", s_log); 75 } 76 77 private void withinNot() { 78 InterfaceDefinedMethodTest me = new InterfaceDefinedMethodTest("ignore"); 79 subWithinNot(); 80 } 81 82 private void subWithinNot() { 83 ; 84 } 85 86 87 public static class Aspect { 88 89 @Before("withincode(* test.InterfaceDefinedMethodTest.testInterfaceDefinedMethod(..))") 90 public void before(StaticJoinPoint sjp) { 91 s_log += "advice "; 92 } 93 94 @Around("withincode(test.InterfaceDefinedMethodTest.new())") 95 public Object around(StaticJoinPoint sjp) throws Throwable { 96 s_log += "around "; 97 return sjp.proceed(); 98 } 99 100 @Before("cflow(within(test.InterfaceDefinedMethodTest) && call(* test.InterfaceDefinedMethodTest.withinNot()))" + 101 "&& !withincode(* test.InterfaceDefinedMethodTest.withinNot())" + 102 "&& within(test.InterfaceDefinedMethodTest)") 103 public void neverCalled(StaticJoinPoint sjp) { 104 s_log += "withincode "; 105 } 107 } 108 109 110 public static void main(String [] args) { 111 junit.textui.TestRunner.run(suite()); 112 } 113 114 public static junit.framework.Test suite() { 115 return new junit.framework.TestSuite(InterfaceDefinedMethodTest.class); 116 } 117 } 118
| Popular Tags
|