/****************************************************************************** * Copyright (c) 2006, 2010 VMware Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Apache License v2.0 which accompanies this distribution. * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html and the Apache License v2.0 * is available at http://www.opensource.org/licenses/apache2.0.php. * You may elect to redistribute this code under either of these licenses. * * Contributors: * VMware Inc. *****************************************************************************/ package org.eclipse.gemini.blueprint.config; import java.io.Serializable; import junit.framework.TestCase; import org.eclipse.gemini.blueprint.context.support.BundleContextAwareProcessor; import org.osgi.framework.BundleContext; import org.osgi.framework.InvalidSyntaxException; import org.osgi.framework.ServiceReference; import org.springframework.beans.factory.parsing.BeanDefinitionParsingException; import org.springframework.beans.factory.xml.XmlBeanDefinitionReader; import org.springframework.context.support.GenericApplicationContext; import org.springframework.core.io.ClassPathResource; import org.eclipse.gemini.blueprint.mock.MockBundleContext; import org.eclipse.gemini.blueprint.mock.MockServiceReference; public class InvalidOsgiDefaultsTest extends TestCase { private GenericApplicationContext appContext; protected void setUp() throws Exception { BundleContext bundleContext = new MockBundleContext() { // service reference already registered public ServiceReference[] getServiceReferences(String clazz, String filter) throws InvalidSyntaxException { return new ServiceReference[] { new MockServiceReference(new String[] { Serializable.class.getName() }) }; } }; appContext = new GenericApplicationContext(); appContext.getBeanFactory().addBeanPostProcessor(new BundleContextAwareProcessor(bundleContext)); appContext.setClassLoader(getClass().getClassLoader()); } protected void tearDown() throws Exception { appContext.close(); appContext = null; } public void testInvalidDefaultsCheck() throws Exception { XmlBeanDefinitionReader reader = new XmlBeanDefinitionReader(appContext); try { reader.loadBeanDefinitions(new ClassPathResource("osgiInvalidDefaults.xml", getClass())); fail("should have failed since osgi:defaults cannot be used outside the root element"); } catch (BeanDefinitionParsingException ex) { // expected } } }