Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e2b3122c1314ab1c1db456c17b4619ed3dc7d4f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*******************************************************************************
 * Copyright (c) 2009 Markus Alexander Kuppe.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Markus Alexander Kuppe (ecf-dev_eclipse.org <at> lemmster <dot> de) - initial API and implementation
 ******************************************************************************/
package org.eclipse.ecf.tests.discovery;

import java.net.URI;
import java.util.Comparator;
import java.util.Properties;
import java.util.Random;

import junit.framework.TestCase;

import org.eclipse.ecf.discovery.IDiscoveryAdvertiser;
import org.eclipse.ecf.discovery.IDiscoveryLocator;
import org.eclipse.ecf.discovery.IServiceInfo;
import org.eclipse.ecf.discovery.ServiceInfo;
import org.eclipse.ecf.discovery.ServiceProperties;
import org.eclipse.ecf.discovery.identity.IServiceTypeID;
import org.eclipse.ecf.discovery.identity.ServiceIDFactory;

public abstract class AbstractDiscoveryTest extends TestCase {
	private final Random random;

	protected IServiceInfo serviceInfo;
	protected String protocol = DiscoveryTestHelper.PROTOCOL;
	protected String scope = DiscoveryTestHelper.SCOPE;
	protected String namingAuthority = DiscoveryTestHelper.NAMINGAUTHORITY;
	protected Comparator comparator = new ServiceInfoComparator();

	protected String containerUnderTest;
	protected IDiscoveryLocator discoveryLocator = null;
	protected IDiscoveryAdvertiser discoveryAdvertiser = null;
	
	public AbstractDiscoveryTest(String name) {
		super();
		this.containerUnderTest = name;
		this.random = new Random();
	}

	protected abstract IDiscoveryLocator getDiscoveryLocator();

	protected abstract IDiscoveryAdvertiser getDiscoveryAdvertiser();

	protected void setComparator(Comparator comparator) {
		this.comparator = comparator;
	}

	protected void setProtocol(String protocol) {
		this.protocol = protocol;
	}

	protected void setScope(String scope) {
		this.scope = scope;
	}

	protected void setNamingAuthority(String namingAuthority) {
		this.namingAuthority = namingAuthority;
	}

	protected void setUp() throws Exception {
		super.setUp();
		assertNotNull(containerUnderTest);
		assertTrue(containerUnderTest.startsWith("ecf.discovery."));
	
		discoveryLocator = getDiscoveryLocator();
		discoveryAdvertiser = getDiscoveryAdvertiser();
		assertNotNull(discoveryLocator);
		assertNotNull(discoveryAdvertiser);
	
		final Properties props = new Properties();
		final URI uri = DiscoveryTestHelper.createDefaultURI();
	
		IServiceTypeID serviceTypeID = ServiceIDFactory.getDefault().createServiceTypeID(discoveryLocator.getServicesNamespace(), DiscoveryTestHelper.SERVICES, new String[]{protocol});
		assertNotNull(serviceTypeID);
		final ServiceProperties serviceProperties = new ServiceProperties(props);
		serviceProperties.setPropertyString(getClass() + "testIdentifier", Long.toString(random.nextLong()));
		serviceProperties.setPropertyString(getName() + "servicePropertiesString", "serviceProperties");
		serviceProperties.setProperty(getName() + "servicePropertiesIntegerMax", new Integer(Integer.MIN_VALUE));
		serviceProperties.setProperty(getName() + "servicePropertiesIntegerMin", new Integer(Integer.MAX_VALUE));
		serviceProperties.setProperty(getName() + "servicePropertiesBoolean", new Boolean(false));
		serviceProperties.setPropertyBytes(getName() + "servicePropertiesByte", new byte[]{-127, -126, -125, 0, 1, 2, 3, 'a', 'b', 'c', 'd', 126, 127});
		serviceInfo = new ServiceInfo(uri, DiscoveryTestHelper.SERVICENAME, serviceTypeID, 1, 1, serviceProperties);
		assertNotNull(serviceInfo);
	}

}

Back to the top