/* * Copyright 2002-2007 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; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; import javax.annotation.Resource; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.BeansException; import org.springframework.beans.Employee; import org.springframework.beans.Pet; import org.springframework.beans.factory.BeanNameAware; import org.springframework.beans.factory.InitializingBean; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.TestExecutionListeners; import org.springframework.test.context.support.DependencyInjectionTestExecutionListener; import org.springframework.test.context.support.GenericXmlContextLoader; /** * <p> * SpringJUnit4ClassRunnerAppCtxTests serves as a <em>proof of concept</em> * JUnit 4 based test class, which verifies the expected functionality of * {@link SpringJUnit4ClassRunner} in conjunction with the following: * </p> * <ul> * <li>{@link ContextConfiguration @ContextConfiguration}</li> * <li>{@link Autowired @Autowired}</li> * <li>{@link Resource @Resource}</li> * <li>{@link ApplicationContextAware}</li> * <li>{@link BeanNameAware}</li> * <li>{@link InitializingBean}</li> * </ul> * <p> * Since no application context resource * {@link ContextConfiguration#locations() locations} are explicitly declared * and since the {@link ContextConfiguration#loader() ContextLoader} is left set * to the default value of {@link GenericXmlContextLoader}, this test class's * dependencies will be injected via {@link Autowired @Autowired} and * {@link Resource @Resource} from beans defined in the * {@link ApplicationContext} loaded from the default classpath resource: "<code>/org/springframework/test/context/junit/SpringJUnit4ClassRunnerAppCtxTests-context.xml</code>". * </p> * * @author Sam Brannen * @since 2.5 * @see AbsolutePathSpringJUnit4ClassRunnerAppCtxTests * @see RelativePathSpringJUnit4ClassRunnerAppCtxTests * @see InheritedConfigSpringJUnit4ClassRunnerAppCtxTests */ @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration @TestExecutionListeners( { DependencyInjectionTestExecutionListener.class }) public class SpringJUnit4ClassRunnerAppCtxTests implements ApplicationContextAware, BeanNameAware, InitializingBean { /** * Default resource path for the application context configuration for * {@link SpringJUnit4ClassRunnerAppCtxTests}: * <code>"/org/springframework/test/context/junit4/SpringJUnit4ClassRunnerAppCtxTests-context.xml"</code> */ public static final String DEFAULT_CONTEXT_RESOURCE_PATH = "/org/springframework/test/context/junit4/SpringJUnit4ClassRunnerAppCtxTests-context.xml"; private ApplicationContext applicationContext; private boolean beanInitialized = false; private String beanName = "replace me with [" + getClass().getName() + "]"; private Employee employee; @Autowired private Pet pet; @Autowired(required = false) protected Long nonrequiredLong; @Resource() protected String foo; protected String bar; // ------------------------------------------------------------------------| public final void afterPropertiesSet() throws Exception { this.beanInitialized = true; } public final void setApplicationContext(final ApplicationContext applicationContext) throws BeansException { this.applicationContext = applicationContext; } public final void setBeanName(final String beanName) { this.beanName = beanName; } @Autowired protected final void setEmployee(final Employee employee) { this.employee = employee; } @Resource protected final void setBar(final String bar) { this.bar = bar; } // ------------------------------------------------------------------------| @Test public final void verifyApplicationContextSet() { assertNotNull("The application context should have been set due to ApplicationContextAware semantics.", this.applicationContext); } @Test public final void verifyBeanInitialized() { assertTrue("This test bean should have been initialized due to InitializingBean semantics.", this.beanInitialized); } @Test public final void verifyBeanNameSet() { assertEquals("The bean name of this test instance should have been set due to BeanNameAware semantics.", getClass().getName(), this.beanName); } @Test public final void verifyAnnotationAutowiredFields() { assertNull("The nonrequiredLong field should NOT have been autowired.", this.nonrequiredLong); assertNotNull("The pet field should have been autowired.", this.pet); assertEquals("Fido", this.pet.getName()); } @Test public final void verifyAnnotationAutowiredMethods() { assertNotNull("The employee setter method should have been autowired.", this.employee); assertEquals("John Smith", this.employee.getName()); } @Test public final void verifyResourceAnnotationWiredFields() { assertEquals("The foo field should have been wired via @Resource.", "Foo", this.foo); } @Test public final void verifyResourceAnnotationWiredMethods() { assertEquals("The bar method should have been wired via @Resource.", "Bar", this.bar); } }