blob: 2efb89852741a04912e8ee0b8a007194718af139 [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.felix.dm.itest.api;
import java.util.Dictionary;
import java.util.Hashtable;
import java.util.Map;
import org.apache.felix.dm.Component;
import org.apache.felix.dm.DependencyManager;
import org.apache.felix.dm.itest.util.Ensure;
import org.apache.felix.dm.itest.util.TestBase;
import org.osgi.framework.ServiceReference;
/**
* Validates ServiceDependency service properties propagation.
*
* @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
*/
@SuppressWarnings({"unchecked", "rawtypes", "serial"})
public class ServiceDependencyPropagateTest extends TestBase {
/**
* Checks that a ServiceDependency propagates the dependency service properties to the provided service properties.
*/
public void testServiceDependencyPropagate() {
DependencyManager m = getDM();
// helper class that ensures certain steps get executed in sequence
Ensure e = new Ensure();
Component c1 = m.createComponent()
.setImplementation(new C1(e))
.add(m.createServiceDependency().setService(C2.class).setRequired(true).setCallbacks("bind", null));
Component c2 = m.createComponent()
.setInterface(C2.class.getName(), new Hashtable() {{ put("foo", "bar"); }})
.setImplementation(new C2())
.add(m.createServiceDependency().setService(C3.class).setRequired(true).setPropagate(true));
Component c3 = m.createComponent()
.setInterface(C3.class.getName(), new Hashtable() {{ put("foo2", "bar2"); put("foo", "overriden");}})
.setImplementation(new C3());
m.add(c1);
m.add(c2);
m.add(c3);
e.waitForStep(3, 10000);
m.remove(c3);
m.remove(c2);
m.remove(c1);
m.clear();
}
/**
* Checks that a ServiceDependency propagates the dependency service properties to the provided service properties,
* using a callback method.
*/
public void testServiceDependencyPropagateCallback() {
DependencyManager m = getDM();
// helper class that ensures certain steps get executed in sequence
Ensure e = new Ensure();
Component c1 = m.createComponent()
.setImplementation(new C1(e))
.add(m.createServiceDependency().setService(C2.class).setRequired(true).setCallbacks("bind", null));
C2 c2Impl = new C2();
Component c2 = m.createComponent()
.setInterface(C2.class.getName(), new Hashtable() {{ put("foo", "bar"); }})
.setImplementation(c2Impl)
.add(m.createServiceDependency().setService(C3.class).setRequired(true).setPropagate(c2Impl, "getServiceProperties"));
Component c3 = m.createComponent()
.setInterface(C3.class.getName(), null)
.setImplementation(new C3());
m.add(c1);
m.add(c2);
m.add(c3);
e.waitForStep(3, 10000);
m.clear();
}
public static class C1 {
private Map m_props;
private Ensure m_ensure;
C1(Ensure ensure) {
m_ensure = ensure;
}
void bind(Map props, C2 c2) {
m_props = props;
}
void start() {
m_ensure.step(1);
if ("bar".equals(m_props.get("foo"))) { // "foo=overriden" from C2 should not override our own "foo" property
m_ensure.step(2);
}
if ("bar2".equals(m_props.get("foo2"))) {
m_ensure.step(3);
}
}
}
public static class C2 {
C3 m_c3;
public Dictionary getServiceProperties(ServiceReference ref) {
return new Hashtable() {{ put("foo2", "bar2"); put("foo", "overriden"); }};
}
}
public static class C3 {
}
}