-
Notifications
You must be signed in to change notification settings - Fork 38.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Verify scope support for 'lite' @beans in the TCF
Introduced AtBeanLiteModeScopeTests integration tests to verify proper scoping of beans created in 'lite' mode. Updated comments in TACCWithoutACTests to better reflect the runtime behavior for 'lite' @bean methods. Issue: SPR-9401
- Loading branch information
Showing
2 changed files
with
111 additions
and
5 deletions.
There are no files selected for viewing
104 changes: 104 additions & 0 deletions
104
...c/test/java/org/springframework/test/context/junit4/spr9051/AtBeanLiteModeScopeTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/* | ||
* Copyright 2002-2012 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.context.junit4.spr9051; | ||
|
||
import static org.junit.Assert.assertFalse; | ||
import static org.junit.Assert.assertNotNull; | ||
import static org.junit.Assert.assertNotSame; | ||
import static org.junit.Assert.assertSame; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.beans.factory.annotation.Qualifier; | ||
import org.springframework.context.ApplicationContext; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Scope; | ||
import org.springframework.test.context.ContextConfiguration; | ||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; | ||
|
||
/** | ||
* Integration tests that verify proper scoping of beans created in | ||
* <em>{@code @Bean} Lite Mode</em>. | ||
* | ||
* @author Sam Brannen | ||
* @since 3.2 | ||
*/ | ||
@RunWith(SpringJUnit4ClassRunner.class) | ||
@ContextConfiguration(classes = AtBeanLiteModeScopeTests.LiteBeans.class) | ||
public class AtBeanLiteModeScopeTests { | ||
|
||
/** | ||
* This is intentionally <b>not</b> annotated with {@code @Configuration}. | ||
*/ | ||
static class LiteBeans { | ||
|
||
@Bean | ||
public LifecycleBean singleton() { | ||
LifecycleBean bean = new LifecycleBean("singleton"); | ||
assertFalse(bean.isInitialized()); | ||
return bean; | ||
} | ||
|
||
@Bean | ||
@Scope("prototype") | ||
public LifecycleBean prototype() { | ||
LifecycleBean bean = new LifecycleBean("prototype"); | ||
assertFalse(bean.isInitialized()); | ||
return bean; | ||
} | ||
} | ||
|
||
|
||
@Autowired | ||
private ApplicationContext applicationContext; | ||
|
||
@Autowired | ||
@Qualifier("singleton") | ||
private LifecycleBean injectedSingletonBean; | ||
|
||
@Autowired | ||
@Qualifier("prototype") | ||
private LifecycleBean injectedPrototypeBean; | ||
|
||
|
||
@Test | ||
public void singletonLiteBean() { | ||
assertNotNull(injectedSingletonBean); | ||
assertTrue(injectedSingletonBean.isInitialized()); | ||
|
||
LifecycleBean retrievedSingletonBean = applicationContext.getBean("singleton", LifecycleBean.class); | ||
assertNotNull(retrievedSingletonBean); | ||
assertTrue(retrievedSingletonBean.isInitialized()); | ||
|
||
assertSame(injectedSingletonBean, retrievedSingletonBean); | ||
} | ||
|
||
@Test | ||
public void prototypeLiteBean() { | ||
assertNotNull(injectedPrototypeBean); | ||
assertTrue(injectedPrototypeBean.isInitialized()); | ||
|
||
LifecycleBean retrievedPrototypeBean = applicationContext.getBean("prototype", LifecycleBean.class); | ||
assertNotNull(retrievedPrototypeBean); | ||
assertTrue(retrievedPrototypeBean.isInitialized()); | ||
|
||
assertNotSame(injectedPrototypeBean, retrievedPrototypeBean); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters