Package org.eclipse.ecf.tests.discovery

Source Code of org.eclipse.ecf.tests.discovery.DiscoveryContainerTest

/*******************************************************************************
* 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 org.eclipse.ecf.core.ContainerCreateException;
import org.eclipse.ecf.core.ContainerFactory;
import org.eclipse.ecf.core.IContainer;
import org.eclipse.ecf.discovery.IDiscoveryAdvertiser;
import org.eclipse.ecf.discovery.IDiscoveryLocator;

public abstract class DiscoveryContainerTest extends DiscoveryTest {
  protected IContainer container = null;

  public DiscoveryContainerTest(String name) {
    super(name);
  }
 
  protected IDiscoveryLocator getDiscoveryLocator() {
    final IDiscoveryLocator adapter = (IDiscoveryLocator) container.getAdapter(IDiscoveryLocator.class);
    assertNotNull("Adapter must not be null", adapter);
    return adapter;
  }

  protected IDiscoveryAdvertiser getDiscoveryAdvertiser() {
    final IDiscoveryAdvertiser adapter = (IDiscoveryAdvertiser) container.getAdapter(IDiscoveryAdvertiser.class);
    assertNotNull("Adapter must not be null", adapter);
    return adapter;
  }

  protected IContainer getContainer(String containerUnderTest) throws ContainerCreateException {
    return ContainerFactory.getDefault().createContainer(containerUnderTest);
  }

  /* (non-Javadoc)
   * @see org.eclipse.ecf.tests.discovery.DiscoveryTest#tearDown()
   */
  protected void tearDown() throws Exception {
    super.tearDown();
    container.disconnect();
    container.dispose();
  }

  /* (non-Javadoc)
   * @see org.eclipse.ecf.tests.discovery.AbstractDiscoveryTest#setUp()
   */
  protected void setUp() throws Exception {
    container = getContainer(containerUnderTest);
    assertNotNull(container);
    container.connect(null, null);
    super.setUp();
  }

}
TOP

Related Classes of org.eclipse.ecf.tests.discovery.DiscoveryContainerTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.