blob: 862c61f561dfdcdd231b5702741eec9a37536b8c [file] [log] [blame]
/*******************************************************************************
* 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.wst.jsdt.core.tests.rewrite.modifying;
import java.util.List;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.wst.jsdt.core.IJavaScriptUnit;
import org.eclipse.wst.jsdt.core.IPackageFragment;
import org.eclipse.wst.jsdt.core.dom.*;
import org.eclipse.wst.jsdt.core.tests.util.Util;
public class ASTRewritingModifyingCopyTest extends ASTRewritingModifyingTest {
private static final Class THIS = ASTRewritingModifyingCopyTest.class;
public ASTRewritingModifyingCopyTest(String name) {
super(name);
}
public static Test allTests() {
return new Suite(THIS);
}
public static Test suite() {
if (true) {
return allTests();
}
TestSuite suite= new Suite("one test");
suite.addTest(new ASTRewritingModifyingCopyTest("test0009"));
return suite;
}
public void test0001() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test0001", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test0001;\n");
buf.append("\n");
buf.append("public class X {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Y /**/ {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Z {\n");
buf.append("\n");
buf.append("}\n");
IJavaScriptUnit cu= pack1.createCompilationUnit("X.js", buf.toString(), false, null);
JavaScriptUnit astRoot= createCU(cu, false);
astRoot.recordModifications();
AST a = astRoot.getAST();
List types = astRoot.types();
TypeDeclaration typeDeclaration = (TypeDeclaration)types.get(1);
TypeDeclaration typeDeclaration2 = (TypeDeclaration)ASTNode.copySubtree(a, typeDeclaration);
types.add(typeDeclaration2);
String preview = evaluateRewrite(cu, astRoot);
buf= new StringBuffer();
buf.append("package test0001;\n");
buf.append("\n");
buf.append("public class X {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Y /**/ {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Z {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Y /**/ {\n");
buf.append("\n");
buf.append("}\n");
assertEqualString(preview, buf.toString());
}
/*
* Known limitation: a copied node cannot be modified.
*/
public void test0002() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test0002", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test0002;\n");
buf.append("\n");
buf.append("public class X {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Y /**/ {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Z {\n");
buf.append("\n");
buf.append("}\n");
IJavaScriptUnit cu= pack1.createCompilationUnit("X.js", buf.toString(), false, null);
JavaScriptUnit astRoot= createCU(cu, false);
astRoot.recordModifications();
AST a = astRoot.getAST();
List types = astRoot.types();
TypeDeclaration typeDeclaration = (TypeDeclaration)types.get(1);
TypeDeclaration typeDeclaration2 = (TypeDeclaration)ASTNode.copySubtree(a, typeDeclaration);
typeDeclaration2.setName(a.newSimpleName("A"));
types.add(typeDeclaration2);
String preview = evaluateRewrite(cu, astRoot);
buf= new StringBuffer();
buf.append("package test0002;\n");
buf.append("\n");
buf.append("public class X {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Y /**/ {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Z {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Y /**/ {\n");
buf.append("\n");
buf.append("}\n");
assertEqualString(preview, buf.toString());
}
/** @deprecated using deprecated code */
public void test0003() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test0003", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test0003;\n");
buf.append("\n");
buf.append("public class X extends Z1\n");
buf.append(" .Z2\n");
buf.append(" .Z3 {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Y {\n");
buf.append("\n");
buf.append("}\n");
IJavaScriptUnit cu= pack1.createCompilationUnit("X.js", buf.toString(), false, null);
JavaScriptUnit astRoot= createCU(cu, false);
astRoot.recordModifications();
AST a = astRoot.getAST();
List types = astRoot.types();
TypeDeclaration typeDeclaration1 = (TypeDeclaration)types.get(0);
TypeDeclaration typeDeclaration2 = (TypeDeclaration)types.get(1);
Name name = typeDeclaration1.getSuperclass();
Name name2 = (Name)ASTNode.copySubtree(a, name);
typeDeclaration2.setSuperclass(name2);
String preview = evaluateRewrite(cu, astRoot);
buf= new StringBuffer();
buf.append("package test0003;\n");
buf.append("\n");
buf.append("public class X extends Z1\n");
buf.append(" .Z2\n");
buf.append(" .Z3 {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Y extends Z1\n");
buf.append(" .Z2\n");
buf.append(" .Z3 {\n");
buf.append("\n");
buf.append("}\n");
assertEqualString(preview, buf.toString());
}
/** @deprecated using deprecated code */
public void test0004() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test0004", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test0004;\n");
buf.append("\n");
buf.append("public class X extends Z1\n");
buf.append(" .Z2\n");
buf.append(" .Z3 {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Y {\n");
buf.append("\n");
buf.append("}\n");
IJavaScriptUnit cu= pack1.createCompilationUnit("X.js", buf.toString(), false, null);
JavaScriptUnit astRoot= createCU(cu, false);
astRoot.recordModifications();
AST a = astRoot.getAST();
List types = astRoot.types();
TypeDeclaration typeDeclaration1 = (TypeDeclaration)types.get(0);
TypeDeclaration typeDeclaration2 = (TypeDeclaration)types.get(1);
Name name = typeDeclaration1.getSuperclass();
QualifiedName name2 = (QualifiedName)ASTNode.copySubtree(a, name);
Name name3 = name2.getQualifier();
name2.setQualifier(a.newSimpleName("A"));
typeDeclaration2.setSuperclass(name3);
String preview = evaluateRewrite(cu, astRoot);
buf= new StringBuffer();
buf.append("package test0004;\n");
buf.append("\n");
buf.append("public class X extends Z1\n");
buf.append(" .Z2\n");
buf.append(" .Z3 {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Y extends Z1\n");
buf.append(" .Z2 {\n");
buf.append("\n");
buf.append("}\n");
assertEqualString(Util.convertToIndependantLineDelimiter(preview), Util.convertToIndependantLineDelimiter(buf.toString()));
}
/** @deprecated using deprecated code */
public void test0005() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test0005", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test0005;\n");
buf.append("\n");
buf.append("public class X extends Z1\n");
buf.append(" .Z2\n");
buf.append(" .Z3 {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Y {\n");
buf.append("\n");
buf.append("}\n");
IJavaScriptUnit cu= pack1.createCompilationUnit("X.js", buf.toString(), false, null);
JavaScriptUnit astRoot= createCU(cu, false);
astRoot.recordModifications();
AST a = astRoot.getAST();
List types = astRoot.types();
TypeDeclaration typeDeclaration1 = (TypeDeclaration)types.get(0);
TypeDeclaration typeDeclaration2 = (TypeDeclaration)types.get(1);
Name name = typeDeclaration1.getSuperclass();
QualifiedName name2 = (QualifiedName)ASTNode.copySubtree(a, name);
QualifiedName name3 = (QualifiedName)name2.getQualifier();
name2.setQualifier(a.newSimpleName("A"));
name3.getName().setIdentifier("B");
typeDeclaration2.setSuperclass(name3);
String preview = evaluateRewrite(cu, astRoot);
buf= new StringBuffer();
buf.append("package test0005;\n");
buf.append("\n");
buf.append("public class X extends Z1\n");
buf.append(" .Z2\n");
buf.append(" .Z3 {\n");
buf.append("\n");
buf.append("}\n");
buf.append("class Y extends Z1\n");
buf.append(" .Z2 {\n");
buf.append("\n");
buf.append("}\n");
assertEqualString(Util.convertToIndependantLineDelimiter(preview), Util.convertToIndependantLineDelimiter(buf.toString()));
}
public void test0006() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test0006", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test0006;\n");
buf.append("\n");
buf.append("public class X {\n");
buf.append(" void foo() {\n");
buf.append(" bar1();\n");
buf.append(" \n");
buf.append(" //comment1\n");
buf.append(" bar2();//comment2\n");
buf.append(" //comment3\n");
buf.append(" bar3();\n");
buf.append(" }\n");
buf.append("}\n");
IJavaScriptUnit cu= pack1.createCompilationUnit("X.js", buf.toString(), false, null);
JavaScriptUnit astRoot= createCU(cu, false);
astRoot.recordModifications();
AST a = astRoot.getAST();
List types = astRoot.types();
TypeDeclaration typeDeclaration = (TypeDeclaration)types.get(0);
FunctionDeclaration methodDeclaration = typeDeclaration.getMethods()[0];
Block body = methodDeclaration.getBody();
List statements = body.statements();
Statement statement1 = (Statement)statements.get(1);
Statement statement2 = (Statement)ASTNode.copySubtree(a, statement1);
statements.add(statement2);
String preview = evaluateRewrite(cu, astRoot);
buf= new StringBuffer();
buf.append("package test0006;\n");
buf.append("\n");
buf.append("public class X {\n");
buf.append(" void foo() {\n");
buf.append(" bar1();\n");
buf.append(" \n");
buf.append(" //comment1\n");
buf.append(" bar2();//comment2\n");
buf.append(" //comment3\n");
buf.append(" bar3();\n");
buf.append(" //comment1\n");
buf.append(" bar2();//comment2\n");
buf.append(" }\n");
buf.append("}\n");
assertEqualString(Util.convertToIndependantLineDelimiter(preview), Util.convertToIndependantLineDelimiter(buf.toString()));
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=93208
/** @deprecated using deprecated code */
public void test0007() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test; public class Test { }");
IJavaScriptUnit cu= pack1.createCompilationUnit("Test.js", buf.toString(), false, null);
JavaScriptUnit astRoot= createCU(cu, false);
astRoot.recordModifications();
TypeDeclaration type = (TypeDeclaration) astRoot.types().get(0);
AST ast = type.getAST();
FunctionDeclaration m = ast.newFunctionDeclaration();
type.bodyDeclarations().add(m);
Block block = ast.newBlock();
m.setName(ast.newSimpleName("foo"));
m.setReturnType(ast.newPrimitiveType(PrimitiveType.VOID));
m.setBody(block);
FieldAccess fa = ast.newFieldAccess();
fa.setExpression(ast.newThisExpression());
fa.setName(ast.newSimpleName("x"));
FunctionInvocation mi = ast.newFunctionInvocation();
mi.setExpression(fa);
mi.setName(ast.newSimpleName("llall"));
ExpressionStatement exp = ast.newExpressionStatement(mi);
block.statements().add(exp);
StructuralPropertyDescriptor loc = mi.getLocationInParent();
//This will cause the bug
ASTNode node = ASTNode.copySubtree(ast, fa);
exp.setStructuralProperty(loc, node);
String preview = evaluateRewrite(cu, astRoot);
buf= new StringBuffer();
buf.append("package test; public class Test {\n");
buf.append("\n");
buf.append(" void foo(){this.x;} }");
assertEqualString(Util.convertToIndependantLineDelimiter(preview), Util.convertToIndependantLineDelimiter(buf.toString()));
}
// public void test0007() throws Exception {
// IPackageFragment pack1= fSourceFolder.createPackageFragment("test0007", false, null);
// StringBuffer buf= new StringBuffer();
// buf.append("package test0007;\n");
// buf.append("\n");
// buf.append("public class X {\n");
// buf.append(" /**\n");
// buf.append(" * NOTHING\n");
// buf.append(" */\n");
// buf.append(" void foo() {\n");
// buf.append(" \n");
// buf.append(" }\n");
// buf.append(" void bar() {\n");
// buf.append(" \n");
// buf.append(" }\n");
// buf.append("}\n");
// IJavaScriptUnit cu= pack1.createCompilationUnit("X.js", buf.toString(), false, null);
//
// JavaScriptUnit astRoot= parseCompilationUnit(cu, false);
//
// astRoot.recordModifications();
//
// AST a = astRoot.getAST();
//
// List types = astRoot.types();
// TypeDeclaration typeDeclaration = (TypeDeclaration)types.get(0);
// FunctionDeclaration methodDeclaration1 = typeDeclaration.getMethods()[0];
// FunctionDeclaration methodDeclaration2 = typeDeclaration.getMethods()[1];
// Javadoc javadoc1 = methodDeclaration1.getJavadoc();
// Javadoc javadoc2 = (Javadoc)ASTNode.copySubtree(a, javadoc1);
// methodDeclaration2.setJavadoc(javadoc2);
//
// String preview = evaluateRewrite(cu, astRoot);
//
// buf= new StringBuffer();
// buf.append("package test0007;\n");
// buf.append("\n");
// buf.append("public class X {\n");
// buf.append(" /**\n");
// buf.append(" * NOTHING\n");
// buf.append(" */\n");
// buf.append(" void foo() {\n");
// buf.append(" \n");
// buf.append(" }\n");
// buf.append(" /**\n");
// buf.append(" * NOTHING\n");
// buf.append(" */\n");
// buf.append(" void bar() {\n");
// buf.append(" \n");
// buf.append(" }\n");
// buf.append("}\n");
// assertEqualString(Util.convertToIndependantLineDelimiter(preview), Util.convertToIndependantLineDelimiter(buf.toString()));
// }
}