use of ch.ethz.iks.slp.ServiceURL in project ecf by eclipse.
the class JSLPServiceIDTest method testCreateByjSLPAndRemoveServicePrefixWithServiceService.
/* (non-Javadoc)
* @see org.eclipse.ecf.tests.discovery.identity.ServiceIDTest#testRemoveServicePrefixWithServiceService()
*
* test from jSLP -> ECF discovery which needs to remove the first occurrence of "service:"
*/
public void testCreateByjSLPAndRemoveServicePrefixWithServiceService() throws ServiceLocationException {
final String internalRep = "service:service.eclipse:foo:bar";
final ServiceURL sUrl = new ServiceURL(internalRep + "://localhost:1234/a/path/to/something", ServiceURL.LIFETIME_PERMANENT);
final IServiceInfo serviceInfo = new JSLPServiceInfo(DiscoveryTestHelper.SERVICENAME, new ServiceURLAdapter(sUrl), DiscoveryTestHelper.PRIORITY, DiscoveryTestHelper.WEIGHT, new ServicePropertiesAdapter(new ArrayList()));
assertEquals(serviceInfo.getPriority(), DiscoveryTestHelper.PRIORITY);
assertEquals(serviceInfo.getWeight(), DiscoveryTestHelper.WEIGHT);
final IServiceID sid = serviceInfo.getServiceID();
assertEquals(serviceInfo.getServiceName(), DiscoveryTestHelper.SERVICENAME);
final IServiceTypeID stid = sid.getServiceTypeID();
assertEquals(internalRep, stid.getInternal());
assertEquals("_service._foo._bar._" + IServiceTypeID.DEFAULT_PROTO[0] + "." + IServiceTypeID.DEFAULT_SCOPE[0] + "._eclipse", stid.getName());
assertEquals("eclipse", stid.getNamingAuthority());
assertTrue(Arrays.equals(new String[] { "service", "foo", "bar" }, stid.getServices()));
assertTrue(Arrays.equals(IServiceTypeID.DEFAULT_SCOPE, stid.getScopes()));
assertTrue(Arrays.equals(IServiceTypeID.DEFAULT_PROTO, stid.getProtocols()));
}
use of ch.ethz.iks.slp.ServiceURL in project ecf by eclipse.
the class ServiceURLTest method testServiceURLNamingAuthorityIana.
public void testServiceURLNamingAuthorityIana() throws Exception {
String urlString = "service:test.iana://http://localhost";
ServiceURL url = new ServiceURL(urlString, 0);
assertEquals(url.getServiceType().toString(), "service:test");
assertEquals(url.getHost(), "localhost");
assertEquals(url.getPort(), 0);
assertEquals(url.getURLPath(), "");
assertEquals(url.getUserInfo(), "");
assertEquals(url.getProtocol(), "http");
assertEquals(url.toString(), "service:test://http://localhost");
assertTrue("".equals(url.getServiceType().getNamingAuthority()));
}
use of ch.ethz.iks.slp.ServiceURL in project ecf by eclipse.
the class ServiceURLTest method testServiceURL258252a.
// https://bugs.eclipse.org/258252
public void testServiceURL258252a() throws Exception {
String urlString = "service:test:myservice://localhost:80/my:path";
ServiceURL url = new ServiceURL(urlString, 0);
assertEquals(url.getServiceType().toString(), "service:test:myservice");
assertEquals(url.getHost(), "localhost");
assertEquals(url.getPort(), 80);
assertEquals(url.getURLPath(), "/my:path");
assertEquals(url.getUserInfo(), "");
assertEquals(url.getProtocol(), null);
assertEquals(url.toString(), urlString);
}
use of ch.ethz.iks.slp.ServiceURL in project ecf by eclipse.
the class ServiceURLTest method testServiceURL5.
public void testServiceURL5() throws Exception {
String urlString = "service:test:myservice://http://localhost:8080/my/path";
ServiceURL url = new ServiceURL(urlString, 0);
assertEquals(url.getServiceType().toString(), "service:test:myservice");
assertEquals(url.getHost(), "localhost");
assertEquals(url.getPort(), 8080);
assertEquals(url.getURLPath(), "/my/path");
assertEquals(url.getUserInfo(), "");
assertEquals(url.getProtocol(), "http");
assertEquals(url.toString(), urlString);
}
use of ch.ethz.iks.slp.ServiceURL in project ecf by eclipse.
the class ServiceURLTest method testServiceURL6.
public void testServiceURL6() throws Exception {
String urlString = "service:test://http://localhost";
ServiceURL url = new ServiceURL(urlString, 0);
assertEquals(url.getServiceType().toString(), "service:test");
assertEquals(url.getHost(), "localhost");
assertEquals(url.getPort(), 0);
assertEquals(url.getURLPath(), "");
assertEquals(url.getUserInfo(), "");
assertEquals(url.getProtocol(), "http");
assertEquals(url.toString(), urlString);
}
Aggregations