blob: e72fad0a08291cb9a5fb4e4c3df1208d19aa3a26 [file] [log] [blame]
/*
* 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.sling.testing.mock.osgi;
import static org.junit.Assert.assertNotNull;
import java.util.Collection;
import org.apache.sling.testing.mock.osgi.testsvc.osgiserviceutil.ServiceInterface3;
import org.apache.sling.testing.mock.osgi.testsvc.osgiserviceutil.ServiceInterface3Impl;
import org.apache.sling.testing.mock.osgi.testsvc.osgiserviceutil.ServiceInterface3ImplSelfReferencing;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.junit.MockitoJUnitRunner;
import org.osgi.framework.BundleContext;
import org.osgi.framework.InvalidSyntaxException;
import org.osgi.framework.ServiceReference;
/**
* Test cases for SLING-10616
*/
@RunWith(MockitoJUnitRunner.class)
public class MockBundleContextStaticGreedySelfReferenceTest {
private BundleContext bundleContext;
@Before
public void setUp() {
bundleContext = MockOsgi.newBundleContext();
}
@Test
public void testSelfReferenceWithTargetFilter() throws InvalidSyntaxException {
ServiceInterface3 defaultImpl = MockOsgi.activateInjectServices(ServiceInterface3Impl.class, bundleContext);
bundleContext.registerService(ServiceInterface3.class.getName(), defaultImpl, null);
ServiceInterface3 selfReferencingImpl = MockOsgi.activateInjectServices(ServiceInterface3ImplSelfReferencing.class, bundleContext);
bundleContext.registerService(ServiceInterface3.class.getName(), selfReferencingImpl, null);
assertNotNull(getDefaultImplFromReference());
}
@Test
public void testSelfReferenceWithTargetFilterReverse() throws InvalidSyntaxException {
ServiceInterface3 selfReferencingImpl = MockOsgi.activateInjectServices(ServiceInterface3ImplSelfReferencing.class, bundleContext);
bundleContext.registerService(ServiceInterface3.class.getName(), selfReferencingImpl, null);
ServiceInterface3 defaultImpl = MockOsgi.activateInjectServices(ServiceInterface3Impl.class, bundleContext);
bundleContext.registerService(ServiceInterface3.class.getName(), defaultImpl, null);
assertNotNull(getDefaultImplFromReference());
}
/**
* Get injected filtered service from ServiceInterface3ImplSelfReferencing.
*/
@SuppressWarnings("null")
private ServiceInterface3 getDefaultImplFromReference() throws InvalidSyntaxException {
Collection<ServiceReference<ServiceInterface3>> references = bundleContext.getServiceReferences(ServiceInterface3.class, "(!(prop1=abc))");
ServiceInterface3 service = bundleContext.getService(references.iterator().next());
return ((ServiceInterface3ImplSelfReferencing)service).getDefaultImplementation();
}
}