blob: 348bcc89f1f7cfa09d4e4b0f534edc3e12c7197d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.core.tests.builder;
import junit.framework.*;
import org.eclipse.core.runtime.IPath;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.core.tests.util.Util;
/**
* Basic errors tests of the image builder.
*/
public class ErrorsTests extends Tests {
public ErrorsTests(String name) {
super(name);
}
public static Test suite() {
return new TestSuite(ErrorsTests.class);
}
public void testErrors() throws JavaModelException {
IPath projectPath = env.addProject("Project"); //$NON-NLS-1$
env.addExternalJar(projectPath, Util.getJavaClassLib());
fullBuild(projectPath);
// remove old package fragment root so that names don't collide
env.removePackageFragmentRoot(projectPath,""); //$NON-NLS-1$
IPath root = env.addPackageFragmentRoot(projectPath, "src"); //$NON-NLS-1$
env.setOutputFolder(projectPath, "bin"); //$NON-NLS-1$
env.addClass(root, "p1", "Indicted", //$NON-NLS-1$ //$NON-NLS-2$
"package p1;\n"+ //$NON-NLS-1$
"public abstract class Indicted {\n"+ //$NON-NLS-1$
"}\n" //$NON-NLS-1$
);
IPath collaboratorPath = env.addClass(root, "p2", "Collaborator", //$NON-NLS-1$ //$NON-NLS-2$
"package p2;\n"+ //$NON-NLS-1$
"import p1.*;\n"+ //$NON-NLS-1$
"public class Collaborator extends Indicted{\n"+ //$NON-NLS-1$
"}\n" //$NON-NLS-1$
);
fullBuild(projectPath);
expectingNoProblems();
env.addClass(root, "p1", "Indicted", //$NON-NLS-1$ //$NON-NLS-2$
"package p1;\n"+ //$NON-NLS-1$
"public abstract class Indicted {\n"+ //$NON-NLS-1$
" public abstract void foo();\n"+ //$NON-NLS-1$
"}\n" //$NON-NLS-1$
);
incrementalBuild(projectPath);
expectingOnlyProblemsFor(collaboratorPath);
expectingOnlySpecificProblemFor(collaboratorPath, new Problem("Collaborator", "Class must implement the inherited abstract method Indicted.foo()", collaboratorPath)); //$NON-NLS-1$ //$NON-NLS-2$
}
/*
* Regression test for bug 2857 Renaming .java class with errors to .txt leaves errors in Task list (1GK06R3)
*/
public void testRenameToNonJava() throws JavaModelException {
IPath projectPath = env.addProject("Project"); //$NON-NLS-1$
env.addExternalJar(projectPath, Util.getJavaClassLib());
// remove old package fragment root so that names don't collide
env.removePackageFragmentRoot(projectPath,""); //$NON-NLS-1$
IPath root = env.addPackageFragmentRoot(projectPath, "src"); //$NON-NLS-1$
env.setOutputFolder(projectPath, "bin"); //$NON-NLS-1$
IPath cuPath = env.addClass(root, "p1", "X", //$NON-NLS-1$ //$NON-NLS-2$
"package p1;\n"+ //$NON-NLS-1$
"public class X extends Y {\n"+ //$NON-NLS-1$
"}\n" //$NON-NLS-1$
);
fullBuild(projectPath);
expectingOnlyProblemsFor(cuPath);
expectingOnlySpecificProblemFor(cuPath, new Problem("X", "Y cannot be resolved or is not a valid superclass", cuPath)); //$NON-NLS-1$ //$NON-NLS-2$
env.renameCU(root.append("p1"), "X.java", "X.txt"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
incrementalBuild(projectPath);
expectingNoProblems();
}
}