Search in sources :

Example 36 with IServiceInfo

use of org.eclipse.ecf.discovery.IServiceInfo in project ecf by eclipse.

the class ServiceInfoFactoryTest method testCreateServiceInfoFromMinimalEndpointDescription.

public void testCreateServiceInfoFromMinimalEndpointDescription() throws Exception {
    IServiceInfo serviceInfo = createServiceInfoForDiscovery(createRequiredEndpointDescription());
    assertNotNull(serviceInfo);
}
Also used : IServiceInfo(org.eclipse.ecf.discovery.IServiceInfo)

Example 37 with IServiceInfo

use of org.eclipse.ecf.discovery.IServiceInfo in project ecf by eclipse.

the class ServiceInfoFactoryTest method testCreateServiceInfoFromFullEndpointDescription.

public void testCreateServiceInfoFromFullEndpointDescription() throws Exception {
    IServiceInfo serviceInfo = createServiceInfoForDiscovery(createFullEndpointDescription());
    assertNotNull(serviceInfo);
}
Also used : IServiceInfo(org.eclipse.ecf.discovery.IServiceInfo)

Example 38 with IServiceInfo

use of org.eclipse.ecf.discovery.IServiceInfo in project ecf by eclipse.

the class ServiceInfoTest method testServiceInfo.

/**
 * Test method for {@link java.lang.Object#hashCode()}.
 */
// public void testHashCode() {
// fail("Not yet implemented. How should equality be defined anyway?");
// }
/**
 * Test method for {@link java.lang.Object#equals(java.lang.Object)}.
 */
// public void testEquals() {
// fail("Not yet implemented. How should equality be defined anyway?");
// }
/**
 * Test method for {@link org.eclipse.ecf.discovery.ServiceInfo}.
 */
public void testServiceInfo() {
    IServiceInfo si = null;
    try {
        si = getServiceInfo(serviceInfo);
    } catch (final SecurityException e) {
        fail();
    }
    assertTrue(serviceInfoComparator.compare(si, serviceInfo) == 0);
}
Also used : IServiceInfo(org.eclipse.ecf.discovery.IServiceInfo)

Example 39 with IServiceInfo

use of org.eclipse.ecf.discovery.IServiceInfo in project ecf by eclipse.

the class DiscoveryServiceTest method testAddServiceListenerIServiceListenerOSGi.

public void testAddServiceListenerIServiceListenerOSGi() throws ContainerConnectException {
    IServiceInfo[] services = discoveryLocator.getServices();
    assertTrue("No Services must be registerd at this point " + (services.length == 0 ? "" : services[0].toString()), services.length == 0);
    final TestServiceListener tsl = new TestServiceListener(eventsToExpect, discoveryLocator, getName(), getTestId());
    Properties props = new Properties();
    props.put(IDiscoveryLocator.CONTAINER_NAME, containerUnderTest);
    BundleContext ctxt = Activator.getDefault().getContext();
    ServiceRegistration registration = ctxt.registerService(IServiceListener.class.getName(), tsl, props);
    addListenerRegisterAndWait(tsl, serviceInfo);
    registration.unregister();
    IContainerEvent[] event = tsl.getEvent();
    assertNotNull("Test listener didn't receive any discovery event", event);
    assertEquals("Test listener received unexpected amount of discovery events: \n\t" + Arrays.asList(event), eventsToExpect, event.length);
    IServiceInfo serviceInfo2 = ((IServiceEvent) event[eventsToExpect - 1]).getServiceInfo();
    assertTrue("IServiceInfo should match, expected:\n\t" + serviceInfo + " but was \n\t" + serviceInfo2, comparator.compare(serviceInfo2, serviceInfo) == 0);
}
Also used : ThreadTestServiceListener(org.eclipse.ecf.tests.discovery.listener.ThreadTestServiceListener) TestServiceListener(org.eclipse.ecf.tests.discovery.listener.TestServiceListener) IServiceListener(org.eclipse.ecf.discovery.IServiceListener) IServiceInfo(org.eclipse.ecf.discovery.IServiceInfo) IContainerEvent(org.eclipse.ecf.core.events.IContainerEvent) Properties(java.util.Properties) IServiceEvent(org.eclipse.ecf.discovery.IServiceEvent) BundleContext(org.osgi.framework.BundleContext) ServiceRegistration(org.osgi.framework.ServiceRegistration)

Example 40 with IServiceInfo

use of org.eclipse.ecf.discovery.IServiceInfo in project ecf by eclipse.

the class DiscoveryServiceTest method testAddServiceListenerWithRefresh.

