blob: 59955a7b0d5163a9a5d27da95e97b479a9aafbba [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006-2009, Cloudsmith Inc.
* The code, documentation and other materials contained herein have been
* licensed under the Eclipse Public License - v 1.0 by the copyright holder
* listed above, as the Initial Contributor under such license. The text of
* such license is available at www.eclipse.org.
******************************************************************************/
package org.eclipse.equinox.p2.tests.metadata.repository;
import junit.framework.*;
public class ServerBasedTestCase extends TestCase {
public ServerBasedTestCase() {
super();
}
public ServerBasedTestCase(String name) {
super(name);
}
public void run(TestResult result) {
Protectable p = new ProtectedRunner(result);
result.runProtected(this, p);
}
protected String getBaseURL() {
return "http://localhost:" + System.getProperty(AllServerTests.PROP_TESTSERVER_PORT, "8080");
}
protected void basicRun(TestResult result) {
super.run(result);
}
public static void oneTimeSetUp() throws Exception {
AllServerTests.checkSetUp();
}
public static void oneTimeTearDown() throws Exception {
AllServerTests.checkTearDown();
}
public void tearDown() throws Exception {
// if a test is run out or order - this must be done
AllServerTests.checkTearDown();
}
public void setUp() throws Exception {
// if a test is run out or order - this must be done
AllServerTests.checkSetUp();
}
private class ProtectedRunner implements Protectable {
private TestResult result;
ProtectedRunner(TestResult result) {
this.result = result;
}
public void protect() throws Exception {
oneTimeSetUp();
basicRun(result);
oneTimeTearDown();
}
}
}