Search in sources :

Example 96 with CheckService

use of org.apache.felix.ipojo.runtime.core.test.services.CheckService in project felix by apache.

the class TestTransformingServices method testTransformationOfFoo.

@Test
public void testTransformationOfFoo() {
    // Create the interceptor
    Properties configuration = new Properties();
    configuration.put("target", "(dependency.id=foo)");
    ipojoHelper.createComponentInstance("org.apache.felix.ipojo.runtime.core.test.interceptors" + ".AddLocationTrackingInterceptor", configuration);
    // Create the FooConsumer
    ipojoHelper.createComponentInstance("org.apache.felix.ipojo.runtime.core.test.components.FooConsumer");
    osgiHelper.waitForService(CheckService.class.getName(), null, 1000, true);
    CheckService check = osgiHelper.getServiceObject(CheckService.class);
    assertThat(check.check());
    @SuppressWarnings("unchecked") Map<String, ?> props = (Map<String, ?>) check.getProps().get("props");
    assertThat(props.get("location")).isEqualTo("kitchen");
    assertThat(props.get("hidden")).isNull();
}
Also used : Properties(java.util.Properties) CheckService(org.apache.felix.ipojo.runtime.core.test.services.CheckService) Map(java.util.Map) Test(org.junit.Test)

Example 97 with CheckService

use of org.apache.felix.ipojo.runtime.core.test.services.CheckService in project felix by apache.

the class TestCollectionMultipleDependencies method testSimple.