public void testAddServiceListenerWithRefresh() {
    IServiceInfo[] services = discoveryLocator.getServices();
    assertTrue("No Services must be registerd at this point " + (services.length == 0 ? "" : services[0].toString()), services.length == 0);
    final ThreadTestServiceListener tsl = new ThreadTestServiceListener(eventsToExpect, discoveryLocator, getName(), getTestId());
    // OSGi
    final Properties props = new Properties();
    props.put(IDiscoveryLocator.CONTAINER_NAME, containerUnderTest);
    final BundleContext ctxt = Activator.getDefault().getContext();
    // Lock the listener first so that we won't miss any discovery event
    synchronized (tsl) {
        registerService();
        // Check that services have been registered successfully
        services = discoveryLocator.getServices();
        assertTrue(eventsToExpect + " services must be registerd at this point " + (services.length > 0 ? "" : services.toString()), services.length == eventsToExpect);
        // Register listener with OSGi
        ServiceRegistration registration = ctxt.registerService(IServiceListener.class.getName(), tsl, props);
        // register a service which we expect the test listener to get notified of
        try {
            tsl.wait(waitTimeForProvider);
        } catch (final InterruptedException e) {
            Thread.currentThread().interrupt();
            fail("Some discovery unrelated threading issues?");
        } finally {
            registration.unregister();
        }
    }
    final IContainerEvent[] event = tsl.getEvent();
    assertNotNull("Test listener didn't receive any discovery event", event);
    // Diff the expected ids with what actually has been discovered. The
    // remainig events are those missing.
    final Set ids = new HashSet(idsToExpect);
    ids.removeAll(getContainerIds(event));
    assertTrue("Test misses " + ids.size() + " event(s) from container(s) out of " + idsToExpect + ". Those Ids are: " + ids, ids.size() == 0);
    assertEquals("Test listener received unexpected amount of discovery events: \n\t" + Arrays.asList(event), eventsToExpect, event.length);
    assertTrue("Discovery event must have originated from backend thread. Thread is: " + tsl.getCallingThread(), Thread.currentThread() != tsl.getCallingThread() && tsl.getCallingThread() != null);
    IServiceInfo serviceInfo2 = ((IServiceEvent) event[eventsToExpect - 1]).getServiceInfo();
    assertTrue("IServiceInfo should match, expected:\n\t" + serviceInfo + " but was \n\t" + serviceInfo2, comparator.compare(serviceInfo2, serviceInfo) == 0);
}
Also used : IServiceListener(org.eclipse.ecf.discovery.IServiceListener) Set(java.util.Set) HashSet(java.util.HashSet) ThreadTestServiceListener(org.eclipse.ecf.tests.discovery.listener.ThreadTestServiceListener) IServiceInfo(org.eclipse.ecf.discovery.IServiceInfo) IContainerEvent(org.eclipse.ecf.core.events.IContainerEvent) Properties(java.util.Properties) IServiceEvent(org.eclipse.ecf.discovery.IServiceEvent) BundleContext(org.osgi.framework.BundleContext) ServiceRegistration(org.osgi.framework.ServiceRegistration) HashSet(java.util.HashSet)

Aggregations

IServiceInfo (org.eclipse.ecf.discovery.IServiceInfo)47 IContainerEvent (org.eclipse.ecf.core.events.IContainerEvent)8 IServiceTypeID (org.eclipse.ecf.discovery.identity.IServiceTypeID)8 Properties (java.util.Properties)7 URI (java.net.URI)6 IServiceEvent (org.eclipse.ecf.discovery.IServiceEvent)6 IServiceID (org.eclipse.ecf.discovery.identity.IServiceID)6 BundleContext (org.osgi.framework.BundleContext)6 ArrayList (java.util.ArrayList)5 ExecutionException (org.eclipse.core.commands.ExecutionException)5 ServiceRegistration (org.osgi.framework.ServiceRegistration)5 IServiceListener (org.eclipse.ecf.discovery.IServiceListener)4 ServiceInfo (org.eclipse.ecf.discovery.ServiceInfo)4 TestServiceListener (org.eclipse.ecf.tests.discovery.listener.TestServiceListener)4 ThreadTestServiceListener (org.eclipse.ecf.tests.discovery.listener.ThreadTestServiceListener)4 ServiceURL (ch.ethz.iks.slp.ServiceURL)3 List (java.util.List)3 IDCreateException (org.eclipse.ecf.core.identity.IDCreateException)3 IServiceProperties (org.eclipse.ecf.discovery.IServiceProperties)3 Iterator (java.util.Iterator)2