blob: 788454176c141e7902ec5822a6d1c2552b7b3212 [file] [log] [blame]
package org.eclipse.team.tests.ccvs.core.compatible;
/*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
import junit.framework.Test;
import org.eclipse.team.internal.ccvs.core.CVSException;
import org.eclipse.team.internal.ccvs.core.CVSProviderPlugin;
import org.eclipse.team.internal.ccvs.core.connection.CVSRepositoryLocation;
import org.eclipse.team.tests.ccvs.core.CVSTestSetup;
/**
* @version 1.0
* @author ${user}
*/
public class CompatibleTestSetup extends CVSTestSetup {
public static final String ECLIPSE_REPOSITORY_LOCATION;
public static final String REFERENCE_REPOSITORY_LOCATION;
public static CVSRepositoryLocation referenceClientRepository;
public static CVSRepositoryLocation eclipseClientRepository;
static {
REFERENCE_REPOSITORY_LOCATION = System.getProperty("eclipse.cvs.repository1");
ECLIPSE_REPOSITORY_LOCATION = System.getProperty("eclipse.cvs.repository2");
}
/**
* Constructor for CompatibleTestSetup.
*/
public CompatibleTestSetup(Test test) {
super(test);
}
/**
* For compatibility testing, we need to set up two repositories
*/
public void setUp() throws CVSException {
CVSProviderPlugin.getPlugin().setPruneEmptyDirectories(false);
CVSProviderPlugin.getPlugin().setFetchAbsentDirectories(false);
// setup the repositories
if (referenceClientRepository == null)
referenceClientRepository = setupRepository(REFERENCE_REPOSITORY_LOCATION);
if (eclipseClientRepository == null)
eclipseClientRepository = setupRepository(ECLIPSE_REPOSITORY_LOCATION);
}
public void tearDown() throws CVSException {
CVSProviderPlugin.getPlugin().setPruneEmptyDirectories(true);
CVSProviderPlugin.getPlugin().setFetchAbsentDirectories(true);
}
}