@Test
public void testSimple() {
    ServiceReference arch_ref = ipojoHelper.getServiceReferenceByName(Architecture.class.getName(), instance1.getInstanceName());
    assertNotNull("Check architecture availability", arch_ref);
    InstanceDescription id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance invalidity - 1", id.getState() == ComponentInstance.INVALID);
    fooProvider1.start();
    id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance validity - 2", id.getState() == ComponentInstance.VALID);
    ServiceReference cs_ref = ipojoHelper.getServiceReferenceByName(CheckService.class.getName(), instance1.getInstanceName());
    assertNotNull("Check CheckService availability", cs_ref);
    CheckService cs = (CheckService) osgiHelper.getRawServiceObject(cs_ref);
    Properties props = cs.getProps();
    // Check properties
    // True, a provider is here
    assertTrue("check CheckService invocation - 1", ((Boolean) props.get("result")).booleanValue());
    assertEquals("check void bind invocation - 1", ((Integer) props.get("voidB")).intValue(), 0);
    assertEquals("check void unbind callback invocation - 1", ((Integer) props.get("voidU")).intValue(), 0);
    assertEquals("check object bind callback invocation - 1", ((Integer) props.get("objectB")).intValue(), 0);
    assertEquals("check object unbind callback invocation - 1", ((Integer) props.get("objectU")).intValue(), 0);
    assertEquals("check ref bind callback invocation - 1", ((Integer) props.get("refB")).intValue(), 0);
    assertEquals("check ref unbind callback invocation - 1", ((Integer) props.get("refU")).intValue(), 0);
    assertEquals("Check FS invocation (int) - 1", ((Integer) props.get("int")).intValue(), 1);
    assertEquals("Check FS invocation (long) - 1", ((Long) props.get("long")).longValue(), 1);
    assertEquals("Check FS invocation (double) - 1", ((Double) props.get("double")).doubleValue(), 1.0, 0);
    fooProvider2.start();
    id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance validity - 3", id.getState() == ComponentInstance.VALID);
    cs = (CheckService) osgiHelper.getRawServiceObject(cs_ref);
    props = cs.getProps();
    // Check properties
    // True, two providers are here
    assertTrue("check CheckService invocation - 2", ((Boolean) props.get("result")).booleanValue());
    assertEquals("check void bind invocation - 2", ((Integer) props.get("voidB")).intValue(), 0);
    assertEquals("check void unbind callback invocation - 2", ((Integer) props.get("voidU")).intValue(), 0);
    assertEquals("check object bind callback invocation - 2", ((Integer) props.get("objectB")).intValue(), 0);
    assertEquals("check object unbind callback invocation - 2", ((Integer) props.get("objectU")).intValue(), 0);
    assertEquals("check ref bind callback invocation - 2", ((Integer) props.get("refB")).intValue(), 0);
    assertEquals("check ref unbind callback invocation - 2", ((Integer) props.get("refU")).intValue(), 0);
    assertEquals("Check FS invocation (int) - 2", ((Integer) props.get("int")).intValue(), 2);
    assertEquals("Check FS invocation (long) - 2", ((Long) props.get("long")).longValue(), 2);
    assertEquals("Check FS invocation (double) - 2", ((Double) props.get("double")).doubleValue(), 2.0, 0);
    fooProvider1.stop();
    id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance validity - 4", id.getState() == ComponentInstance.VALID);
    cs = (CheckService) osgiHelper.getRawServiceObject(cs_ref);
    props = cs.getProps();
    // Check properties
    // True, two providers are here
    assertTrue("check CheckService invocation - 3", ((Boolean) props.get("result")).booleanValue());
    assertEquals("check void bind invocation - 3", ((Integer) props.get("voidB")).intValue(), 0);
    assertEquals("check void unbind callback invocation - 3", ((Integer) props.get("voidU")).intValue(), 0);
    assertEquals("check object bind callback invocation - 3", ((Integer) props.get("objectB")).intValue(), 0);
    assertEquals("check object unbind callback invocation - 3", ((Integer) props.get("objectU")).intValue(), 0);
    assertEquals("check ref bind callback invocation - 3", ((Integer) props.get("refB")).intValue(), 0);
    assertEquals("check ref unbind callback invocation - 3", ((Integer) props.get("refU")).intValue(), 0);
    assertEquals("Check FS invocation (int) - 3", ((Integer) props.get("int")).intValue(), 1);
    assertEquals("Check FS invocation (long) - 3", ((Long) props.get("long")).longValue(), 1);
    assertEquals("Check FS invocation (double) - 3", ((Double) props.get("double")).doubleValue(), 1.0, 0);
    fooProvider2.stop();
    id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance validity - 5", id.getState() == ComponentInstance.INVALID);
}
Also used : Architecture(org.apache.felix.ipojo.architecture.Architecture) InstanceDescription(org.apache.felix.ipojo.architecture.InstanceDescription) CheckService(org.apache.felix.ipojo.runtime.core.test.services.CheckService) Properties(java.util.Properties) ServiceReference(org.osgi.framework.ServiceReference) Test(org.junit.Test)

Example 98 with CheckService

use of org.apache.felix.ipojo.runtime.core.test.services.CheckService in project felix by apache.

the class TestCollectionMultipleDependencies method testOptional.

