/******************************************************************************* * Copyright (c) 2000, 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.che.jdt.refactoring; import org.eclipse.core.runtime.NullProgressMonitor; import org.eclipse.jdt.core.ICompilationUnit; import org.eclipse.jdt.core.IMethod; import org.eclipse.jdt.core.IType; import org.eclipse.jdt.core.Signature; import org.eclipse.jdt.core.refactoring.IJavaRefactorings; import org.eclipse.jdt.core.refactoring.descriptors.RenameJavaElementDescriptor; import org.eclipse.jdt.internal.core.refactoring.descriptors.RefactoringSignatureDescriptorFactory; import org.eclipse.jdt.internal.corext.refactoring.rename.RenameVirtualMethodProcessor; import org.eclipse.ltk.core.refactoring.RefactoringCore; import org.eclipse.ltk.core.refactoring.RefactoringStatus; import org.eclipse.ltk.core.refactoring.participants.RenameProcessor; import org.eclipse.ltk.core.refactoring.participants.RenameRefactoring; import org.junit.After; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Ignore; import org.junit.Test; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; public class RenameMethodInInterfaceTest extends RefactoringTest { private static final String REFACTORING_PATH= "RenameMethodInInterface/"; private static final String[] NO_ARGUMENTS= new String[0]; private RefactoringTestSetup setup = new RefactoringTestSetup(); @BeforeClass public static void prepareClass() { ParticipantTesting.init(); } @Before public void setUp() throws Exception { setup.setUp(); super.setUp(); } @Override @After public void tearDown() throws Exception { super.tearDown(); setup.tearDown(); } protected String getRefactoringPath() { return REFACTORING_PATH; } private void helper1_not_available(String methodName, String[] signatures) throws Exception{ ICompilationUnit cu= createCUfromTestFile(getPackageP(), "A"); IType interfaceI= getType(cu, "I"); RenameProcessor processor= new RenameVirtualMethodProcessor(interfaceI.getMethod(methodName, signatures)); RenameRefactoring ref= new RenameRefactoring(processor); assertTrue(! ref.isApplicable()); } private void helper1_0(String methodName, String newMethodName, String[] signatures) throws Exception{ ICompilationUnit cu= createCUfromTestFile(getPackageP(), "A"); IType interfaceI= getType(cu, "I"); IMethod method= interfaceI.getMethod(methodName, signatures); RenameJavaElementDescriptor descriptor= RefactoringSignatureDescriptorFactory.createRenameJavaElementDescriptor(IJavaRefactorings.RENAME_METHOD); descriptor.setJavaElement(method); descriptor.setUpdateReferences(true); descriptor.setNewName(newMethodName); RefactoringStatus result= performRefactoring(descriptor); assertNotNull("precondition was supposed to fail", result); } private void helper1() throws Exception{ helper1_0("m", "k", NO_ARGUMENTS); } private void helper2_0(String methodName, String newMethodName, String[] signatures, boolean shouldPass, boolean updateReferences, boolean createDelegate) throws Exception{ ICompilationUnit cu= createCUfromTestFile(getPackageP(), "A"); IType interfaceI= getType(cu, "I"); IMethod method= interfaceI.getMethod(methodName, signatures); RenameJavaElementDescriptor descriptor= RefactoringSignatureDescriptorFactory.createRenameJavaElementDescriptor(IJavaRefactorings.RENAME_METHOD); descriptor.setJavaElement(method); descriptor.setUpdateReferences(updateReferences); descriptor.setNewName(newMethodName); descriptor.setKeepOriginal(createDelegate); descriptor.setDeprecateDelegate(true); assertEquals("was supposed to pass", null, performRefactoring(descriptor)); if (!shouldPass){ assertTrue("incorrect renaming because of a java model bug", ! getFileContents(getOutputTestFileName("A")).equals(cu.getSource())); return; } assertEqualLines("incorrect renaming", getFileContents(getOutputTestFileName("A")), cu.getSource()); assertTrue("anythingToUndo", RefactoringCore.getUndoManager().anythingToUndo()); assertTrue("! anythingToRedo", !RefactoringCore.getUndoManager().anythingToRedo()); //assertEquals("1 to undo", 1, Refactoring.getUndoManager().getRefactoringLog().size()); RefactoringCore.getUndoManager().performUndo(null, new NullProgressMonitor()); assertEqualLines("invalid undo", getFileContents(getInputTestFileName("A")), cu.getSource()); assertTrue("! anythingToUndo", !RefactoringCore.getUndoManager().anythingToUndo()); assertTrue("anythingToRedo", RefactoringCore.getUndoManager().anythingToRedo()); //assertEquals("1 to redo", 1, Refactoring.getUndoManager().getRedoStack().size()); RefactoringCore.getUndoManager().performRedo(null, new NullProgressMonitor()); assertEqualLines("invalid redo", getFileContents(getOutputTestFileName("A")), cu.getSource()); } private void helper2(boolean updateReferences) throws Exception{ helper2_0("m", "k", NO_ARGUMENTS, true, updateReferences, false); } private void helper2() throws Exception{ helper2(true); } private void helperDelegate() throws Exception{ helper2_0("m", "k", NO_ARGUMENTS, true, true, true); } // -------------------------------------------------------------------------- @Test public void testAnnotation0() throws Exception{ helper2_0("name", "ident", NO_ARGUMENTS, true, true, false); } @Test public void testAnnotation1() throws Exception{ helper2_0("value", "number", NO_ARGUMENTS, true, true, false); } @Test public void testAnnotation2() throws Exception{ helper2_0("thing", "value", NO_ARGUMENTS, true, true, false); } @Test public void testAnnotation3() throws Exception{ helper2_0("value", "num", NO_ARGUMENTS, true, true, false); } @Test public void testAnnotation4() throws Exception{ // see also bug 83064 helper2_0("value", "num", NO_ARGUMENTS, true, true, false); } @Test public void testGenerics01() throws Exception { helper2_0("getXYZ", "zYXteg", new String[] {"QList<QSet<QRunnable;>;>;"}, true, true, false); } @Test public void testFail0() throws Exception{ helper1(); } @Test public void testFail1() throws Exception{ helper1(); } @Test public void testFail3() throws Exception{ helper1(); } @Test public void testFail4() throws Exception{ helper1(); } @Test public void testFail5() throws Exception{ helper1(); } @Test public void testFail6() throws Exception{ helper1(); } @Test public void testFail7() throws Exception{ helper1(); } @Test public void testFail8() throws Exception{ helper1_0("m", "k", new String[]{Signature.SIG_INT}); } @Test public void testFail9() throws Exception{ helper1(); } @Test public void testFail10() throws Exception{ helper1(); } @Test public void testFail11() throws Exception{ helper1(); } @Test public void testFail12() throws Exception{ helper1(); } @Test public void testFail13() throws Exception{ helper1(); } @Test public void testFail14() throws Exception{ helper1(); } @Test public void testFail15() throws Exception{ helper1(); } @Test public void testFail16() throws Exception{ helper1(); } @Test public void testFail17() throws Exception{ helper1(); } @Test public void testFail18() throws Exception{ helper1(); } @Test public void testFail19() throws Exception{ helper1(); } @Test public void testFail20() throws Exception{ helper1(); } @Test public void testFail21() throws Exception{ helper1_0("m", "k", new String[]{"QString;"}); } @Test public void testFail22() throws Exception{ helper1_0("m", "k", new String[]{"QObject;"}); } @Test public void testFail23() throws Exception{ helper1_not_available("toString", NO_ARGUMENTS); } @Test public void testFail24() throws Exception{ helper1(); } @Test public void testFail25() throws Exception{ helper1(); } @Test public void testFail26() throws Exception{ helper1(); } @Test public void testFail27() throws Exception{ helper1(); } @Test public void testFail28() throws Exception{ helper1(); } @Test public void testFail29() throws Exception{ helper1(); } @Test public void testFail30() throws Exception{ helper1_not_available("toString", NO_ARGUMENTS); } @Test public void testFail31() throws Exception{ helper1_not_available("toString", NO_ARGUMENTS); } @Test public void testFail32() throws Exception{ helper1_0("m", "toString", NO_ARGUMENTS); } @Test public void testFail33() throws Exception{ helper1_0("m", "toString", NO_ARGUMENTS); } @Test public void testFail34() throws Exception{ helper1_0("m", "equals", new String[]{"QObject;"}); } @Test public void testFail35() throws Exception{ helper1_0("m", "equals", new String[]{"Qjava.lang.Object;"}); } @Test public void testFail36() throws Exception{ helper1_0("m", "getClass", NO_ARGUMENTS); } @Test public void testFail37() throws Exception{ helper1_0("m", "hashCode", NO_ARGUMENTS); } @Test public void testFail38() throws Exception{ helper1_0("m", "notify", NO_ARGUMENTS); } @Test public void testFail39() throws Exception{ helper1_0("m", "notifyAll", NO_ARGUMENTS); } @Test public void testFail40() throws Exception{ helper1_0("m", "wait", new String[]{Signature.SIG_LONG, Signature.SIG_INT}); } @Test public void testFail41() throws Exception{ helper1_0("m", "wait", new String[]{Signature.SIG_LONG}); } @Test public void testFail42() throws Exception{ helper1_0("m", "wait", NO_ARGUMENTS); } @Test public void testFail43() throws Exception{ helper1_0("m", "wait", NO_ARGUMENTS); } @Test public void test0() throws Exception{ helper2(); } @Test public void test1() throws Exception{ helper2(); } @Test public void test2() throws Exception{ helper2(); } @Test public void test3() throws Exception{ helper2(); } @Test public void test4() throws Exception{ helper2(); } @Test public void test5() throws Exception{ helper2(); } @Test public void test6() throws Exception{ helper2(); } @Test public void test7() throws Exception{ helper2(); } @Test public void test10() throws Exception{ helper2(); } @Test public void test11() throws Exception{ helper2(); } @Test public void test12() throws Exception{ helper2(); } //test13 became testFail45 //public void test13() throws Exception{ // helper2(); //} @Test public void test14() throws Exception{ helper2(); } @Test public void test15() throws Exception{ helper2(); } @Test public void test16() throws Exception{ helper2(); } @Test public void test17() throws Exception{ helper2(); } @Test public void test18() throws Exception{ helper2(); } @Test public void test19() throws Exception{ helper2(); } @Test public void test20() throws Exception{ helper2(); } //anonymous inner class @Test @Ignore public void test21() throws Exception{ printTestDisabledMessage("must fix - incorrect warnings"); //helper2_fail(); } @Test public void test22() throws Exception{ helper2(); } //test23 became testFail45 //public void test23() throws Exception{ // helper2(); //} @Test public void test24() throws Exception{ helper2(); } @Test public void test25() throws Exception{ helper2(); } @Test public void test26() throws Exception{ helper2(); } @Test public void test27() throws Exception{ helper2(); } @Test public void test28() throws Exception{ helper2(); } @Test public void test29() throws Exception{ helper2(); } @Test public void test30() throws Exception{ helper2(); } //anonymous inner class @Test public void test31() throws Exception{ helper2(); } //anonymous inner class @Test public void test32() throws Exception{ helper2(); } @Test public void test33() throws Exception{ helper2(); } @Test public void test34() throws Exception{ helper2(); } @Test public void test35() throws Exception{ helper2(); } @Test public void test36() throws Exception{ helper2(); } @Test public void test37() throws Exception{ helper2(); } @Test public void test38() throws Exception{ helper2(); } @Test public void test39() throws Exception{ helper2(); } @Test public void test40() throws Exception{ helper2(); } @Test public void test41() throws Exception{ helper2(); } @Test public void test42() throws Exception{ helper2(); } @Test public void test43() throws Exception{ helper2(); } @Test public void test44() throws Exception{ helper2(); } @Test public void test45() throws Exception{ helper2(); } @Test public void test46() throws Exception{ helper2(false); } @Test public void test47() throws Exception{ helper2(); } @Test public void testDelegate01() throws Exception { // simple delegate helperDelegate(); } @Test public void testDelegate02() throws Exception { // "overridden" delegate helperDelegate(); } }