blob: 12d574ee9980ef69b46bad9cc3f05d80f37f8503 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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.jdt.ui.tests.quickfix;
import java.util.ArrayList;
import java.util.Hashtable;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.IPackageFragment;
import org.eclipse.jdt.core.IPackageFragmentRoot;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jdt.core.formatter.DefaultCodeFormatterConstants;
import org.eclipse.jdt.internal.corext.codemanipulation.StubUtility;
import org.eclipse.jdt.internal.corext.template.java.CodeTemplateContextType;
import org.eclipse.jdt.ui.PreferenceConstants;
import org.eclipse.jdt.internal.ui.JavaPlugin;
import org.eclipse.jdt.internal.ui.text.correction.CUCorrectionProposal;
import org.eclipse.jdt.internal.ui.text.correction.NewCUCompletionUsingWizardProposal;
import org.eclipse.jdt.testplugin.JavaProjectHelper;
import org.eclipse.jdt.testplugin.TestOptions;
import org.eclipse.jdt.ui.tests.core.ProjectTestSetup;
public class UnresolvedTypesQuickFixTest extends QuickFixTest {
private static final Class THIS= UnresolvedTypesQuickFixTest.class;
private IJavaProject fJProject1;
private IPackageFragmentRoot fSourceFolder;
public UnresolvedTypesQuickFixTest(String name) {
super(name);
}
public static Test allTests() {
return new ProjectTestSetup(new TestSuite(THIS));
}
public static Test suite() {
return allTests();
}
public static Test setUpTest(Test test) {
return new ProjectTestSetup(test);
}
protected void setUp() throws Exception {
Hashtable options= TestOptions.getDefaultOptions();
options.put(DefaultCodeFormatterConstants.FORMATTER_TAB_CHAR, JavaCore.SPACE);
options.put(DefaultCodeFormatterConstants.FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE, "1");
options.put(DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE, "4");
JavaCore.setOptions(options);
IPreferenceStore store= JavaPlugin.getDefault().getPreferenceStore();
store.setValue(PreferenceConstants.CODEGEN_ADD_COMMENTS, false);
fJProject1= ProjectTestSetup.getProject();
String newFileTemplate= "${package_declaration}\n\n${type_declaration}";
StubUtility.setCodeTemplate(CodeTemplateContextType.NEWTYPE_ID, newFileTemplate, null);
StubUtility.setCodeTemplate(CodeTemplateContextType.TYPECOMMENT_ID, "", null);
StubUtility.setCodeTemplate(CodeTemplateContextType.METHODSTUB_ID, "", null);
fSourceFolder= JavaProjectHelper.addSourceContainer(fJProject1, "src");
}
protected void tearDown() throws Exception {
JavaProjectHelper.clear(fJProject1, ProjectTestSetup.getDefaultClasspath());
}
public void testTypeInFieldDecl() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E {\n");
buf.append(" Vector1 vec;\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 5);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("import java.util.Vector;\n");
buf.append("\n");
buf.append("public class E {\n");
buf.append(" Vector vec;\n");
buf.append("}\n");
String expected1= buf.toString();
NewCUCompletionUsingWizardProposal newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(1);
String preview2= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public class Vector1 {\n");
buf.append("\n");
buf.append("}\n");
String expected2= buf.toString();
newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(2);
String preview3= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public interface Vector1 {\n");
buf.append("\n");
buf.append("}\n");
String expected3= buf.toString();
newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(3);
String preview4= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public enum Vector1 {\n");
buf.append("\n");
buf.append("}\n");
String expected4= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(4);
String preview5= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E<Vector1> {\n");
buf.append(" Vector1 vec;\n");
buf.append("}\n");
String expected5= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2, preview3, preview4, preview5 }, new String[] { expected1, expected2, expected3, expected4, expected5 });
}
public void testTypeInMethodArguments() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E {\n");
buf.append(" void foo(Vect1or[] vec) {\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 5);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("import java.util.Vector;\n");
buf.append("\n");
buf.append("public class E {\n");
buf.append(" void foo(Vector[] vec) {\n");
buf.append(" }\n");
buf.append("}\n");
String expected1= buf.toString();
NewCUCompletionUsingWizardProposal newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(1);
String preview2= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public class Vect1or {\n");
buf.append("\n");
buf.append("}\n");
String expected2= buf.toString();
newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(2);
String preview3= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public interface Vect1or {\n");
buf.append("\n");
buf.append("}\n");
String expected3= buf.toString();
newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(3);
String preview4= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public enum Vect1or {\n");
buf.append("\n");
buf.append("}\n");
String expected4= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(4);
String preview5= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E<Vect1or> {\n");
buf.append(" void foo(Vect1or[] vec) {\n");
buf.append(" }\n");
buf.append("}\n");
String expected5= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2, preview3, preview4, preview5 }, new String[] { expected1, expected2, expected3, expected4, expected5 });
}
public void testTypeInMethodReturnType() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E {\n");
buf.append(" Vect1or[] foo() {\n");
buf.append(" return null;\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 5);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("import java.util.Vector;\n");
buf.append("\n");
buf.append("public class E {\n");
buf.append(" Vector[] foo() {\n");
buf.append(" return null;\n");
buf.append(" }\n");
buf.append("}\n");
String expected1= buf.toString();
NewCUCompletionUsingWizardProposal newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(1);
String preview2= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public class Vect1or {\n");
buf.append("\n");
buf.append("}\n");
String expected2= buf.toString();
newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(2);
String preview3= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public interface Vect1or {\n");
buf.append("\n");
buf.append("}\n");
String expected3= buf.toString();
newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(3);
String preview4= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public enum Vect1or {\n");
buf.append("\n");
buf.append("}\n");
String expected4= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(4);
String preview5= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E<Vect1or> {\n");
buf.append(" Vect1or[] foo() {\n");
buf.append(" return null;\n");
buf.append(" }\n");
buf.append("}\n");
String expected5= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2, preview3, preview4, preview5 }, new String[] { expected1, expected2, expected3, expected4, expected5 });
}
public void testTypeInExceptionType() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E {\n");
buf.append(" void foo() throws IOExcpetion {\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 2);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("import java.io.IOException;\n");
buf.append("\n");
buf.append("public class E {\n");
buf.append(" void foo() throws IOException {\n");
buf.append(" }\n");
buf.append("}\n");
String expected1= buf.toString();
NewCUCompletionUsingWizardProposal newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(1);
String preview2= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public class IOExcpetion extends Exception {\n");
buf.append("\n");
buf.append("}\n");
String expected2= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2 }, new String[] { expected1, expected2 });
}
public void testTypeInVarDeclWithWildcard() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.util.ArrayList;\n");
buf.append("public class E {\n");
buf.append(" void foo(ArrayList<? extends Runnable> a) {\n");
buf.append(" XY v= a.get(0);\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu1= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu1);
ArrayList proposals= collectCorrections(cu1, astRoot);
assertCorrectLabels(proposals);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.util.ArrayList;\n");
buf.append("public class E {\n");
buf.append(" void foo(ArrayList<? extends Runnable> a) {\n");
buf.append(" Runnable v= a.get(0);\n");
buf.append(" }\n");
buf.append("}\n");
String expected1= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public class XY {\n");
buf.append("\n");
buf.append("}\n");
String expected2= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public interface XY {\n");
buf.append("\n");
buf.append("}\n");
String expected3= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public enum XY {\n");
buf.append("\n");
buf.append("}\n");
String expected4= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.util.ArrayList;\n");
buf.append("public class E {\n");
buf.append(" <XY> void foo(ArrayList<? extends Runnable> a) {\n");
buf.append(" XY v= a.get(0);\n");
buf.append(" }\n");
buf.append("}\n");
String expected5= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.util.ArrayList;\n");
buf.append("public class E<XY> {\n");
buf.append(" void foo(ArrayList<? extends Runnable> a) {\n");
buf.append(" XY v= a.get(0);\n");
buf.append(" }\n");
buf.append("}\n");
String expected6= buf.toString();
assertExpectedExistInProposals(proposals, new String[] { expected1, expected2, expected3, expected4, expected5, expected6 });
}
public void testTypeInStatement() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.util.ArrayList;\n");
buf.append("public class E {\n");
buf.append(" void foo() {\n");
buf.append(" ArrayList v= new ArrayListist();\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 2);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.util.ArrayList;\n");
buf.append("public class E {\n");
buf.append(" void foo() {\n");
buf.append(" ArrayList v= new ArrayList();\n");
buf.append(" }\n");
buf.append("}\n");
String expected1= buf.toString();
NewCUCompletionUsingWizardProposal newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(1);
String preview2= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("import java.util.ArrayList;\n");
buf.append("\n");
buf.append("public class ArrayListist extends ArrayList {\n");
buf.append("\n");
buf.append("}\n");
String expected2= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2 }, new String[] { expected1, expected2 });
}
public void testArrayTypeInStatement() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.io.*;\n");
buf.append("public class E {\n");
buf.append(" void foo() {\n");
buf.append(" Serializable[] v= new ArrayListExtra[10];\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 7);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.io.*;\n");
buf.append("public class E {\n");
buf.append(" void foo() {\n");
buf.append(" Serializable[] v= new Serializable[10];\n");
buf.append(" }\n");
buf.append("}\n");
String expected1= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(1);
String preview2= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.io.*;\n");
buf.append("import java.util.ArrayList;\n");
buf.append("public class E {\n");
buf.append(" void foo() {\n");
buf.append(" Serializable[] v= new ArrayList[10];\n");
buf.append(" }\n");
buf.append("}\n");
String expected2= buf.toString();
NewCUCompletionUsingWizardProposal newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(2);
String preview3= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("import java.io.Serializable;\n");
buf.append("\n");
buf.append("public class ArrayListExtra implements Serializable {\n");
buf.append("\n");
buf.append("}\n");
String expected3= buf.toString();
newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(3);
String preview4= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("import java.io.Serializable;\n");
buf.append("\n");
buf.append("public interface ArrayListExtra extends Serializable {\n");
buf.append("\n");
buf.append("}\n");
String expected4= buf.toString();
newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(4);
String preview5= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("import java.io.Serializable;\n");
buf.append("\n");
buf.append("public enum ArrayListExtra implements Serializable {\n");
buf.append("\n");
buf.append("}\n");
String expected5= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(5);
String preview6= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.io.*;\n");
buf.append("public class E<ArrayListExtra> {\n");
buf.append(" void foo() {\n");
buf.append(" Serializable[] v= new ArrayListExtra[10];\n");
buf.append(" }\n");
buf.append("}\n");
String expected6= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(6);
String preview7= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.io.*;\n");
buf.append("public class E {\n");
buf.append(" <ArrayListExtra> void foo() {\n");
buf.append(" Serializable[] v= new ArrayListExtra[10];\n");
buf.append(" }\n");
buf.append("}\n");
String expected7= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2, preview3, preview4, preview5, preview6, preview7 }, new String[] { expected1, expected2, expected3, expected4, expected5, expected6, expected7});
}
public void testQualifiedType() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E {\n");
buf.append(" void foo() {\n");
buf.append(" test2.Test t= null;\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 3);
assertCorrectLabels(proposals);
NewCUCompletionUsingWizardProposal newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(0);
String preview1= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test2;\n");
buf.append("\n");
buf.append("public class Test {\n");
buf.append("\n");
buf.append("}\n");
String expected1= buf.toString();
newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(1);
String preview2= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test2;\n");
buf.append("\n");
buf.append("public interface Test {\n");
buf.append("\n");
buf.append("}\n");
String expected2= buf.toString();
newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(2);
String preview3= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test2;\n");
buf.append("\n");
buf.append("public enum Test {\n");
buf.append("\n");
buf.append("}\n");
String expected3= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2, preview3 }, new String[] { expected1, expected2, expected3 });
}
public void testInnerType() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E {\n");
buf.append(" void foo() {\n");
buf.append(" Object object= new F.Inner() {\n");
buf.append(" };\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu1= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class F {\n");
buf.append("}\n");
pack1.createCompilationUnit("F.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu1);
ArrayList proposals= collectCorrections(cu1, astRoot);
assertNumberOfProposals(proposals, 3);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E {\n");
buf.append(" void foo() {\n");
buf.append(" Object object= new Object() {\n");
buf.append(" };\n");
buf.append(" }\n");
buf.append("}\n");
String expected1= buf.toString();
NewCUCompletionUsingWizardProposal newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(1);
String preview2= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class F {\n");
buf.append("\n");
buf.append(" public class Inner {\n");
buf.append("\n");
buf.append(" }\n");
buf.append("}\n");
String expected2= buf.toString();
newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(2);
String preview3= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class F {\n");
buf.append("\n");
buf.append(" public interface Inner {\n");
buf.append("\n");
buf.append(" }\n");
buf.append("}\n");
String expected3= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2, preview3 }, new String[] { expected1, expected2, expected3 });
}
public void testTypeInCatchBlock() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E {\n");
buf.append(" void foo() {\n");
buf.append(" try {\n");
buf.append(" } catch (XXX x) {\n");
buf.append(" }\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu1= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu1);
ArrayList proposals= collectCorrections(cu1, astRoot);
assertNumberOfProposals(proposals, 1);
assertCorrectLabels(proposals);
NewCUCompletionUsingWizardProposal newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(0);
String preview1= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public class XXX extends Exception {\n");
buf.append("\n");
buf.append("}\n");
String expected1= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1 }, new String[] { expected1 });
}
public void testTypeInSuperType() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E extends XXX {\n");
buf.append("}\n");
ICompilationUnit cu1= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu1);
ArrayList proposals= collectCorrections(cu1, astRoot);
assertNumberOfProposals(proposals, 1);
assertCorrectLabels(proposals);
NewCUCompletionUsingWizardProposal newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(0);
String preview1= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public class XXX {\n");
buf.append("\n");
buf.append("}\n");
String expected1= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1 }, new String[] { expected1 });
}
public void testTypeInSuperInterface() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public interface E extends XXX {\n");
buf.append("}\n");
ICompilationUnit cu1= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu1);
ArrayList proposals= collectCorrections(cu1, astRoot);
assertNumberOfProposals(proposals, 1);
assertCorrectLabels(proposals);
NewCUCompletionUsingWizardProposal newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(0);
String preview1= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public interface XXX {\n");
buf.append("\n");
buf.append("}\n");
String expected1= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1 }, new String[] { expected1 });
}
public void testTypeInAnnotation() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("@Xyz\n");
buf.append("public interface E {\n");
buf.append("}\n");
ICompilationUnit cu1= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu1);
ArrayList proposals= collectCorrections(cu1, astRoot);
assertNumberOfProposals(proposals, 1);
assertCorrectLabels(proposals);
NewCUCompletionUsingWizardProposal newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(0);
String preview1= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public @interface Xyz {\n");
buf.append("\n");
buf.append("}\n");
String expected1= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1 }, new String[] { expected1 });
}
public void testPrimitiveTypeInFieldDecl() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E {\n");
buf.append(" floot vec= 1.0;\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 7);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E {\n");
buf.append(" double vec= 1.0;\n");
buf.append("}\n");
String expected1= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(1);
String preview2= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E {\n");
buf.append(" Float vec= 1.0;\n");
buf.append("}\n");
String expected2= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(2);
String preview3= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E {\n");
buf.append(" float vec= 1.0;\n");
buf.append("}\n");
String expected3= buf.toString();
NewCUCompletionUsingWizardProposal newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(3);
String preview4= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public class floot {\n");
buf.append("\n");
buf.append("}\n");
String expected4= buf.toString();
newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(4);
String preview5= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public interface floot {\n");
buf.append("\n");
buf.append("}\n");
String expected5= buf.toString();
newCUWizard= (NewCUCompletionUsingWizardProposal) proposals.get(5);
String preview6= getWizardPreviewContent(newCUWizard);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public enum floot {\n");
buf.append("\n");
buf.append("}\n");
String expected6= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(6);
String preview7= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E<floot> {\n");
buf.append(" floot vec= 1.0;\n");
buf.append("}\n");
String expected7= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2, preview3, preview4, preview5, preview6, preview7 }, new String[] { expected1, expected2, expected3, expected4, expected5, expected6, expected7});
}
public void testTypeInTypeArguments1() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E<T> {\n");
buf.append(" class SomeType { }\n");
buf.append(" void foo() {\n");
buf.append(" E<XYX> list= new E<SomeType>();\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertCorrectLabels(proposals);
assertNumberOfProposals(proposals, 6);
String[] expected= new String[6];
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E<T> {\n");
buf.append(" class SomeType { }\n");
buf.append(" void foo() {\n");
buf.append(" E<SomeType> list= new E<SomeType>();\n");
buf.append(" }\n");
buf.append("}\n");
expected[0]= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public class XYX {\n");
buf.append("\n");
buf.append("}\n");
expected[1]= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public interface XYX {\n");
buf.append("\n");
buf.append("}\n");
expected[2]= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public enum XYX {\n");
buf.append("\n");
buf.append("}\n");
expected[3]= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E<T> {\n");
buf.append(" class SomeType { }\n");
buf.append(" <XYX> void foo() {\n");
buf.append(" E<XYX> list= new E<SomeType>();\n");
buf.append(" }\n");
buf.append("}\n");
expected[4]= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("public class E<T, XYX> {\n");
buf.append(" class SomeType { }\n");
buf.append(" void foo() {\n");
buf.append(" E<XYX> list= new E<SomeType>();\n");
buf.append(" }\n");
buf.append("}\n");
expected[5]= buf.toString();
assertExpectedExistInProposals(proposals, expected);
}
public void testTypeInTypeArguments2() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.util.Map;\n");
buf.append("public class E<T> {\n");
buf.append(" static class SomeType { }\n");
buf.append(" void foo() {\n");
buf.append(" E<Map<String, ? extends XYX>> list= new E<Map<String, ? extends SomeType>>() {\n");
buf.append(" };\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertCorrectLabels(proposals);
assertNumberOfProposals(proposals, 6);
String[] expected= new String[6];
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.util.Map;\n");
buf.append("public class E<T> {\n");
buf.append(" static class SomeType { }\n");
buf.append(" void foo() {\n");
buf.append(" E<Map<String, ? extends SomeType>> list= new E<Map<String, ? extends SomeType>>() {\n");
buf.append(" };\n");
buf.append(" }\n");
buf.append("}\n");
expected[0]= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("import test1.E.SomeType;\n");
buf.append("\n");
buf.append("public class XYX extends SomeType {\n");
buf.append("\n");
buf.append("}\n");
expected[1]= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public interface XYX {\n");
buf.append("\n");
buf.append("}\n");
expected[2]= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public enum XYX {\n");
buf.append("\n");
buf.append("}\n");
expected[3]= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.util.Map;\n");
buf.append("public class E<T> {\n");
buf.append(" static class SomeType { }\n");
buf.append(" <XYX> void foo() {\n");
buf.append(" E<Map<String, ? extends XYX>> list= new E<Map<String, ? extends SomeType>>() {\n");
buf.append(" };\n");
buf.append(" }\n");
buf.append("}\n");
expected[4]= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.util.Map;\n");
buf.append("public class E<T, XYX> {\n");
buf.append(" static class SomeType { }\n");
buf.append(" void foo() {\n");
buf.append(" E<Map<String, ? extends XYX>> list= new E<Map<String, ? extends SomeType>>() {\n");
buf.append(" };\n");
buf.append(" }\n");
buf.append("}\n");
expected[5]= buf.toString();
assertExpectedExistInProposals(proposals, expected);
}
public void testParameterizedType1() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public class E {\n");
buf.append(" void foo(XXY<String> b) {\n");
buf.append(" b.foo();\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertCorrectLabels(proposals);
assertNumberOfProposals(proposals, 2);
String[] expected= new String[2];
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public class XXY<T> {\n");
buf.append("\n");
buf.append("}\n");
expected[0]= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public interface XXY<T> {\n");
buf.append("\n");
buf.append("}\n");
expected[1]= buf.toString();
assertExpectedExistInProposals(proposals, expected);
}
public void testParameterizedType2() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.util.Map;\n");
buf.append("public class E<T> {\n");
buf.append(" static class SomeType<S1, S2> { }\n");
buf.append(" void foo() {\n");
buf.append(" SomeType<String, String> list= new XXY<String, String>() { };\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertCorrectLabels(proposals);
assertNumberOfProposals(proposals, 3);
String[] expected= new String[3];
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import java.util.Map;\n");
buf.append("public class E<T> {\n");
buf.append(" static class SomeType<S1, S2> { }\n");
buf.append(" void foo() {\n");
buf.append(" SomeType<String, String> list= new SomeType<String, String>() { };\n");
buf.append(" }\n");
buf.append("}\n");
expected[0]= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("import test1.E.SomeType;\n");
buf.append("\n");
buf.append("public class XXY<T1, T2> extends SomeType<String, String> {\n");
buf.append("\n");
buf.append("}\n");
expected[1]= buf.toString();
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("\n");
buf.append("public interface XXY<T1, T2> {\n");
buf.append("\n");
buf.append("}\n");
expected[2]= buf.toString();
assertExpectedExistInProposals(proposals, expected);
}
private void createSomeAmbiguity(boolean ifc, boolean isException) throws Exception {
IPackageFragment pack3= fSourceFolder.createPackageFragment("test3", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test3;\n");
buf.append("public "); buf.append(ifc ? "interface" : "class");
buf.append(" A "); buf.append(isException ? "extends Exception " : ""); buf.append("{\n");
buf.append("}\n");
pack3.createCompilationUnit("A.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test3;\n");
buf.append("public class B {\n");
buf.append("}\n");
pack3.createCompilationUnit("B.java", buf.toString(), false, null);
IPackageFragment pack2= fSourceFolder.createPackageFragment("test2", false, null);
buf= new StringBuffer();
buf.append("package test2;\n");
buf.append("public "); buf.append(ifc ? "interface" : "class");
buf.append(" A "); buf.append(isException ? "extends Exception " : ""); buf.append("{\n");
buf.append("}\n");
pack2.createCompilationUnit("A.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test2;\n");
buf.append("public class C {\n");
buf.append("}\n");
pack2.createCompilationUnit("C.java", buf.toString(), false, null);
}
public void testAmbiguousTypeInSuperClass() throws Exception {
createSomeAmbiguity(false, false);
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test3.*;\n");
buf.append("public class E extends A {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 2);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test2.A;\n");
buf.append("import test3.*;\n");
buf.append("public class E extends A {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append("}\n");
String expected1= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(1);
String preview2= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test3.*;\n");
buf.append("import test3.A;\n");
buf.append("public class E extends A {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append("}\n");
String expected2= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2 }, new String[] { expected1, expected2 });
}
public void testAmbiguousTypeInInterface() throws Exception {
createSomeAmbiguity(true, false);
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test3.*;\n");
buf.append("public class E implements A {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 2);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test2.A;\n");
buf.append("import test3.*;\n");
buf.append("public class E implements A {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append("}\n");
String expected1= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(1);
String preview2= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test3.*;\n");
buf.append("import test3.A;\n");
buf.append("public class E implements A {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append("}\n");
String expected2= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2 }, new String[] { expected1, expected2 });
}
public void testAmbiguousTypeInField() throws Exception {
createSomeAmbiguity(true, false);
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test3.*;\n");
buf.append("public class E {\n");
buf.append(" A a;\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 2);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test2.A;\n");
buf.append("import test3.*;\n");
buf.append("public class E {\n");
buf.append(" A a;\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append("}\n");
String expected1= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(1);
String preview2= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test3.*;\n");
buf.append("import test3.A;\n");
buf.append("public class E {\n");
buf.append(" A a;\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append("}\n");
String expected2= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2 }, new String[] { expected1, expected2 });
}
public void testAmbiguousTypeInArgument() throws Exception {
createSomeAmbiguity(true, false);
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test3.*;\n");
buf.append("public class E {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append(" public void foo(A a) {");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 2);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test2.A;\n");
buf.append("import test3.*;\n");
buf.append("public class E {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append(" public void foo(A a) {");
buf.append(" }\n");
buf.append("}\n");
String expected1= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(1);
String preview2= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test3.*;\n");
buf.append("import test3.A;\n");
buf.append("public class E {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append(" public void foo(A a) {");
buf.append(" }\n");
buf.append("}\n");
String expected2= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2 }, new String[] { expected1, expected2 });
}
public void testAmbiguousTypeInReturnType() throws Exception {
createSomeAmbiguity(false, false);
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test3.*;\n");
buf.append("public class E {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append(" public A foo() {");
buf.append(" return null;\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 2);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test2.A;\n");
buf.append("import test3.*;\n");
buf.append("public class E {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append(" public A foo() {");
buf.append(" return null;\n");
buf.append(" }\n");
buf.append("}\n");
String expected1= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(1);
String preview2= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test3.*;\n");
buf.append("import test3.A;\n");
buf.append("public class E {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append(" public A foo() {");
buf.append(" return null;\n");
buf.append(" }\n");
buf.append("}\n");
String expected2= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2 }, new String[] { expected1, expected2 });
}
public void testAmbiguousTypeInExceptionType() throws Exception {
createSomeAmbiguity(false, true);
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test3.*;\n");
buf.append("public class E {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append(" public void foo() throws A {");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 2);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test2.A;\n");
buf.append("import test3.*;\n");
buf.append("public class E {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append(" public void foo() throws A {");
buf.append(" }\n");
buf.append("}\n");
String expected1= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(1);
String preview2= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test3.*;\n");
buf.append("import test3.A;\n");
buf.append("public class E {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append(" public void foo() throws A {");
buf.append(" }\n");
buf.append("}\n");
String expected2= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2 }, new String[] { expected1, expected2 });
}
public void testAmbiguousTypeInCatchBlock() throws Exception {
createSomeAmbiguity(false, true);
IPackageFragment pack1= fSourceFolder.createPackageFragment("test1", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test3.*;\n");
buf.append("public class E {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append(" public void foo() {");
buf.append(" try {\n");
buf.append(" } catch (A e) {\n");
buf.append(" }\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit cu= pack1.createCompilationUnit("E.java", buf.toString(), false, null);
CompilationUnit astRoot= getASTRoot(cu);
ArrayList proposals= collectCorrections(cu, astRoot);
assertNumberOfProposals(proposals, 2);
assertCorrectLabels(proposals);
CUCorrectionProposal proposal= (CUCorrectionProposal) proposals.get(0);
String preview1= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test2.A;\n");
buf.append("import test3.*;\n");
buf.append("public class E {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append(" public void foo() {");
buf.append(" try {\n");
buf.append(" } catch (A e) {\n");
buf.append(" }\n");
buf.append(" }\n");
buf.append("}\n");
String expected1= buf.toString();
proposal= (CUCorrectionProposal) proposals.get(1);
String preview2= getPreviewContent(proposal);
buf= new StringBuffer();
buf.append("package test1;\n");
buf.append("import test2.*;\n");
buf.append("import test3.*;\n");
buf.append("import test3.A;\n");
buf.append("public class E {\n");
buf.append(" B b;\n");
buf.append(" C c;\n");
buf.append(" public void foo() {");
buf.append(" try {\n");
buf.append(" } catch (A e) {\n");
buf.append(" }\n");
buf.append(" }\n");
buf.append("}\n");
String expected2= buf.toString();
assertEqualStringsIgnoreOrder(new String[] { preview1, preview2 }, new String[] { expected1, expected2 });
}
}