blob: 8ee78a8f71b06b7b5b58d9e5f49c9d6eb9b7e84b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Composent, Inc. and others. 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:
* Composent - initial API and implementation
******************************************************************************/
package org.eclipse.ecf.tests.distribution.r_osgi.wss;
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.AbstractTwoRemoteServiceAccessTest;
public class R_OSGiWSSTwoRemoteServiceAccessTest extends AbstractTwoRemoteServiceAccessTest {
private static final String CONTAINER_TYPE_NAME = "ecf.r_osgi.peer.wss";
private static final String SERVER_IDENTITY = "r-osgi.wss://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("ecf.r_osgi.peer.wss",
new Object[] { IDFactory.getDefault().createStringID(
"r-osgi.wss://localhost:"+(9279+index)) });
}
protected IContainer createServer() throws Exception {
serverID = IDFactory.getDefault().createID("ecf.namespace.r_osgi.wss",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;
}
}