@Test
public void testOptional() {
    ServiceReference arch_ref = ipojoHelper.getServiceReferenceByName(Architecture.class.getName(), instance2.getInstanceName());
    assertNotNull("Check architecture availability", arch_ref);
    InstanceDescription id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance validity - 1", id.getState() == ComponentInstance.VALID);
    ServiceReference cs_ref = ipojoHelper.getServiceReferenceByName(CheckService.class.getName(), instance2.getInstanceName());
    assertNotNull("Check CheckService availability", cs_ref);
    CheckService cs = (CheckService) osgiHelper.getRawServiceObject(cs_ref);
    Properties props = cs.getProps();
    // Check properties
    // False : no provider
    assertFalse("check CheckService invocation - 0", ((Boolean) props.get("result")).booleanValue());
    assertEquals("check void bind invocation - 0", ((Integer) props.get("voidB")).intValue(), 0);
    assertEquals("check void unbind callback invocation - 0", ((Integer) props.get("voidU")).intValue(), 0);
    assertEquals("check object bind callback invocation - 0", ((Integer) props.get("objectB")).intValue(), 0);
    assertEquals("check object unbind callback invocation - 0", ((Integer) props.get("objectU")).intValue(), 0);
    assertEquals("check ref bind callback invocation - 0", ((Integer) props.get("refB")).intValue(), 0);
    assertEquals("check ref unbind callback invocation - 0", ((Integer) props.get("refU")).intValue(), 0);
    assertEquals("Check FS invocation (int) - 0", ((Integer) props.get("int")).intValue(), 0);
    assertEquals("Check FS invocation (long) - 0", ((Long) props.get("long")).longValue(), 0);
    assertEquals("Check FS invocation (double) - 0", ((Double) props.get("double")).doubleValue(), 0.0, 0);
    fooProvider1.start();
    id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance validity - 2", id.getState() == ComponentInstance.VALID);
    cs = (CheckService) osgiHelper.getRawServiceObject(cs_ref);
    props = cs.getProps();
    // Check properties
    // True, a provider is here
    assertTrue("check CheckService invocation - 1", ((Boolean) props.get("result")).booleanValue());
    assertEquals("check void bind invocation - 1", ((Integer) props.get("voidB")).intValue(), 0);
    assertEquals("check void unbind callback invocation - 1", ((Integer) props.get("voidU")).intValue(), 0);
    assertEquals("check object bind callback invocation - 1", ((Integer) props.get("objectB")).intValue(), 0);
    assertEquals("check object unbind callback invocation - 1", ((Integer) props.get("objectU")).intValue(), 0);
    assertEquals("check ref bind callback invocation - 1", ((Integer) props.get("refB")).intValue(), 0);
    assertEquals("check ref unbind callback invocation - 1", ((Integer) props.get("refU")).intValue(), 0);
    assertEquals("Check FS invocation (int) - 1", ((Integer) props.get("int")).intValue(), 1);
    assertEquals("Check FS invocation (long) - 1", ((Long) props.get("long")).longValue(), 1);
    assertEquals("Check FS invocation (double) - 1", ((Double) props.get("double")).doubleValue(), 1.0, 0);
    fooProvider2.start();
    id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance validity - 3", id.getState() == ComponentInstance.VALID);
    cs = (CheckService) osgiHelper.getRawServiceObject(cs_ref);
    props = cs.getProps();
    // Check properties
    // True, two providers are here
    assertTrue("check CheckService invocation - 2", ((Boolean) props.get("result")).booleanValue());
    assertEquals("check void bind invocation - 2", ((Integer) props.get("voidB")).intValue(), 0);
    assertEquals("check void unbind callback invocation - 2", ((Integer) props.get("voidU")).intValue(), 0);
    assertEquals("check object bind callback invocation - 2", ((Integer) props.get("objectB")).intValue(), 0);
    assertEquals("check object unbind callback invocation - 2", ((Integer) props.get("objectU")).intValue(), 0);
    assertEquals("check ref bind callback invocation - 2", ((Integer) props.get("refB")).intValue(), 0);
    assertEquals("check ref unbind callback invocation - 2", ((Integer) props.get("refU")).intValue(), 0);
    assertEquals("Check FS invocation (int) - 2", ((Integer) props.get("int")).intValue(), 2);
    assertEquals("Check FS invocation (long) - 2", ((Long) props.get("long")).longValue(), 2);
    assertEquals("Check FS invocation (double) - 2", ((Double) props.get("double")).doubleValue(), 2.0, 0);
    fooProvider1.stop();
    id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance validity - 4", id.getState() == ComponentInstance.VALID);
    cs = (CheckService) osgiHelper.getRawServiceObject(cs_ref);
    props = cs.getProps();
    // Check properties
    // True, it still one provider.
    assertTrue("check CheckService invocation - 3", ((Boolean) props.get("result")).booleanValue());
    assertEquals("check void bind invocation - 3", ((Integer) props.get("voidB")).intValue(), 0);
    assertEquals("check void unbind callback invocation - 3", ((Integer) props.get("voidU")).intValue(), 0);
    assertEquals("check object bind callback invocation - 3", ((Integer) props.get("objectB")).intValue(), 0);
    assertEquals("check object unbind callback invocation - 3", ((Integer) props.get("objectU")).intValue(), 0);
    assertEquals("check ref bind callback invocation - 3", ((Integer) props.get("refB")).intValue(), 0);
    assertEquals("check ref unbind callback invocation - 3", ((Integer) props.get("refU")).intValue(), 0);
    assertEquals("Check FS invocation (int) - 3", ((Integer) props.get("int")).intValue(), 1);
    assertEquals("Check FS invocation (long) - 3", ((Long) props.get("long")).longValue(), 1);
    assertEquals("Check FS invocation (double) - 3", ((Double) props.get("double")).doubleValue(), 1.0, 0);
    fooProvider2.stop();
    id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance validity - 5", id.getState() == ComponentInstance.VALID);
    cs = (CheckService) osgiHelper.getRawServiceObject(cs_ref);
    props = cs.getProps();
    // Check properties
    // False, no more provider.
    assertFalse("check CheckService invocation - 4", ((Boolean) props.get("result")).booleanValue());
    assertEquals("check void bind invocation - 4", ((Integer) props.get("voidB")).intValue(), 0);
    assertEquals("check void unbind callback invocation - 4", ((Integer) props.get("voidU")).intValue(), 0);
    assertEquals("check object bind callback invocation - 4", ((Integer) props.get("objectB")).intValue(), 0);
    assertEquals("check object unbind callback invocation - 4", ((Integer) props.get("objectU")).intValue(), 0);
    assertEquals("check ref bind callback invocation - 4", ((Integer) props.get("refB")).intValue(), 0);
    assertEquals("check ref unbind callback invocation - 4", ((Integer) props.get("refU")).intValue(), 0);
    assertEquals("Check FS invocation (int) - 4", ((Integer) props.get("int")).intValue(), 0);
    assertEquals("Check FS invocation (long) - 4", ((Long) props.get("long")).longValue(), 0);
    assertEquals("Check FS invocation (double) - 4", ((Double) props.get("double")).doubleValue(), 0.0, 0);
}
Also used : Architecture(org.apache.felix.ipojo.architecture.Architecture) InstanceDescription(org.apache.felix.ipojo.architecture.InstanceDescription) CheckService(org.apache.felix.ipojo.runtime.core.test.services.CheckService) Properties(java.util.Properties) ServiceReference(org.osgi.framework.ServiceReference) Test(org.junit.Test)

