Added test for AOP auto configuration and dependency to AspectJ

This commit is contained in:
Eberhard Wolff 2013-10-02 19:20:23 +02:00 committed by Dave Syer
parent 6d6c261caa
commit c6e0c76341
3 changed files with 115 additions and 2 deletions

View File

@ -151,6 +151,12 @@
<artifactId>geronimo-jms_1.1_spec</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.7.3</version>
<optional>true</optional>
</dependency>
<!-- Test -->
<dependency>
<groupId>${project.groupId}</groupId>

View File

@ -37,13 +37,13 @@ public class AopAutoConfiguration {
@Configuration
@EnableAspectJAutoProxy(proxyTargetClass = false)
@ConditionalOnExpression("!${spring.aop.proxyTargetClass:false}")
@ConditionalOnExpression("!${spring.aop.proxyTargetClass:true}")
public static class JdkDynamicAutoProxyConfiguration {
}
@Configuration
@EnableAspectJAutoProxy(proxyTargetClass = true)
@ConditionalOnExpression("${spring.aop.proxyTargetClass:false}")
@ConditionalOnExpression("${spring.aop.proxyTargetClass:true}")
public static class CglibAutoProxyConfiguration {
}

View File

@ -0,0 +1,107 @@
/*
* Copyright 2012-2013 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.boot.autoconfigure.aop;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.junit.Test;
import org.springframework.boot.TestUtils;
import org.springframework.boot.autoconfigure.aop.AopAutoConfigurationTests.TestInterface;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* Tests for {@link AopAutoConfiguration}.
*
* @author Eberhard Wolff
*/
public class AopAutoConfigurationTests {
public interface TestInterface {
public abstract void foo();
}
private AnnotationConfigApplicationContext context;
@Test
public void testAopAutoConfigurationProxyTargetClass() {
this.context = new AnnotationConfigApplicationContext();
this.context.register(TestConfiguration.class, AopAutoConfiguration.class);
TestUtils.addEnviroment(this.context, "spring.aop.proxyTargetClass:true");
TestUtils.addEnviroment(this.context, "spring.aop.auto:true");
this.context.refresh();
TestAspect aspect = this.context.getBean(TestAspect.class);
assertFalse(aspect.isCalled());
TestBean bean = this.context.getBean(TestBean.class);
bean.foo();
assertTrue(aspect.isCalled());
}
@Test
public void testAopAutoConfigurationNoProxyTargetClass() {
this.context = new AnnotationConfigApplicationContext();
this.context.register(TestConfiguration.class, AopAutoConfiguration.class);
TestUtils.addEnviroment(this.context, "spring.aop.proxyTargetClass:false");
TestUtils.addEnviroment(this.context, "spring.aop.auto:true");
this.context.refresh();
TestAspect aspect = this.context.getBean(TestAspect.class);
assertFalse(aspect.isCalled());
TestInterface bean = this.context.getBean(TestInterface.class);
bean.foo();
assertTrue(aspect.isCalled());
}
@Configuration
protected static class TestConfiguration {
@Bean
public TestAspect aspect() {
return new TestAspect();
}
@Bean
public TestInterface bean() {
return new TestBean();
}
}
protected static class TestBean implements TestInterface {
@Override
public void foo() {
}
}
@Aspect
protected static class TestAspect {
private boolean called;
public boolean isCalled() {
return called;
}
@Before("execution(* foo(..))")
public void before() {
called=true;
}
}
}