Introduce AOP testing utilities
This commit introduces support in the spring-test module for obtaining a reference to the underlying target object hidden behind one or more proxies. Specifically this commit introduces AopTestUtils with two methods: - getTargetObject(Object) - getUltimateTargetObject(Object) Issue: SPR-13005
This commit is contained in:
@@ -0,0 +1,138 @@
|
||||
/*
|
||||
* Copyright 2002-2015 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.test.util;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import org.springframework.aop.framework.ProxyFactory;
|
||||
import org.springframework.aop.support.AopUtils;
|
||||
|
||||
import static org.hamcrest.CoreMatchers.*;
|
||||
import static org.junit.Assert.*;
|
||||
import static org.springframework.test.util.AopTestUtils.*;
|
||||
|
||||
/**
|
||||
* Unit tests for {@link AopTestUtils}.
|
||||
*
|
||||
* @author Sam Brannen
|
||||
* @since 4.2
|
||||
*/
|
||||
public class AopTestUtilsTests {
|
||||
|
||||
private final FooImpl foo = new FooImpl();
|
||||
|
||||
|
||||
@Test
|
||||
public void getTargetObjectForNonProxiedObject() {
|
||||
Foo target = getTargetObject(foo);
|
||||
assertSame(foo, target);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getTargetObjectWrappedInSingleJdkDynamicProxy() {
|
||||
Foo target = getTargetObject(jdkProxy(foo));
|
||||
assertSame(foo, target);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getTargetObjectWrappedInSingleCglibProxy() {
|
||||
Foo target = getTargetObject(cglibProxy(foo));
|
||||
assertSame(foo, target);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getTargetObjectWrappedInDoubleJdkDynamicProxy() {
|
||||
Foo target = getTargetObject(jdkProxy(jdkProxy(foo)));
|
||||
assertNotSame(foo, target);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getTargetObjectWrappedInDoubleCglibProxy() {
|
||||
Foo target = getTargetObject(cglibProxy(cglibProxy(foo)));
|
||||
assertNotSame(foo, target);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getUltimateTargetObjectForNonProxiedObject() {
|
||||
Foo target = getUltimateTargetObject(foo);
|
||||
assertSame(foo, target);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getUltimateTargetObjectWrappedInSingleJdkDynamicProxy() {
|
||||
Foo target = getUltimateTargetObject(jdkProxy(foo));
|
||||
assertSame(foo, target);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getUltimateTargetObjectWrappedInSingleCglibProxy() {
|
||||
Foo target = getUltimateTargetObject(cglibProxy(foo));
|
||||
assertSame(foo, target);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getUltimateTargetObjectWrappedInDoubleJdkDynamicProxy() {
|
||||
Foo target = getUltimateTargetObject(jdkProxy(jdkProxy(foo)));
|
||||
assertSame(foo, target);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getUltimateTargetObjectWrappedInDoubleCglibProxy() {
|
||||
Foo target = getUltimateTargetObject(cglibProxy(cglibProxy(foo)));
|
||||
assertSame(foo, target);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getUltimateTargetObjectWrappedInCglibProxyWrappedInJdkDynamicProxy() {
|
||||
Foo target = getUltimateTargetObject(jdkProxy(cglibProxy(foo)));
|
||||
assertSame(foo, target);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getUltimateTargetObjectWrappedInCglibProxyWrappedInDoubleJdkDynamicProxy() {
|
||||
Foo target = getUltimateTargetObject(jdkProxy(jdkProxy(cglibProxy(foo))));
|
||||
assertSame(foo, target);
|
||||
}
|
||||
|
||||
private Foo jdkProxy(Foo foo) {
|
||||
ProxyFactory pf = new ProxyFactory();
|
||||
pf.setTarget(foo);
|
||||
pf.addInterface(Foo.class);
|
||||
Foo proxy = (Foo) pf.getProxy();
|
||||
assertTrue("Proxy is a JDK dynamic proxy", AopUtils.isJdkDynamicProxy(proxy));
|
||||
assertThat(proxy, instanceOf(Foo.class));
|
||||
return proxy;
|
||||
}
|
||||
|
||||
private Foo cglibProxy(Foo foo) {
|
||||
ProxyFactory pf = new ProxyFactory();
|
||||
pf.setTarget(foo);
|
||||
pf.setProxyTargetClass(true);
|
||||
Foo proxy = (Foo) pf.getProxy();
|
||||
assertTrue("Proxy is a CGLIB proxy", AopUtils.isCglibProxy(proxy));
|
||||
assertThat(proxy, instanceOf(FooImpl.class));
|
||||
return proxy;
|
||||
}
|
||||
|
||||
|
||||
static interface Foo {
|
||||
}
|
||||
|
||||
static class FooImpl implements Foo {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user