Example 99 with CheckService

use of org.apache.felix.ipojo.runtime.core.test.services.CheckService in project felix by apache.

the class TestDelayedMultipleDependencies method testVoid.

@Test
public void testVoid() {
    instance2.start();
    ServiceReference arch_ref = ipojoHelper.getServiceReferenceByName(Architecture.class.getName(), instance2.getInstanceName());
    assertNotNull("Check architecture availability", arch_ref);
    InstanceDescription id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance invalidity - 1", id.getState() == ComponentInstance.VALID);
    ServiceReference cs_ref = ipojoHelper.getServiceReferenceByName(CheckService.class.getName(), instance2.getInstanceName());
    assertNotNull("Check CheckService availability", cs_ref);
    CheckService cs = (CheckService) osgiHelper.getRawServiceObject(cs_ref);
    Properties props = cs.getProps();
    // Check properties
    // True, a provider is here
    assertTrue("check CheckService invocation - 1", ((Boolean) props.get("result")).booleanValue());
    assertEquals("check void bind invocation - 1", ((Integer) props.get("voidB")).intValue(), 2);
    assertEquals("check void unbind callback invocation - 1", ((Integer) props.get("voidU")).intValue(), 0);
    assertEquals("check object bind callback invocation - 1", ((Integer) props.get("objectB")).intValue(), 0);
    assertEquals("check object unbind callback invocation - 1", ((Integer) props.get("objectU")).intValue(), 0);
    assertEquals("check ref bind callback invocation - 1", ((Integer) props.get("refB")).intValue(), 0);
    assertEquals("check ref unbind callback invocation - 1", ((Integer) props.get("refU")).intValue(), 0);
    assertEquals("Check FS invocation (int) - 1", ((Integer) props.get("int")).intValue(), 2);
    assertEquals("Check FS invocation (long) - 1", ((Long) props.get("long")).longValue(), 2);
    assertEquals("Check FS invocation (double) - 1", ((Double) props.get("double")).doubleValue(), 2.0, 0);
    fooProvider1.stop();
    id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance validity - 2", id.getState() == ComponentInstance.VALID);
    cs = (CheckService) osgiHelper.getRawServiceObject(cs_ref);
    props = cs.getProps();
    // Check properties
    // True, two providers are here
    assertTrue("check CheckService invocation - 3", ((Boolean) props.get("result")).booleanValue());
    assertEquals("check void bind invocation - 3", ((Integer) props.get("voidB")).intValue(), 2);
    assertEquals("check void unbind callback invocation - 3", ((Integer) props.get("voidU")).intValue(), 1);
    assertEquals("check object bind callback invocation - 3", ((Integer) props.get("objectB")).intValue(), 0);
    assertEquals("check object unbind callback invocation - 3", ((Integer) props.get("objectU")).intValue(), 0);
    assertEquals("check ref bind callback invocation - 3", ((Integer) props.get("refB")).intValue(), 0);
    assertEquals("check ref unbind callback invocation - 3", ((Integer) props.get("refU")).intValue(), 0);
    assertEquals("Check FS invocation (int) - 3", ((Integer) props.get("int")).intValue(), 1);
    assertEquals("Check FS invocation (long) - 3", ((Long) props.get("long")).longValue(), 1);
    assertEquals("Check FS invocation (double) - 3", ((Double) props.get("double")).doubleValue(), 1.0, 0);
    fooProvider2.stop();
    id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance validity - 3", id.getState() == ComponentInstance.INVALID);
    instance2.stop();
}
Also used : Architecture(org.apache.felix.ipojo.architecture.Architecture) InstanceDescription(org.apache.felix.ipojo.architecture.InstanceDescription) CheckService(org.apache.felix.ipojo.runtime.core.test.services.CheckService) Properties(java.util.Properties) ServiceReference(org.osgi.framework.ServiceReference) Test(org.junit.Test)

