本文整理汇总了Java中org.springframework.test.util.AopTestUtils类的典型用法代码示例。如果您正苦于以下问题:Java AopTestUtils类的具体用法?Java AopTestUtils怎么用?Java AopTestUtils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AopTestUtils类属于org.springframework.test.util包,在下文中一共展示了AopTestUtils类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: applyTo
import org.springframework.test.util.AopTestUtils; //导入依赖的package包/类
@Autowired
public static void applyTo(Object source) {
Assert.state(AopUtils.isAopProxy(source), "Source must be an AOP proxy");
try {
Advised advised = (Advised) source;
for (Advisor advisor : advised.getAdvisors()) {
if (advisor instanceof MockitoAopProxyTargetInterceptor) {
return;
}
}
Object target = AopTestUtils.getUltimateTargetObject(source);
Advice advice = new MockitoAopProxyTargetInterceptor(source, target);
advised.addAdvice(0, advice);
}
catch (Exception ex) {
throw new IllegalStateException("Unable to apply Mockito AOP support", ex);
}
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:19,代码来源:MockitoAopProxyTargetInterceptor.java
示例2: testBeanLoaded
import org.springframework.test.util.AopTestUtils; //导入依赖的package包/类
@Test
public void testBeanLoaded() throws Exception {
assertNotNull(bean);
//This field wouldn't be found because the bean is a spring proxy bean,
//not a real AOPSpringBean instance.
assertNull(FieldUtils.readField(bean, "fieldNeedMocked", true));
//If you want to mock or replace a field, get the target object first.
AOPSpringBean realBean = AopTestUtils.getTargetObject(bean);
assertNotNull(FieldUtils.readField(realBean, "fieldNeedMocked", true));
FieldUtils.writeField(realBean, "fieldNeedMocked", "woo", true);
assertEquals(bean.run(), "woo");
}
示例3: after
import org.springframework.test.util.AopTestUtils; //导入依赖的package包/类
@After()
public void after() {
StaleSearchDeletingSvcImpl staleSearchDeletingSvc = AopTestUtils.getTargetObject(myStaleSearchDeletingSvc);
staleSearchDeletingSvc.setCutoffSlackForUnitTest(StaleSearchDeletingSvcImpl.DEFAULT_CUTOFF_SLACK);
StaleSearchDeletingSvcImpl.setNowForUnitTests(null);
myDaoConfig.setReuseCachedSearchResultsForMillis(new DaoConfig().getReuseCachedSearchResultsForMillis());
myDaoConfig.setExpireSearchResults(new DaoConfig().isExpireSearchResults());
}
示例4: before
import org.springframework.test.util.AopTestUtils; //导入依赖的package包/类
@Before
public void before() {
myDaoConfig.setReuseCachedSearchResultsForMillis(new DaoConfig().getReuseCachedSearchResultsForMillis());
myDaoConfig.setExpireSearchResults(new DaoConfig().isExpireSearchResults());
myDaoConfig.setCountSearchResultsUpTo(null);
StaleSearchDeletingSvcImpl staleSearchDeletingSvc = AopTestUtils.getTargetObject(myStaleSearchDeletingSvc);
staleSearchDeletingSvc.setCutoffSlackForUnitTest(0);
}
示例5: before
import org.springframework.test.util.AopTestUtils; //导入依赖的package包/类
@Override
public void before() throws Exception {
super.before();
myFhirCtx.setParserErrorHandler(new StrictErrorHandler());
myDaoConfig.setAllowMultipleDelete(true);
mySearchCoordinatorSvcRaw = AopTestUtils.getTargetObject(mySearchCoordinatorSvc);
}
示例6: before
import org.springframework.test.util.AopTestUtils; //导入依赖的package包/类
@Override
public void before() throws Exception {
super.before();
myFhirCtx.setParserErrorHandler(new StrictErrorHandler());
mySearchCoordinatorSvcRaw = AopTestUtils.getTargetObject(mySearchCoordinatorSvc);
myCapturingInterceptor = new CapturingInterceptor();
myClient.registerInterceptor(myCapturingInterceptor);
}
示例7: before
import org.springframework.test.util.AopTestUtils; //导入依赖的package包/类
/**
* 实例化之前,设置 mock 类到实体类。
*/
@Before
public void before() throws Exception {
control = EasyMock.createNiceControl();
mockTestMapper = control.createMock(TestMapper.class);
ReflectionTestUtils.setField(AopTestUtils.getTargetObject(testBusiness), "testMapper", mockTestMapper);
}
示例8: testFooService
import org.springframework.test.util.AopTestUtils; //导入依赖的package包/类
@Test
public void testFooService() {
assertNotEquals(fooService.getClass(), FooServiceImpl.class);
assertTrue(AopUtils.isAopProxy(fooService));
assertTrue(AopUtils.isCglibProxy(fooService));
assertEquals(AopProxyUtils.ultimateTargetClass(fooService), FooServiceImpl.class);
assertEquals(AopTestUtils.getTargetObject(fooService).getClass(), FooServiceImpl.class);
assertEquals(AopTestUtils.getUltimateTargetObject(fooService).getClass(), FooServiceImpl.class);
assertEquals(fooService.incrementAndGet(), 0);
assertEquals(fooService.incrementAndGet(), 0);
}
示例9: testFooService
import org.springframework.test.util.AopTestUtils; //导入依赖的package包/类
@Test
public void testFooService() {
assertNotEquals(fooService.getClass(), FooServiceImpl.class);
assertTrue(AopUtils.isAopProxy(fooService));
assertTrue(AopUtils.isCglibProxy(fooService));
assertEquals(AopProxyUtils.ultimateTargetClass(fooService), FooServiceImpl.class);
assertEquals(AopTestUtils.getTargetObject(fooService).getClass(), FooServiceImpl.class);
assertEquals(AopTestUtils.getUltimateTargetObject(fooService).getClass(), FooServiceImpl.class);
assertEquals(fooService.incrementAndGet(), 0);
assertEquals(fooService.incrementAndGet(), 0);
verify(fooAspect, times(2)).changeIncrementAndGet(any());
}
示例10: after
import org.springframework.test.util.AopTestUtils; //导入依赖的package包/类
@After()
public void after() {
StaleSearchDeletingSvcImpl staleSearchDeletingSvc = AopTestUtils.getTargetObject(myStaleSearchDeletingSvc);
staleSearchDeletingSvc.setCutoffSlackForUnitTest(StaleSearchDeletingSvcImpl.DEFAULT_CUTOFF_SLACK);
StaleSearchDeletingSvcImpl.setNowForUnitTests(null);
}
示例11: before
import org.springframework.test.util.AopTestUtils; //导入依赖的package包/类
@Before
public void before() {
StaleSearchDeletingSvcImpl staleSearchDeletingSvc = AopTestUtils.getTargetObject(myStaleSearchDeletingSvc);
staleSearchDeletingSvc.setCutoffSlackForUnitTest(0);
myDaoConfig.setCountSearchResultsUpTo(new DaoConfig().getCountSearchResultsUpTo());
}
示例12: beforeDisableResultReuse
import org.springframework.test.util.AopTestUtils; //导入依赖的package包/类
@Before
public void beforeDisableResultReuse() {
myDaoConfig.setReuseCachedSearchResultsForMillis(null);
mySearchCoordinatorSvcRaw = AopTestUtils.getTargetObject(mySearchCoordinatorSvc);
}
示例13: after
import org.springframework.test.util.AopTestUtils; //导入依赖的package包/类
@After()
public void after() throws Exception {
super.after();
StaleSearchDeletingSvcImpl staleSearchDeletingSvc = AopTestUtils.getTargetObject(myStaleSearchDeletingSvc);
staleSearchDeletingSvc.setCutoffSlackForUnitTest(StaleSearchDeletingSvcImpl.DEFAULT_CUTOFF_SLACK);
}
示例14: before
import org.springframework.test.util.AopTestUtils; //导入依赖的package包/类
@Before
public void before() throws Exception {
super.before();
StaleSearchDeletingSvcImpl staleSearchDeletingSvc = AopTestUtils.getTargetObject(myStaleSearchDeletingSvc);
staleSearchDeletingSvc.setCutoffSlackForUnitTest(0);
}