Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6b984ea3bb7503d76598b1251f30c77f56a168ad (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
/****************************************************************************
 * Copyright (c) 2015 Composent, Inc. and others.
 *
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * Contributors:
 *   Composent, Inc. - initial API and implementation
 *
 * SPDX-License-Identifier: EPL-2.0
 *****************************************************************************/
package org.eclipse.ecf.tests.osgi.services.distribution.r_osgi.ws;


import java.util.Properties;

import org.eclipse.ecf.core.ContainerFactory;
import org.eclipse.ecf.core.IContainer;
import org.eclipse.ecf.core.identity.IDFactory;
import org.eclipse.ecf.osgi.services.distribution.IDistributionConstants;
import org.eclipse.ecf.tests.osgi.services.distribution.AbstractRemoteServiceAccessTest;


public class R_OSGiWSRemoteServiceAccessTest extends AbstractRemoteServiceAccessTest {

	private static final String CONTAINER_TYPE_NAME = "ecf.r_osgi.peer.ws";
	
	private static final String SERVER_IDENTITY = "r-osgi.ws://localhost";
	
	/*
	 * (non-Javadoc)
	 * 
	 * @see junit.framework.TestCase#setUp()
	 */
	protected void setUp() throws Exception {
		super.setUp();
		setClientCount(1);
		createServerAndClients();
		setupRemoteServiceAdapters();
	}

	
	protected void tearDown() throws Exception {
		cleanUpServerAndClients();
		super.tearDown();
	}

	protected IContainer createClient(int index) throws Exception {
		return ContainerFactory.getDefault().createContainer(CONTAINER_TYPE_NAME,
				new Object[] { IDFactory.getDefault().createStringID(
				"r-osgi.ws://localhost:"+(9279+index)) });
	}
	
	protected IContainer createServer() throws Exception {
		serverID = IDFactory.getDefault().createID("ecf.namespace.r_osgi.ws",SERVER_IDENTITY);
		return ContainerFactory.getDefault().createContainer(CONTAINER_TYPE_NAME,serverID);
	}

	protected String getClientContainerName() {
		return CONTAINER_TYPE_NAME;
	}

	protected String getServerIdentity() {
		return SERVER_IDENTITY;
	}
	
	protected String getServerContainerName() {
		return CONTAINER_TYPE_NAME;
	}
	
	protected Properties getServiceProperties() {
		Properties props = super.getServiceProperties();
		props.put(IDistributionConstants.SERVICE_EXPORTED_CONTAINER_ID, serverID);
		return props;
	}
}

Back to the top