Example 100 with CheckService

use of org.apache.felix.ipojo.runtime.core.test.services.CheckService in project felix by apache.

the class TestDelayedMultipleDependencies method testSimple.

@Test
public void testSimple() {
    instance1.start();
    ServiceReference arch_ref = ipojoHelper.getServiceReferenceByName(Architecture.class.getName(), instance1.getInstanceName());
    assertNotNull("Check architecture availability", arch_ref);
    InstanceDescription id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance invalidity - 1", id.getState() == ComponentInstance.VALID);
    ServiceReference cs_ref = ipojoHelper.getServiceReferenceByName(CheckService.class.getName(), instance1.getInstanceName());
    assertNotNull("Check CheckService availability", cs_ref);
    CheckService cs = (CheckService) osgiHelper.getRawServiceObject(cs_ref);
    Properties props = cs.getProps();
    // Check properties
    // True, a provider is here
    assertTrue("check CheckService invocation - 1", ((Boolean) props.get("result")).booleanValue());
    assertEquals("check void bind invocation - 1", ((Integer) props.get("voidB")).intValue(), 0);
    assertEquals("check void unbind callback invocation - 1", ((Integer) props.get("voidU")).intValue(), 0);
    assertEquals("check object bind callback invocation - 1", ((Integer) props.get("objectB")).intValue(), 0);
    assertEquals("check object unbind callback invocation - 1", ((Integer) props.get("objectU")).intValue(), 0);
    assertEquals("check ref bind callback invocation - 1", ((Integer) props.get("refB")).intValue(), 0);
    assertEquals("check ref unbind callback invocation - 1", ((Integer) props.get("refU")).intValue(), 0);
    assertEquals("Check FS invocation (int) - 1", ((Integer) props.get("int")).intValue(), 2);
    assertEquals("Check FS invocation (long) - 1", ((Long) props.get("long")).longValue(), 2);
    assertEquals("Check FS invocation (double) - 1", ((Double) props.get("double")).doubleValue(), 2.0, 0);
    fooProvider2.stop();
    id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance validity - 2", id.getState() == ComponentInstance.VALID);
    cs = (CheckService) osgiHelper.getRawServiceObject(cs_ref);
    props = cs.getProps();
    // Check properties
    // True, two providers are here
    assertTrue("check CheckService invocation - 2", ((Boolean) props.get("result")).booleanValue());
    assertEquals("check void bind invocation - 2", ((Integer) props.get("voidB")).intValue(), 0);
    assertEquals("check void unbind callback invocation - 2", ((Integer) props.get("voidU")).intValue(), 0);
    assertEquals("check object bind callback invocation - 2", ((Integer) props.get("objectB")).intValue(), 0);
    assertEquals("check object unbind callback invocation - 2", ((Integer) props.get("objectU")).intValue(), 0);
    assertEquals("check ref bind callback invocation - 2", ((Integer) props.get("refB")).intValue(), 0);
    assertEquals("check ref unbind callback invocation - 2", ((Integer) props.get("refU")).intValue(), 0);
    assertEquals("Check FS invocation (int) - 2", ((Integer) props.get("int")).intValue(), 1);
    assertEquals("Check FS invocation (long) - 2", ((Long) props.get("long")).longValue(), 1);
    assertEquals("Check FS invocation (double) - 2", ((Double) props.get("double")).doubleValue(), 1.0, 0);
    fooProvider1.stop();
    id = ((Architecture) osgiHelper.getRawServiceObject(arch_ref)).getInstanceDescription();
    assertTrue("Check instance validity - 3", id.getState() == ComponentInstance.INVALID);
    instance1.stop();
}
Also used : Architecture(org.apache.felix.ipojo.architecture.Architecture) InstanceDescription(org.apache.felix.ipojo.architecture.InstanceDescription) CheckService(org.apache.felix.ipojo.runtime.core.test.services.CheckService) Properties(java.util.Properties) ServiceReference(org.osgi.framework.ServiceReference) Test(org.junit.Test)

Aggregations

CheckService (org.apache.felix.ipojo.runtime.core.test.services.CheckService)245 Test (org.junit.Test)243 ServiceReference (org.osgi.framework.ServiceReference)233 Architecture (org.apache.felix.ipojo.architecture.Architecture)218 InstanceDescription (org.apache.felix.ipojo.architecture.InstanceDescription)213 Properties (java.util.Properties)208 ComponentInstance (org.apache.felix.ipojo.ComponentInstance)20 FooService (org.apache.felix.ipojo.runtime.core.test.services.FooService)20 Map (java.util.Map)5 PrimitiveInstanceDescription (org.apache.felix.ipojo.PrimitiveInstanceDescription)5 DependencyHandlerDescription (org.apache.felix.ipojo.handlers.dependency.DependencyHandlerDescription)5 ProvidedServiceHandlerDescription (org.apache.felix.ipojo.handlers.providedservice.ProvidedServiceHandlerDescription)5 Setter (org.apache.felix.ipojo.runtime.core.test.services.Setter)3 Dictionary (java.util.Dictionary)1 Hashtable (java.util.Hashtable)1 DependencyDescription (org.apache.felix.ipojo.handlers.dependency.DependencyDescription)1