/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.apache.aries.blueprint.itests; import static org.apache.aries.blueprint.itests.Helper.mvnBundle; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import org.apache.aries.blueprint.testbundlea.multi.InterfaceA; import org.apache.aries.blueprint.testbundlea.multi.InterfaceB; import org.apache.aries.blueprint.testbundlea.multi.InterfaceC; import org.apache.aries.blueprint.testbundlea.multi.InterfaceD; import org.junit.Test; import org.junit.runner.RunWith; import org.ops4j.pax.exam.Configuration; import org.ops4j.pax.exam.Option; import org.ops4j.pax.exam.junit.PaxExam; import org.osgi.service.blueprint.container.BlueprintContainer; @RunWith(PaxExam.class) public class MultiInterfacesTest extends AbstractBlueprintIntegrationTest { @Test public void testMultiInterfaceReferences() throws Exception { //bundlea provides the ns handlers, bean processors, interceptors etc for this test. startBundleBlueprint("org.apache.aries.blueprint.testbundlea"); //bundleb makes use of the extensions provided by bundlea //bundleb's container will hold the beans we need to query to check the function //provided by bundlea functioned as expected BlueprintContainer beanContainer = startBundleBlueprint("org.apache.aries.blueprint.testbundleb"); Object obj1 = beanContainer.getComponentInstance("OnlyA"); Object obj2 = beanContainer.getComponentInstance("AandB"); Object obj3 = beanContainer.getComponentInstance("AandBandC"); Object obj4 = beanContainer.getComponentInstance("AandBandCandD"); assertEquals("A", ((InterfaceA)obj1).methodA()); assertEquals("A", ((InterfaceA)obj2).methodA()); assertEquals("A", ((InterfaceA)obj3).methodA()); assertEquals("B", ((InterfaceB)obj2).methodB()); assertEquals("C", ((InterfaceC)obj3).methodC()); assertFalse(obj1 instanceof InterfaceC); assertFalse(obj2 instanceof InterfaceC); assertFalse(obj1 instanceof InterfaceB); assertTrue(obj4 instanceof InterfaceD); try { ((InterfaceD)obj4).methodD(); fail("This should not work"); } catch (org.osgi.service.blueprint.container.ServiceUnavailableException t) { //expected } } @Configuration public Option[] configuration() { return new Option[] { baseOptions(), Helper.blueprintBundles(), mvnBundle("org.apache.aries.blueprint", "org.apache.aries.blueprint.testbundlea"), mvnBundle("org.apache.aries.blueprint", "org.apache.aries.blueprint.testbundleb") }; } }