blob: a6e2550fde2f03eb39f9af49230b2277c2edb984 [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 org.eclipse.jdt.testplugin.JavaProjectHelper;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.jdt.core.IClasspathAttribute;
import org.eclipse.jdt.core.IClasspathEntry;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.internal.core.ClasspathEntry;
public class Java13ProjectTestSetup extends ProjectTestSetup {
public static final String PROJECT_NAME13= "TestSetupProject13";
private boolean enable_preview_feature;
@Override
public IJavaProject getProject() {
IProject project= ResourcesPlugin.getWorkspace().getRoot().getProject(PROJECT_NAME13);
return JavaCore.create(project);
}
@Override
public IClasspathEntry[] getDefaultClasspath() throws CoreException {
IPath[] rtJarPath= JavaProjectHelper.findRtJar(JavaProjectHelper.RT_STUBS13);
IClasspathAttribute[] extraAttributes= { JavaCore.newClasspathAttribute(IClasspathAttribute.MODULE, Boolean.TRUE.toString()) };
return new IClasspathEntry[] { JavaCore.newLibraryEntry(rtJarPath[0], rtJarPath[1], rtJarPath[2], ClasspathEntry.NO_ACCESS_RULES, extraAttributes, true) };
}
public Java13ProjectTestSetup( boolean enable_preview_feature) {
this.enable_preview_feature= enable_preview_feature;
}
@Override
protected boolean projectExists() {
return getProject().exists();
}
@Override
protected IJavaProject createAndInitializeProject() throws CoreException {
IJavaProject javaProject= JavaProjectHelper.createJavaProject(PROJECT_NAME13, "bin");
javaProject.setRawClasspath(getDefaultClasspath(), null);
JavaProjectHelper.set12CompilerOptions(javaProject, enable_preview_feature);
return javaProject;
}
}