Pārlūkot izejas kodu

307009: test and fix: declare soft and call joinpoint (matching on annotations)

tags/V1_6_9M2
aclement pirms 14 gadiem
vecāks
revīzija
66625fd29e

+ 7
- 0
tests/bugs169/pr307009/Ann.java Parādīt failu

@@ -0,0 +1,7 @@
import java.lang.annotation.*;

@Retention(RetentionPolicy.CLASS)
public @interface Ann
{
}


+ 6
- 0
tests/bugs169/pr307009/Bug.aj Parādīt failu

@@ -0,0 +1,6 @@
public aspect Bug {
// works when specifying *.aj *.java, fails when using -sourceroots!
declare soft : Exception : call(@Ann * *(..));
// this works in both cases!
//declare soft : Exception : call(* m2(..));
}

+ 6
- 0
tests/bugs169/pr307009/Test.java Parādīt failu

@@ -0,0 +1,6 @@
public class Test
{
public void m() {
new Test2().m2();
}
}

+ 7
- 0
tests/bugs169/pr307009/Test2.java Parādīt failu

@@ -0,0 +1,7 @@
public class Test2
{
@Ann
public void m2() throws Exception {
throw new Exception();
}
}

+ 8
- 0
tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java Parādīt failu

@@ -18,6 +18,14 @@ import org.aspectj.testing.XMLBasedAjcTestCase;

public class Ajc169Tests extends org.aspectj.testing.XMLBasedAjcTestCase {

public void testDeclareSoftCall_307009_1() {
runTest("declare soft and call - 1");
}

public void testDeclareSoftCall_307009_2() {
runTest("declare soft and call - 2");
}

public void testAmbiguousMethod_298665() {
runTest("ambiguous method");
}

+ 12
- 1
tests/src/org/aspectj/systemtest/ajc169/ajc169.xml Parādīt failu

@@ -2,9 +2,20 @@

<suite>

<ajc-test dir="bugs169/pr307009" title="declare soft and call - 1">
<compile files="Test.java Test2.java Ann.java Bug.aj" options="-1.5 -showWeaveInfo">
<message kind="weave" text="Softening exceptions in type 'Test' (Test.java:4) as defined by aspect 'Bug' (Bug.aj:3)"/>
</compile>
</ajc-test>

<ajc-test dir="bugs169/pr307009" title="declare soft and call - 2">
<compile files="Test2.java Test.java Ann.java Bug.aj" options="-1.5 -showWeaveInfo">
<message kind="weave" text="Softening exceptions in type 'Test' (Test.java:4) as defined by aspect 'Bug' (Bug.aj:3)"/>
</compile>
</ajc-test>
<ajc-test dir="bugs169/pr310043" title="rogue error">
<compile files="B.java" classpath="code.jar" aspectpath="code.jar"/>

</ajc-test>
<ajc-test dir="bugs169/pr309743" title="itd marker annotations - 1">

Notiek ielāde…
Atcelt
Saglabāt