blob: b4b06651279176da1c71e8b0fd5caef273f79e2f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.refactoring;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.IPackageFragment;
import org.eclipse.jdt.core.ISourceRange;
import org.eclipse.jdt.core.dom.AST;
import org.eclipse.jdt.ui.tests.refactoring.infra.TextRangeUtil;
import org.eclipse.jdt.internal.corext.SourceRange;
import org.eclipse.jdt.internal.corext.refactoring.code.InlineTempRefactoring;
import org.eclipse.jdt.internal.corext.refactoring.util.RefactoringASTParser;
import org.eclipse.ltk.core.refactoring.RefactoringStatus;
public class InlineTempTests extends RefactoringTest {
private static final Class clazz= InlineTempTests.class;
private static final String REFACTORING_PATH= "InlineTemp/";
public InlineTempTests(String name) {
super(name);
}
protected String getRefactoringPath() {
return REFACTORING_PATH;
}
public static Test suite() {
return new RefactoringTestSetup(new TestSuite(clazz));
}
public static Test setUpTest(Test test) {
return new RefactoringTestSetup(test);
}
private String getSimpleTestFileName(boolean canInline, boolean input){
String fileName = "A_" + getName();
if (canInline)
fileName += input ? "_in": "_out";
return fileName + ".java";
}
private String getTestFileName(boolean canInline, boolean input){
String fileName= TEST_PATH_PREFIX + getRefactoringPath();
fileName += (canInline ? "canInline/": "cannotInline/");
return fileName + getSimpleTestFileName(canInline, input);
}
protected ICompilationUnit createCUfromTestFile(IPackageFragment pack, boolean canInline, boolean input) throws Exception {
return createCU(pack, getSimpleTestFileName(canInline, input), getFileContents(getTestFileName(canInline, input)));
}
private ISourceRange getSelection(ICompilationUnit cu) throws Exception{
String source= cu.getSource();
int offset= source.indexOf(AbstractSelectionTestCase.SQUARE_BRACKET_OPEN);
int end= source.indexOf(AbstractSelectionTestCase.SQUARE_BRACKET_CLOSE);
return new SourceRange(offset, end - offset);
}
private void helper1(ICompilationUnit cu, ISourceRange selection) throws Exception{
InlineTempRefactoring ref= new InlineTempRefactoring(cu, selection.getOffset(), selection.getLength());
if (ref.checkIfTempSelected(new RefactoringASTParser(AST.JLS3).parse(cu, true)).hasFatalError())
ref= null;
RefactoringStatus result= performRefactoring(ref);
assertEquals("precondition was supposed to pass", null, result);
IPackageFragment pack= (IPackageFragment)cu.getParent();
String newCuName= getSimpleTestFileName(true, true);
ICompilationUnit newcu= pack.getCompilationUnit(newCuName);
assertTrue(newCuName + " does not exist", newcu.exists());
assertEqualLines("incorrect inlining", getFileContents(getTestFileName(true, false)), newcu.getSource());
}
private void helper1(int startLine, int startColumn, int endLine, int endColumn) throws Exception{
ICompilationUnit cu= createCUfromTestFile(getPackageP(), true, true);
ISourceRange selection= TextRangeUtil.getSelection(cu, startLine, startColumn, endLine, endColumn);
helper1(cu, selection);
}
private void helper2() throws Exception{
ICompilationUnit cu= createCUfromTestFile(getPackageP(), false, true);
helper2(cu, getSelection(cu));
}
private void helper2(ICompilationUnit cu, ISourceRange selection) throws Exception{
InlineTempRefactoring ref= new InlineTempRefactoring(cu, selection.getOffset(), selection.getLength());
if (ref.checkIfTempSelected(new RefactoringASTParser(AST.JLS3).parse(cu, true)).hasFatalError())
ref= null;
if (ref != null){
RefactoringStatus result= performRefactoring(ref);
assertNotNull("precondition was supposed to fail", result);
}
}
private void helper2(int startLine, int startColumn, int endLine, int endColumn) throws Exception{
ICompilationUnit cu= createCUfromTestFile(getPackageP(), false, true);
ISourceRange selection= TextRangeUtil.getSelection(cu, startLine, startColumn, endLine, endColumn);
helper2(cu, selection);
}
//--- tests
public void test0() throws Exception{
helper1(4, 9, 4, 18);
}
public void test1() throws Exception{
helper1(4, 9, 4, 18);
}
public void test2() throws Exception{
helper1(4, 9, 4, 18);
}
public void test3() throws Exception{
helper1(4, 9, 4, 22);
}
public void test4() throws Exception{
helper1(4, 9, 4, 22);
}
public void test5() throws Exception{
helper1(4, 9, 4, 22);
}
public void test6() throws Exception{
//printTestDisabledMessage("bug#6429 declaration source start incorrect on local variable");
helper1(9, 13, 9, 14);
}
public void test7() throws Exception{
helper1(9, 9, 9, 18);
}
public void test8() throws Exception{
//printTestDisabledMessage("bug#6429 declaration source start incorrect on local variable");
helper1(5, 13, 5, 14);
}
public void test9() throws Exception{
helper1(5, 9, 5, 21);
}
public void test10() throws Exception{
// printTestDisabledMessage("regression test for bug#9001");
helper1(4, 21, 4, 25);
}
public void test11() throws Exception{
helper1(5, 21, 5, 25);
}
public void test12() throws Exception{
helper1(5, 15, 5, 19);
}
public void test13() throws Exception{
helper1(5, 17, 5, 18);
}
public void test14() throws Exception{
printTestDisabledMessage("regression for bug 11664");
// helper1(4, 13, 4, 14);
}
public void test15() throws Exception{
printTestDisabledMessage("regression for bug 11664");
// helper1(4, 19, 4, 20);
}
public void test16() throws Exception{
// printTestDisabledMessage("regression test for 10751");
helper1(5, 17, 5, 24);
}
public void test17() throws Exception{
// printTestDisabledMessage("regression test for 12200");
helper1(8, 18, 8, 21);
}
public void test18() throws Exception{
// printTestDisabledMessage("regression test for 12200");
helper1(6, 18, 6, 21);
}
public void test19() throws Exception{
// printTestDisabledMessage("regression test for 12212");
helper1(6, 19, 6, 19);
}
public void test20() throws Exception{
// printTestDisabledMessage("regression test for 16054");
helper1(4, 17, 4, 18);
}
public void test21() throws Exception{
// printTestDisabledMessage("regression test for 17479");
helper1(6, 20, 6, 25);
}
public void test22() throws Exception{
// printTestDisabledMessage("regression test for 18284");
helper1(5, 13, 5, 17);
}
public void test23() throws Exception{
// printTestDisabledMessage("regression test for 22938");
helper1(5, 16, 5, 20);
}
public void test24() throws Exception{
// printTestDisabledMessage("regression test for 26242");
helper1(5, 19, 5, 24);
}
public void test25() throws Exception{
// printTestDisabledMessage("regression test for 26242");
helper1(5, 19, 5, 24);
}
public void test26() throws Exception{
helper1(5, 17, 5, 24);
}
public void test27() throws Exception{
helper1(5, 22, 5, 29);
}
public void test28() throws Exception{
helper1(11, 14, 11, 21);
}
public void test29() throws Exception{
helper1(4, 8, 4, 11);
}
public void test30() throws Exception{
helper1(4, 8, 4, 11);
}
//------
public void testFail0() throws Exception{
printTestDisabledMessage("compile errors are ok now");
// helper2();
}
public void testFail1() throws Exception{
helper2();
}
public void testFail2() throws Exception{
helper2();
}
public void testFail3() throws Exception{
helper2();
}
public void testFail4() throws Exception{
helper2();
}
public void testFail5() throws Exception{
helper2();
}
public void testFail6() throws Exception{
helper2();
}
public void testFail7() throws Exception{
helper2();
}
public void testFail8() throws Exception{
helper2();
}
public void testFail9() throws Exception{
//test for 16737
helper2(3, 9, 3, 13);
}
public void testFail10() throws Exception{
//test for 16737
helper2(3, 5, 3, 17);
}
public void testFail11() throws Exception{
//test for 17253
helper2(8, 14, 8, 18);
}
public void testFail12() throws Exception{
//test for 19851
helper2(10, 16, 10, 19);
}
public void testFail13() throws Exception{
// printTestDisabledMessage("12106");
helper2(4, 18, 4, 19);
}
}