blob: 4033322a0208c22af5a6e198dde92ce08aedccb6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.ui.tests.core;
import java.util.Map;
import junit.extensions.TestSetup;
import junit.framework.Test;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.jdt.core.IClasspathEntry;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.internal.ui.JavaPlugin;
import org.eclipse.jdt.testplugin.JavaProjectHelper;
import org.eclipse.jdt.testplugin.TestOptions;
/**
* Sets up an 1.5 project with rtstubs15.jar and compiler, code formatting, code generation, and template options.
*/
public class ProjectTestSetup extends TestSetup {
public static final String PROJECT_NAME= "TestSetupProject";
public static IJavaProject getProject() {
IProject project= ResourcesPlugin.getWorkspace().getRoot().getProject(PROJECT_NAME);
return JavaCore.create(project);
}
public static IClasspathEntry[] getDefaultClasspath() {
IPath[] rtJarPath= JavaProjectHelper.findRtJar(JavaProjectHelper.RT_STUBS_15);
return new IClasspathEntry[] { JavaCore.newLibraryEntry(rtJarPath[0], rtJarPath[1], rtJarPath[2], true) };
}
private IJavaProject fJProject;
private boolean fAutobuilding;
public ProjectTestSetup(Test test) {
super(test);
}
/* (non-Javadoc)
* @see junit.extensions.TestSetup#setUp()
*/
protected void setUp() throws Exception {
super.setUp();
IJavaProject project= getProject();
if (project.exists()) { // allow nesting of ProjectTestSetups
return;
}
fAutobuilding = JavaProjectHelper.setAutoBuilding(false);
fJProject= JavaProjectHelper.createJavaProject(PROJECT_NAME, "bin");
fJProject.setRawClasspath(getDefaultClasspath(), null);
Map options= fJProject.getOptions(false);
JavaProjectHelper.set15CompilerOptions(options);
fJProject.setOptions(options);
JavaCore.setOptions(TestOptions.getDefaultOptions());
TestOptions.initializeCodeGenerationOptions();
JavaPlugin.getDefault().getCodeTemplateStore().load();
}
protected void tearDown() throws Exception {
if (fJProject != null) {
JavaProjectHelper.delete(fJProject);
JavaProjectHelper.setAutoBuilding(fAutobuilding);
}
}
}