blob: 6b1c462602d60c55fa0d03989624e4fe44a15568 [file] [log] [blame]
package org.eclipse.team.tests.ccvs.ui.benchmark;
/*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
import java.io.File;
import java.io.IOException;
import java.net.URL;
import junit.framework.Test;
import org.eclipse.core.runtime.IPluginDescriptor;
import org.eclipse.core.runtime.IPluginRegistry;
import org.eclipse.core.runtime.Platform;
import org.eclipse.team.tests.ccvs.core.CVSTestSetup;
public class BenchmarkTestSetup extends CVSTestSetup {
public static final File BIG_ZIP_FILE;
public static final File SMALL_ZIP_FILE;
public static final File TINY_ZIP_FILE;
// Static initializer for constants
static {
try {
BIG_ZIP_FILE = getTestFile("benchmarkBig.zip");
SMALL_ZIP_FILE = getTestFile("benchmarkSmall.zip");
TINY_ZIP_FILE = getTestFile("benchmarkTiny.zip");
} catch (IOException e) {
throw new Error(e.getMessage());
}
}
public static File getTestFile(String name) throws IOException {
IPluginRegistry registry = Platform.getPluginRegistry();
IPluginDescriptor descriptor = registry.getPluginDescriptor("org.eclipse.team.tests.cvs.core");
URL baseURL = descriptor.getInstallURL();
URL url = new URL(baseURL, "resources/BenchmarkTest/" + name);
url = Platform.asLocalURL(url);
if (url.getProtocol().equals("file")) {
return new File(url.getFile()).getAbsoluteFile();
}
throw new IOException("Cannot find test file: " + name);
}
public BenchmarkTestSetup(Test test) {
super(test);
}
}