Search in sources :

Example 1 with SimpleService

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);
}
Also used : Hashtable(java.util.Hashtable) ComponentFactory(org.osgi.service.component.ComponentFactory) ComponentInstance(org.osgi.service.component.ComponentInstance) SimpleService(org.apache.felix.scr.integration.components.SimpleService) Test(org.junit.Test)

Example 2 with SimpleService

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);
}
Also used : Hashtable(java.util.Hashtable) ComponentFactory(org.osgi.service.component.ComponentFactory) ComponentInstance(org.osgi.service.component.ComponentInstance) SimpleService(org.apache.felix.scr.integration.components.SimpleService)

Example 3 with SimpleService

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);
}
Also used : Hashtable(java.util.Hashtable) ComponentFactory(org.osgi.service.component.ComponentFactory) ComponentInstance(org.osgi.service.component.ComponentInstance) SimpleService(org.apache.felix.scr.integration.components.SimpleService) Test(org.junit.Test)

Aggregations

Hashtable (java.util.Hashtable)3 SimpleService (org.apache.felix.scr.integration.components.SimpleService)3 ComponentFactory (org.osgi.service.component.ComponentFactory)3 ComponentInstance (org.osgi.service.component.ComponentInstance)3 Test (org.junit.Test)2