blob: 9e8d700443defa89e4260002602965e655aedf55 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 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, Inc. - initial API and implementation
******************************************************************************/
package org.eclipse.ecf.tests.provider.local;
import org.eclipse.ecf.core.IContainer;
import org.eclipse.ecf.core.identity.ID;
import org.eclipse.ecf.core.identity.IDFactory;
import org.eclipse.ecf.remoteservice.IRemoteServiceContainerAdapter;
import org.eclipse.ecf.remoteservice.IRemoteServiceID;
import org.eclipse.ecf.tests.remoteservice.AbstractRemoteServiceTest;
public class LocalRemoteServiceTest extends AbstractRemoteServiceTest {
protected String getClientContainerName() {
return Local.CONTAINER_FACTORY_NAME;
}
protected String getServerContainerName() {
return Local.CONTAINER_FACTORY_NAME;
}
protected ID createServerID() throws Exception {
return IDFactory.getDefault().createGUID();
}
protected void setupRemoteServiceAdapters() throws Exception {
for (int i = 0; i < 2; i++) {
adapters[i] = (IRemoteServiceContainerAdapter) server
.getAdapter(IRemoteServiceContainerAdapter.class);
}
}
protected void setUp() throws Exception {
super.setUp();
setClientCount(1);
createServerAndClients();
adapters = new IRemoteServiceContainerAdapter[2];
ids = new IRemoteServiceID[2];
setupRemoteServiceAdapters();
}
protected void tearDown() throws Exception {
super.tearDown();
if (server != null) {
serverID = null;
server.dispose();
server = null;
}
}
protected IContainer createServer() throws Exception {
server = getContainerFactory().createContainer(Local.CONTAINER_FACTORY_NAME);
return server;
}
protected IContainer createClient(int index) throws Exception {
return server;
}
}