/* * Copyright 2002-2014 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.support; import org.springframework.beans.BeanUtils; import org.springframework.test.context.SmartContextLoader; import org.springframework.util.ClassUtils; /** * {@code DelegatingSmartContextLoader} is a concrete implementation of * {@link AbstractDelegatingSmartContextLoader} that delegates to a * {@link GenericXmlContextLoader} (or a {@link GenericGroovyXmlContextLoader} if Groovy * is present in the classpath) and an {@link AnnotationConfigContextLoader}. * * @author Sam Brannen * @since 3.1 * @see SmartContextLoader * @see AbstractDelegatingSmartContextLoader * @see GenericXmlContextLoader * @see GenericGroovyXmlContextLoader * @see AnnotationConfigContextLoader */ public class DelegatingSmartContextLoader extends AbstractDelegatingSmartContextLoader { private static final String GROOVY_XML_CONTEXT_LOADER_CLASS_NAME = "org.springframework.test.context.support.GenericGroovyXmlContextLoader"; private static final boolean groovyPresent = ClassUtils.isPresent("groovy.lang.Closure", DelegatingSmartContextLoader.class.getClassLoader()) && ClassUtils.isPresent(GROOVY_XML_CONTEXT_LOADER_CLASS_NAME, DelegatingSmartContextLoader.class.getClassLoader()); private final SmartContextLoader xmlLoader; private final SmartContextLoader annotationConfigLoader; public DelegatingSmartContextLoader() { if (groovyPresent) { try { Class<?> loaderClass = ClassUtils.forName(GROOVY_XML_CONTEXT_LOADER_CLASS_NAME, DelegatingSmartContextLoader.class.getClassLoader()); this.xmlLoader = (SmartContextLoader) BeanUtils.instantiateClass(loaderClass); } catch (Throwable ex) { throw new IllegalStateException("Failed to enable support for Groovy scripts; " + "could not load class: " + GROOVY_XML_CONTEXT_LOADER_CLASS_NAME, ex); } } else { this.xmlLoader = new GenericXmlContextLoader(); } this.annotationConfigLoader = new AnnotationConfigContextLoader(); } @Override protected SmartContextLoader getXmlLoader() { return this.xmlLoader; } @Override protected SmartContextLoader getAnnotationConfigLoader() { return this.annotationConfigLoader; } }