use of org.apache.felix.scr.integration.components.SimpleService in project felix by apache.
the class ComponentFactoryTest method test_component_factory_referredTo.
@Test
public void test_component_factory_referredTo() throws Exception {
// set up the component that refers to the service the factory will create.
final String referringComponentName = "ComponentReferringToFactoryObject";
getConfigurationsDisabledThenEnable(referringComponentName, 1, ComponentConfigurationDTO.UNSATISFIED_REFERENCE);
final String componentname = "factory.component.referred";
final String componentfactory = "factory.component.factory.referred";
getConfigurationsDisabledThenEnable(componentname, 0, -1);
TestCase.assertNull(SimpleComponent.INSTANCE);
Hashtable<String, String> props = new Hashtable<String, String>();
props.put("service.pid", "myFactoryInstance");
final ComponentFactory factory = getComponentFactory(componentfactory);
final ComponentInstance instance = factory.newInstance(props);
TestCase.assertNotNull(instance);
TestCase.assertNotNull(instance.getInstance());
TestCase.assertTrue(instance.getInstance() instanceof SimpleService);
// The referring service should now be active
checkConfigurationCount(referringComponentName, 1, ComponentConfigurationDTO.ACTIVE);
instance.dispose();
// SCR 112.12.6.2
TestCase.assertNull(instance.getInstance());
// make sure it's unsatisfied (service is no longer available)
checkConfigurationCount(referringComponentName, 1, ComponentConfigurationDTO.UNSATISFIED_REFERENCE);
}
use of org.apache.felix.scr.integration.components.SimpleService in project felix by apache.
the class Felix5356Test method do_test_factory_component_with_factory_configuration.
private void do_test_factory_component_with_factory_configuration(boolean createConfigBeforeEnable) throws Exception {
final String componentname = "factory.component.referred";
final String componentfactory = "factory.component.factory.referred";
String factoryConfigPid = null;
if (createConfigBeforeEnable) {
// create the factory configuration before enabling
factoryConfigPid = createFactoryConfiguration(componentname, "?");
delay();
}
getConfigurationsDisabledThenEnable(componentname, 0, -1);
Hashtable<String, String> props = new Hashtable<String, String>();
props.put("service.pid", "myFactoryInstance");
final ComponentFactory factory = getComponentFactory(componentfactory);
final ComponentInstance instance = factory.newInstance(props);
TestCase.assertNotNull(instance);
TestCase.assertNotNull(instance.getInstance());
TestCase.assertTrue(instance.getInstance() instanceof SimpleService);
// check registered components
checkConfigurationCount(componentname, 1, ComponentConfigurationDTO.ACTIVE);
// check registered service
findServices(SimpleService.class.getName(), null, 1);
if (!createConfigBeforeEnable) {
factoryConfigPid = createFactoryConfiguration(componentname, "?");
delay();
// check registered components, again should only be 1
checkConfigurationCount(componentname, 1, ComponentConfigurationDTO.ACTIVE);
// check registered service
findServices(SimpleService.class.getName(), null, 1);
TestCase.assertNotNull(instance.getInstance());
}
// delete the factory config
getConfigurationAdmin().getConfiguration(factoryConfigPid).delete();
delay();
// check registered components, again should only be 1
checkConfigurationCount(componentname, 1, ComponentConfigurationDTO.ACTIVE);
instance.dispose();
// check registered components
checkConfigurationCount(componentname, 0, ComponentConfigurationDTO.ACTIVE);
}
use of org.apache.felix.scr.integration.components.SimpleService in project felix by apache.
the class PersistentComponentFactoryTest method test_component_factory_referredTo.
@Test
public void test_component_factory_referredTo() throws Exception {
// set up the component that refers to the service the factory will create.
final String referringComponentName = "ComponentReferringToFactoryObject";
getConfigurationsDisabledThenEnable(referringComponentName, 1, ComponentConfigurationDTO.UNSATISFIED_REFERENCE);
final String componentname = "factory.component.referred";
final String componentfactory = "factory.component.factory.referred";
getConfigurationsDisabledThenEnable(componentname, 0, -1);
TestCase.assertNull(SimpleComponent.INSTANCE);
Hashtable<String, String> props = new Hashtable<String, String>();
props.put("service.pid", "myFactoryInstance");
final ComponentFactory factory = getComponentFactory(componentfactory);
final ComponentInstance instance = factory.newInstance(props);
TestCase.assertNotNull(instance);
TestCase.assertNotNull(instance.getInstance());
TestCase.assertTrue(instance.getInstance() instanceof SimpleService);
// The referring service should now be active
checkConfigurationCount(referringComponentName, 1, ComponentConfigurationDTO.ACTIVE);
instance.dispose();
// SCR 112.12.6.2
TestCase.assertNull(instance.getInstance());
// make sure it's unsatisfied (service is no longer available)
checkConfigurationCount(referringComponentName, 1, ComponentConfigurationDTO.UNSATISFIED_REFERENCE);
}
Aggregations