blob: c1b6e9e1e8ca04a074caf7cd691ebd3f47421430 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.pde.api.tools.builder.tests.compatibility;
import junit.framework.Test;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.pde.api.tools.internal.problems.ApiProblemFactory;
import org.eclipse.pde.api.tools.internal.provisional.comparator.IDelta;
import org.eclipse.pde.api.tools.internal.provisional.problems.IApiProblem;
/**
* Tests that the builder correctly reports compatibility problems
* related method modifiers and visibility.
*
* @since 1.0
*/
public class MethodCompatibilityTypeParameterTests extends MethodCompatibilityTests {
/**
* Workspace relative path classes in bundle/project A
*/
protected static IPath WORKSPACE_CLASSES_PACKAGE_A = new Path("bundle.a/src/a/methods/typeparameters");
/**
* Package prefix for test classes
*/
protected static String PACKAGE_PREFIX = "a.methods.typeparameters.";
/**
* Constructor
* @param name
*/
public MethodCompatibilityTypeParameterTests(String name) {
super(name);
}
/* (non-Javadoc)
* @see org.eclipse.pde.api.tools.builder.tests.ApiBuilderTests#getTestSourcePath()
*/
protected IPath getTestSourcePath() {
return super.getTestSourcePath().append("typeparameters");
}
/**
* @return the tests for this class
*/
public static Test suite() {
return buildTestSuite(MethodCompatibilityTypeParameterTests.class);
}
/* (non-Javadoc)
* @see org.eclipse.pde.api.tools.builder.tests.ApiBuilderTests#getTestingProjectName()
*/
protected String getTestingProjectName() {
return "classcompat";
}
/**
* Tests adding a type parameter to a method
*/
private void xAddTypeParameter(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("AddTypeParameter.java");
int[] ids = new int[] {
ApiProblemFactory.createProblemId(
IApiProblem.CATEGORY_COMPATIBILITY,
IDelta.METHOD_ELEMENT_TYPE,
IDelta.ADDED,
IDelta.TYPE_PARAMETER)
};
setExpectedProblemIds(ids);
String[][] args = new String[1][];
args[0] = new String[]{PACKAGE_PREFIX + "AddTypeParameter.method(Object)", "U"};
setExpectedMessageArgs(args);
performCompatibilityTest(filePath, incremental);
}
public void testAddTypeParameterI() throws Exception {
xAddTypeParameter(true);
}
public void testAddTypeParameterF() throws Exception {
xAddTypeParameter(false);
}
/**
* Tests removing a type parameter from a method
*/
private void xRemoveTypeParameter(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("RemoveTypeParameter.java");
int[] ids = new int[] {
ApiProblemFactory.createProblemId(
IApiProblem.CATEGORY_COMPATIBILITY,
IDelta.METHOD_ELEMENT_TYPE,
IDelta.REMOVED,
IDelta.TYPE_PARAMETER)
};
setExpectedProblemIds(ids);
String[][] args = new String[1][];
args[0] = new String[]{PACKAGE_PREFIX + "RemoveTypeParameter.method(Object)", "U"};
setExpectedMessageArgs(args);
performCompatibilityTest(filePath, incremental);
}
public void testRemoveTypeParameterI() throws Exception {
xRemoveTypeParameter(true);
}
public void testRemoveTypeParameterF() throws Exception {
xRemoveTypeParameter(false);
}
/**
* Tests converting variable arguments to an array
*/
private void xVarArgsToArray(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("VarArgsToArray.java");
int[] ids = new int[] {
ApiProblemFactory.createProblemId(
IApiProblem.CATEGORY_COMPATIBILITY,
IDelta.METHOD_ELEMENT_TYPE,
IDelta.CHANGED,
IDelta.VARARGS_TO_ARRAY)
};
setExpectedProblemIds(ids);
String[][] args = new String[1][];
args[0] = new String[]{PACKAGE_PREFIX + "VarArgsToArray", "method(int, int[])"};
setExpectedMessageArgs(args);
performCompatibilityTest(filePath, incremental);
}
public void testVarArgsToArrayI() throws Exception {
xVarArgsToArray(true);
}
public void testVarArgsToArrayF() throws Exception {
xVarArgsToArray(false);
}
/**
* Tests converting an array to variable arguments
*/
private void xArrayToVarArgs(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("ArrayToVarArgs.java");
// no problems
performCompatibilityTest(filePath, incremental);
}
public void testArrayToVarArgsI() throws Exception {
xArrayToVarArgs(true);
}
public void testArrayToVarArgsF() throws Exception {
xArrayToVarArgs(false);
}
}