blob: 224f354119f68f1fac9350a6f93457493c8f8fad [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* derived from corresponding file in org.eclipse.jdt.ui.tests.core
* instead extending TestSetup for junit4 ExternalResource is extended
* to allow use as junit "@Rule"
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.ui.tests.core.rules;
import java.io.File;
import java.io.IOException;
import org.osgi.framework.Bundle;
import org.eclipse.jdt.testplugin.JavaProjectHelper;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.FileLocator;
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;
/**
* This class is made to run tests on Java Spider 1.8 .
*/
public class Java1d8ProjectTestSetup extends ProjectTestSetup {
public static final String PROJECT_NAME18= "TestSetupProject18";
public static IJavaProject getProject() {
IProject project= ResourcesPlugin.getWorkspace().getRoot().getProject(PROJECT_NAME18);
return JavaCore.create(project);
}
public static IClasspathEntry[] getDefaultClasspath() throws CoreException {
IPath[] rtJarPath= JavaProjectHelper.findRtJar(JavaProjectHelper.RT_STUBS_18);
return new IClasspathEntry[] { JavaCore.newLibraryEntry(rtJarPath[0], rtJarPath[1], rtJarPath[2], true) };
}
public static String getJdtAnnotations20Path() throws IOException {
Bundle[] annotationsBundles= JavaPlugin.getDefault().getBundles("org.eclipse.jdt.annotation", "2.0.0"); //$NON-NLS-1$
File bundleFile= FileLocator.getBundleFile(annotationsBundles[0]);
String path= bundleFile.getPath();
if (bundleFile.isDirectory()) {
path= bundleFile.getPath() + "/bin";
}
return path;
}
@Override
protected boolean projectExists() {
return getProject().exists();
}
@Override
protected IJavaProject createAndInitializeProject() throws CoreException {
IJavaProject javaProject= JavaProjectHelper.createJavaProject(PROJECT_NAME18, "bin");
javaProject.setRawClasspath(getDefaultClasspath(), null);
JavaProjectHelper.set18CompilerOptions(javaProject);
return javaProject;
}
}