blob: 7ba0162502767d6f40e67b68813c41d26b234468 [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 to member types.
*
* @since 3.4
*/
public class ClassCompatibilityMemberTypeTests extends ClassCompatibilityTests {
/**
* Workspace relative path classes in bundle/project A
*/
protected static IPath WORKSPACE_CLASSES_PACKAGE_A = new Path("org.eclipse.api.tools.tests.compatability.a/src/a/classes/membertypes");
/**
* Package prefix for test classes
*/
protected static String PACKAGE_PREFIX = "a.classes.membertypes.";
/**
* Constructor
* @param name
*/
public ClassCompatibilityMemberTypeTests(String name) {
super(name);
}
/* (non-Javadoc)
* @see org.eclipse.pde.api.tools.builder.tests.ApiBuilderTests#getTestSourcePath()
*/
protected IPath getTestSourcePath() {
return super.getTestSourcePath().append("membertypes");
}
/**
* @return the tests for this class
*/
public static Test suite() {
return buildTestSuite(ClassCompatibilityMemberTypeTests.class);
}
/* (non-Javadoc)
* @see org.eclipse.pde.api.tools.builder.tests.ApiBuilderTest#getDefaultProblemId()
*/
@Override
protected int getDefaultProblemId() {
return ApiProblemFactory.createProblemId(
IApiProblem.CATEGORY_COMPATIBILITY,
IDelta.CLASS_ELEMENT_TYPE,
IDelta.REMOVED,
IDelta.TYPE_MEMBER);
}
protected int getReducedVisibilityId() {
return ApiProblemFactory.createProblemId(
IApiProblem.CATEGORY_COMPATIBILITY,
IDelta.CLASS_ELEMENT_TYPE,
IDelta.CHANGED,
IDelta.DECREASE_ACCESS);
}
protected int getRemovedAPITypeId() {
return ApiProblemFactory.createProblemId(
IApiProblem.CATEGORY_COMPATIBILITY,
IDelta.CLASS_ELEMENT_TYPE,
IDelta.REMOVED,
IDelta.API_TYPE);
}
/* (non-Javadoc)
* @see org.eclipse.pde.api.tools.builder.tests.ApiBuilderTests#getTestingProjectName()
*/
protected String getTestingProjectName() {
return "classcompat";
}
/**
* Tests removing a public member type
*/
private void xRemovePublicMemberType(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("RemovePublicMemberType.java");
int[] ids = new int[] {
getDefaultProblemId()
};
setExpectedProblemIds(ids);
String[][] args = new String[1][];
args[0] = new String[]{"a.classes.membertypes.RemovePublicMemberType.PublicType", "org.eclipse.api.tools.tests.compatability.a_1.0.0"};
setExpectedMessageArgs(args);
performCompatibilityTest(filePath, incremental);
}
public void testRemovePublicMemberTypeI() throws Exception {
xRemovePublicMemberType(true);
}
public void testRemovePublicMemberTypeF() throws Exception {
xRemovePublicMemberType(false);
}
/**
* Tests removing a protected member type
*/
private void xRemoveProtectedMemberType(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("RemoveProtectedMemberType.java");
int[] ids = new int[] {
getDefaultProblemId()
};
setExpectedProblemIds(ids);
String[][] args = new String[1][];
args[0] = new String[]{"a.classes.membertypes.RemoveProtectedMemberType.ProtectedType", "org.eclipse.api.tools.tests.compatability.a_1.0.0"};
setExpectedMessageArgs(args);
performCompatibilityTest(filePath, incremental);
}
public void testRemoveProtectedMemberTypeI() throws Exception {
xRemoveProtectedMemberType(true);
}
public void testRemoveProtectedMemberTypeF() throws Exception {
xRemoveProtectedMemberType(false);
}
/**
* Tests removing a default/package visible member type
*/
private void xRemovePackageMemberType(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("RemovePackageMemberType.java");
// no problems expected
performCompatibilityTest(filePath, incremental);
}
public void testRemovePackageMemberTypeI() throws Exception {
xRemovePackageMemberType(true);
}
public void testRemovePackageMemberTypeF() throws Exception {
xRemovePackageMemberType(false);
}
/**
* Tests removing a private member type
*/
private void xRemovePrivateMemberType(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("RemovePrivateMemberType.java");
// no problems expected
performCompatibilityTest(filePath, incremental);
}
public void testRemovePrivateMemberTypeI() throws Exception {
xRemovePrivateMemberType(true);
}
public void testRemovePrivateMemberTypeF() throws Exception {
xRemovePrivateMemberType(false);
}
/**
* Tests removing a protected member type with the enclosing type annotated
* noextend.
*/
private void xRemoveProtectedMemberTypeNoExtend(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("RemoveProtectedMemberTypeNoExtend.java");
// no problems expected
performCompatibilityTest(filePath, incremental);
}
public void testRemoveProtectedMemberTypeNoExtendI() throws Exception {
xRemoveProtectedMemberTypeNoExtend(true);
}
public void testRemoveProtectedMemberTypeNoExtendF() throws Exception {
xRemoveProtectedMemberTypeNoExtend(false);
}
/**
* Tests reducing visibility from public to protected
*/
private void xPublicToProtected(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("PublicToProtectedVisibility.java");
int[] ids = new int[] {
getReducedVisibilityId()
};
setExpectedProblemIds(ids);
String[][] args = new String[1][];
args[0] = new String[]{PACKAGE_PREFIX + "PublicToProtectedVisibility.PublicToProtected"};
setExpectedMessageArgs(args);
performCompatibilityTest(filePath, incremental);
}
public void testPublicToProtectedI() throws Exception {
xPublicToProtected(true);
}
public void testPublicToProtectedF() throws Exception {
xPublicToProtected(false);
}
/**
* Tests reducing visibility from public to package
*/
private void xPublicToPackage(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("PublicToPackageVisibility.java");
int[] ids = new int[] {
getReducedVisibilityId()
};
setExpectedProblemIds(ids);
String[][] args = new String[1][];
args[0] = new String[]{PACKAGE_PREFIX + "PublicToPackageVisibility.PublicToPackage"};
setExpectedMessageArgs(args);
performCompatibilityTest(filePath, incremental);
}
public void testPublicToPackageI() throws Exception {
xPublicToPackage(true);
}
public void testPublicToPackageF() throws Exception {
xPublicToPackage(false);
}
/**
* Tests reducing visibility from public to private
*/
private void xPublicToPrivate(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("PublicToPrivateVisibility.java");
int[] ids = new int[] {
getReducedVisibilityId()
};
setExpectedProblemIds(ids);
String[][] args = new String[1][];
args[0] = new String[]{PACKAGE_PREFIX + "PublicToPrivateVisibility.PublicToPrivate"};
setExpectedMessageArgs(args);
performCompatibilityTest(filePath, incremental);
}
public void testPublicToPrivateI() throws Exception {
xPublicToPrivate(true);
}
public void testPublicToPrivateF() throws Exception {
xPublicToPrivate(false);
}
/**
* Tests reducing visibility from protected to package
*/
private void xProtectedToPackage(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("ProtectedToPackageVisibility.java");
int[] ids = new int[] {
getReducedVisibilityId()
};
setExpectedProblemIds(ids);
String[][] args = new String[1][];
args[0] = new String[]{PACKAGE_PREFIX + "ProtectedToPackageVisibility.ProtectedToPackage"};
setExpectedMessageArgs(args);
performCompatibilityTest(filePath, incremental);
}
public void testProtectedToPackageI() throws Exception {
xProtectedToPackage(true);
}
public void testProtectedToPackageF() throws Exception {
xProtectedToPackage(false);
}
/**
* Tests reducing visibility from protected to private
*/
private void xProtectedToPrivate(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("ProtectedToPrivateVisibility.java");
int[] ids = new int[] {
getReducedVisibilityId()
};
setExpectedProblemIds(ids);
String[][] args = new String[1][];
args[0] = new String[]{PACKAGE_PREFIX + "ProtectedToPrivateVisibility.ProtectedToPrivate"};
setExpectedMessageArgs(args);
performCompatibilityTest(filePath, incremental);
}
public void testProtectedToPrivateI() throws Exception {
xProtectedToPrivate(true);
}
public void testProtectedToPrivateF() throws Exception {
xProtectedToPrivate(false);
}
/**
* Tests reducing visibility from package to private
*/
private void xPackageToPrivate(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("PackageToPrivateVisibility.java");
//no errors expected
performCompatibilityTest(filePath, incremental);
}
public void testPackageToPrivateI() throws Exception {
xPackageToPrivate(true);
}
public void testPackageToPrivateF() throws Exception {
xPackageToPrivate(false);
}
/**
* Tests reducing visibility from protected to package for a noextend enclosing type
*/
private void xProtectedToPackageNoExtend(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("ProtectedToPackageVisibilityNoExtend.java");
// no problem expected
performCompatibilityTest(filePath, incremental);
}
public void testProtectedToPackageNoExtendI() throws Exception {
xProtectedToPackageNoExtend(true);
}
public void testProtectedToPackageNoExtendF() throws Exception {
xProtectedToPackageNoExtend(false);
}
/**
* Tests reducing visibility from protected to private for a noextend enclosing type
*/
private void xProtectedToPrivateNoExtend(boolean incremental) throws Exception {
IPath filePath = WORKSPACE_CLASSES_PACKAGE_A.append("ProtectedToPrivateVisibilityNoExtend.java");
// no problem expected
performCompatibilityTest(filePath, incremental);
}
public void testProtectedToPrivateNoExtendI() throws Exception {
xProtectedToPrivateNoExtend(true);
}
public void testProtectedToPrivateNoExtendF() throws Exception {
xProtectedToPrivateNoExtend(false);
}
}