/******************************************************************************* * Copyright (c) 2000, 2016 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.core.tests.dom; import java.io.IOException; import java.util.Hashtable; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; import junit.framework.Test; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.OperationCanceledException; import org.eclipse.jdt.core.*; import org.eclipse.jdt.core.compiler.IProblem; import org.eclipse.jdt.core.dom.*; import org.eclipse.jdt.core.tests.model.CancelCounter; import org.eclipse.jdt.core.tests.model.Canceler; import org.eclipse.jdt.core.tests.model.ReconcilerTests; import org.eclipse.jdt.core.tests.util.Util; @SuppressWarnings({"rawtypes", "unchecked"}) public class ASTConverterTest2 extends ConverterTestSetup { /** @deprecated using deprecated code */ public void setUpSuite() throws Exception { super.setUpSuite(); this.ast = AST.newAST(AST.JLS2); } public ASTConverterTest2(String name) { super(name); } static { // TESTS_NAMES = new String[] {"test0578"}; // TESTS_NUMBERS = new int[] { 608 }; } public static Test suite() { return buildModelTestSuite(ASTConverterTest2.class); } /** * Internal access method to MethodDeclaration#thrownExceptions() for avoiding deprecated warnings. * @deprecated */ private static List internalThrownExceptions(MethodDeclaration methodDeclaration) { return methodDeclaration.thrownExceptions(); } /** * @deprecated */ private Type componentType(ArrayType array) { return array.getComponentType(); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=22560 * @deprecated using deprecated code */ public void test0401() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0401", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); ASTNode node = getASTNode((CompilationUnit) result, 0, 0); assertNotNull(node); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; Block block = methodDeclaration.getBody(); List statements = block.statements(); assertEquals("wrong size", 1, statements.size()); //$NON-NLS-1$ Statement statement = (Statement) statements.get(0); assertTrue("Not a return statement", statement.getNodeType() == ASTNode.RETURN_STATEMENT); //$NON-NLS-1$ ReturnStatement returnStatement = (ReturnStatement) statement; Expression expression = returnStatement.getExpression(); assertNotNull("there is no expression", expression); //$NON-NLS-1$ // call the default initialization methodDeclaration.getReturnType(); ITypeBinding typeBinding = expression.resolveTypeBinding(); assertNotNull("No typebinding", typeBinding); //$NON-NLS-1$ assertEquals("wrong name", "int", typeBinding.getName()); //$NON-NLS-1$ //$NON-NLS-2$ } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=23464 */ public void test0402() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0402", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); ASTNode node = getASTNode((CompilationUnit) result, 1, 0, 0); assertEquals("Wrong number of problems", 0, ((CompilationUnit) result).getProblems().length); //$NON-NLS-1$ assertNotNull(node); assertTrue("Not a super method invocation", node.getNodeType() == ASTNode.SUPER_CONSTRUCTOR_INVOCATION); //$NON-NLS-1$ checkSourceRange(node, "new A().super();", source); //$NON-NLS-1$ } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=23597 */ public void test0403() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0403", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); ASTNode node = getASTNode((CompilationUnit) result, 1, 0, 1); assertEquals("Wrong number of problems", 1, ((CompilationUnit) result).getProblems().length); //$NON-NLS-1$ assertNotNull(node); assertTrue("Not an expression statement", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertTrue("Not a method invocation", expression.getNodeType() == ASTNode.METHOD_INVOCATION); //$NON-NLS-1$ MethodInvocation methodInvocation = (MethodInvocation) expression; Expression expression2 = methodInvocation.getExpression(); assertTrue("Not a simple name", expression2.getNodeType() == ASTNode.SIMPLE_NAME); //$NON-NLS-1$ SimpleName simpleName = (SimpleName) expression2; IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); //$NON-NLS-1$ assertTrue("wrong type", binding.getKind() == IBinding.VARIABLE); //$NON-NLS-1$ IVariableBinding variableBinding = (IVariableBinding) binding; assertEquals("Wrong name", "test", variableBinding.getName()); //$NON-NLS-1$ //$NON-NLS-2$ SimpleName simpleName2 = methodInvocation.getName(); assertEquals("Wrong name", "clone", simpleName2.getIdentifier()); //$NON-NLS-1$ //$NON-NLS-2$ IBinding binding2 = simpleName2.resolveBinding(); assertNotNull("no binding2", binding2); //$NON-NLS-1$ assertTrue("Wrong type", binding2.getKind() == IBinding.METHOD); //$NON-NLS-1$ IMethodBinding methodBinding = (IMethodBinding) binding2; assertEquals("Wrong name", "clone", methodBinding.getName()); //$NON-NLS-1$ //$NON-NLS-2$ IMethodBinding methodBinding2 = methodInvocation.resolveMethodBinding(); assertNotNull("No method binding2", methodBinding2); assertTrue("Wrong binding", methodBinding == methodBinding2); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=23597 */ public void test0404() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0404", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); ASTNode node = getASTNode((CompilationUnit) result, 0, 0, 1); assertEquals("Wrong number of problems", 1, ((CompilationUnit) result).getProblems().length); //$NON-NLS-1$ assertNotNull(node); assertTrue("Not an expression statement", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertTrue("Not a method invocation", expression.getNodeType() == ASTNode.METHOD_INVOCATION); //$NON-NLS-1$ MethodInvocation methodInvocation = (MethodInvocation) expression; Expression expression2 = methodInvocation.getExpression(); assertTrue("Not a simple name", expression2.getNodeType() == ASTNode.SIMPLE_NAME); //$NON-NLS-1$ SimpleName simpleName = (SimpleName) expression2; IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); //$NON-NLS-1$ assertTrue("wrong type", binding.getKind() == IBinding.VARIABLE); //$NON-NLS-1$ IVariableBinding variableBinding = (IVariableBinding) binding; assertEquals("Wrong name", "a", variableBinding.getName()); //$NON-NLS-1$ //$NON-NLS-2$ SimpleName simpleName2 = methodInvocation.getName(); assertEquals("Wrong name", "clone", simpleName2.getIdentifier()); //$NON-NLS-1$ //$NON-NLS-2$ IBinding binding2 = simpleName2.resolveBinding(); assertNotNull("no binding2", binding2); //$NON-NLS-1$ assertTrue("Wrong type", binding2.getKind() == IBinding.METHOD); //$NON-NLS-1$ IMethodBinding methodBinding = (IMethodBinding) binding2; assertEquals("Wrong name", "clone", methodBinding.getName()); //$NON-NLS-1$ //$NON-NLS-2$ } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=23597 */ public void test0405() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0405", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); ASTNode node = getASTNode((CompilationUnit) result, 1, 0, 1); assertEquals("Wrong number of problems", 1, ((CompilationUnit) result).getProblems().length); //$NON-NLS-1$ assertNotNull(node); assertTrue("Not an expression statement", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertTrue("Not a method invocation", expression.getNodeType() == ASTNode.METHOD_INVOCATION); //$NON-NLS-1$ MethodInvocation methodInvocation = (MethodInvocation) expression; Expression expression2 = methodInvocation.getExpression(); assertTrue("Not a simple name", expression2.getNodeType() == ASTNode.SIMPLE_NAME); //$NON-NLS-1$ SimpleName simpleName = (SimpleName) expression2; IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); //$NON-NLS-1$ assertTrue("wrong type", binding.getKind() == IBinding.VARIABLE); //$NON-NLS-1$ IVariableBinding variableBinding = (IVariableBinding) binding; assertEquals("Wrong name", "a", variableBinding.getName()); //$NON-NLS-1$ //$NON-NLS-2$ SimpleName simpleName2 = methodInvocation.getName(); assertEquals("Wrong name", "clone", simpleName2.getIdentifier()); //$NON-NLS-1$ //$NON-NLS-2$ IBinding binding2 = simpleName2.resolveBinding(); assertNotNull("no binding2", binding2); //$NON-NLS-1$ assertTrue("Wrong type", binding2.getKind() == IBinding.METHOD); //$NON-NLS-1$ IMethodBinding methodBinding = (IMethodBinding) binding2; assertEquals("Wrong name", "clone", methodBinding.getName()); //$NON-NLS-1$ //$NON-NLS-2$ } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=23597 */ public void test0406() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0406", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); CompilationUnit unit = (CompilationUnit) result; ASTNode node = getASTNode((CompilationUnit) result, 0, 0, 1); assertEquals("Wrong number of problems", 1, ((CompilationUnit) result).getProblems().length); //$NON-NLS-1$ assertNotNull(node); assertTrue("Not an expression statement", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertTrue("Not a method invocation", expression.getNodeType() == ASTNode.METHOD_INVOCATION); //$NON-NLS-1$ MethodInvocation methodInvocation = (MethodInvocation) expression; Expression expression2 = methodInvocation.getExpression(); assertTrue("Not a simple name", expression2.getNodeType() == ASTNode.SIMPLE_NAME); //$NON-NLS-1$ SimpleName simpleName = (SimpleName) expression2; IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); //$NON-NLS-1$ assertTrue("wrong type", binding.getKind() == IBinding.VARIABLE); //$NON-NLS-1$ IVariableBinding variableBinding = (IVariableBinding) binding; assertEquals("Wrong name", "a", variableBinding.getName()); //$NON-NLS-1$ //$NON-NLS-2$ SimpleName simpleName2 = methodInvocation.getName(); assertEquals("Wrong name", "foo", simpleName2.getIdentifier()); //$NON-NLS-1$ //$NON-NLS-2$ IBinding binding2 = simpleName2.resolveBinding(); assertNotNull("no binding2", binding2); //$NON-NLS-1$ assertTrue("Wrong type", binding2.getKind() == IBinding.METHOD); //$NON-NLS-1$ IMethodBinding methodBinding = (IMethodBinding) binding2; assertEquals("Wrong name", "foo", methodBinding.getName()); //$NON-NLS-1$ //$NON-NLS-2$ assertNull("Got a declaring node in the unit", unit.findDeclaringNode(methodBinding)); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=23162 */ public void test0407() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0407", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertEquals("Wrong number of problems", 0, ((CompilationUnit) result).getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0); CompilationUnit unit = (CompilationUnit) result; assertNotNull(node); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; SimpleName simpleName = methodDeclaration.getName(); IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); //$NON-NLS-1$ assertTrue("Not a method binding", binding.getKind() == IBinding.METHOD); //$NON-NLS-1$ IMethodBinding methodBinding = (IMethodBinding) binding; assertEquals("wrong name", "foo", methodBinding.getName()); //$NON-NLS-1$ //$NON-NLS-2$ methodDeclaration.setName(methodDeclaration.getAST().newSimpleName("foo2")); //$NON-NLS-1$ IMethodBinding methodBinding2 = methodDeclaration.resolveBinding(); assertNotNull("No methodbinding2", methodBinding2); //$NON-NLS-1$ assertEquals("wrong name", "foo", methodBinding2.getName()); //$NON-NLS-1$ //$NON-NLS-2$ simpleName = methodDeclaration.getName(); IBinding binding2 = simpleName.resolveBinding(); assertNull("Got a binding2", binding2); //$NON-NLS-1$ ASTNode astNode = unit.findDeclaringNode(methodBinding); assertNotNull("No declaring node", astNode); assertEquals("wrong declaring node", methodDeclaration, astNode); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=23162 * @deprecated using deprecated code */ public void test0408() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0408", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertEquals("Wrong number of problems", 0, ((CompilationUnit) result).getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0); assertNotNull(node); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; Type type = methodDeclaration.getReturnType(); assertTrue("Not a simple type", type.isSimpleType()); //$NON-NLS-1$ SimpleType simpleType = (SimpleType) type; Name name = simpleType.getName(); assertTrue("Not a qualified name", name.isQualifiedName()); //$NON-NLS-1$ QualifiedName qualifiedName = (QualifiedName) name; name = qualifiedName.getQualifier(); assertTrue("Not a qualified name", name.isQualifiedName()); //$NON-NLS-1$ qualifiedName = (QualifiedName) name; name = qualifiedName.getQualifier(); assertTrue("Not a simple name", name.isSimpleName()); //$NON-NLS-1$ SimpleName simpleName = (SimpleName) name; IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); //$NON-NLS-1$ assertTrue("Not a package binding", binding.getKind() == IBinding.PACKAGE); //$NON-NLS-1$ assertEquals("Wrong name", "java", binding.getName()); //$NON-NLS-1$ //$NON-NLS-2$ } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=23162 */ public void test0409() throws JavaModelException { Hashtable options = JavaCore.getOptions(); Hashtable newOptions = JavaCore.getOptions(); try { newOptions.put(JavaCore.COMPILER_SOURCE, JavaCore.VERSION_1_4); JavaCore.setOptions(newOptions); ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0409", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit compilationUnit = (CompilationUnit) result; assertProblemsSize(compilationUnit, 0); BindingsCollectorVisitor bindingsCollectorVisitor = new BindingsCollectorVisitor(); compilationUnit.accept(bindingsCollectorVisitor); assertEquals("wrong number", 3, bindingsCollectorVisitor.getUnresolvedNodesSet().size()); //$NON-NLS-1$ Map bindingsMap = bindingsCollectorVisitor.getBindingsMap(); assertEquals("wrong number", 205, bindingsMap.size()); //$NON-NLS-1$ ASTNodesCollectorVisitor nodesCollector = new ASTNodesCollectorVisitor(); compilationUnit.accept(nodesCollector); Set detachedNodes = nodesCollector.getDetachedAstNodes(); for (Iterator iterator = detachedNodes.iterator(); iterator.hasNext(); ) { ASTNode detachedNode = (ASTNode) iterator.next(); IBinding binding = (IBinding) bindingsMap.get(detachedNode); assertNotNull(binding); switch(detachedNode.getNodeType()) { case ASTNode.ARRAY_ACCESS : case ASTNode.ARRAY_CREATION : case ASTNode.ARRAY_INITIALIZER : case ASTNode.ASSIGNMENT : case ASTNode.BOOLEAN_LITERAL : case ASTNode.CAST_EXPRESSION : case ASTNode.CHARACTER_LITERAL : case ASTNode.CLASS_INSTANCE_CREATION : case ASTNode.CONDITIONAL_EXPRESSION : case ASTNode.FIELD_ACCESS : case ASTNode.INFIX_EXPRESSION : case ASTNode.INSTANCEOF_EXPRESSION : case ASTNode.METHOD_INVOCATION : case ASTNode.NULL_LITERAL : case ASTNode.NUMBER_LITERAL : case ASTNode.POSTFIX_EXPRESSION : case ASTNode.PREFIX_EXPRESSION : case ASTNode.THIS_EXPRESSION : case ASTNode.TYPE_LITERAL : case ASTNode.VARIABLE_DECLARATION_EXPRESSION : ITypeBinding typeBinding = ((Expression) detachedNode).resolveTypeBinding(); if (!binding.equals(typeBinding)) { System.out.println(detachedNode); } assertTrue("binding not equals", binding.equals(typeBinding)); //$NON-NLS-1$ break; case ASTNode.VARIABLE_DECLARATION_FRAGMENT : assertTrue("binding not equals", binding.equals(((VariableDeclarationFragment) detachedNode).resolveBinding())); //$NON-NLS-1$ break; case ASTNode.ANONYMOUS_CLASS_DECLARATION : assertTrue("binding not equals", binding.equals(((AnonymousClassDeclaration) detachedNode).resolveBinding())); //$NON-NLS-1$ break; case ASTNode.QUALIFIED_NAME : case ASTNode.SIMPLE_NAME : IBinding newBinding = ((Name) detachedNode).resolveBinding(); assertTrue("binding not equals", binding.equals(newBinding)); //$NON-NLS-1$ break; case ASTNode.ARRAY_TYPE : case ASTNode.SIMPLE_TYPE : case ASTNode.PRIMITIVE_TYPE : assertTrue("binding not equals", binding.equals(((Type) detachedNode).resolveBinding())); //$NON-NLS-1$ break; case ASTNode.CONSTRUCTOR_INVOCATION : assertTrue("binding not equals", binding.equals(((ConstructorInvocation) detachedNode).resolveConstructorBinding())); //$NON-NLS-1$ break; case ASTNode.IMPORT_DECLARATION : assertTrue("binding not equals", binding.equals(((ImportDeclaration) detachedNode).resolveBinding())); //$NON-NLS-1$ break; case ASTNode.METHOD_DECLARATION : assertTrue("binding not equals", binding.equals(((MethodDeclaration) detachedNode).resolveBinding())); //$NON-NLS-1$ break; case ASTNode.PACKAGE_DECLARATION : assertTrue("binding not equals", binding.equals(((PackageDeclaration) detachedNode).resolveBinding())); //$NON-NLS-1$ break; case ASTNode.TYPE_DECLARATION : assertTrue("binding not equals", binding.equals(((TypeDeclaration) detachedNode).resolveBinding())); //$NON-NLS-1$ break; } } } finally { JavaCore.setOptions(options); } } /** * Test for message on jdt-core-dev */ public void test0410() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0410", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertEquals("Wrong number of problems", 0, ((CompilationUnit) result).getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0, 0); assertNotNull(node); assertTrue("Not a return statement", node.getNodeType() == ASTNode.RETURN_STATEMENT); //$NON-NLS-1$ Expression expression = ((ReturnStatement) node).getExpression(); assertTrue("Not an infix expression", expression.getNodeType() == ASTNode.INFIX_EXPRESSION); //$NON-NLS-1$ InfixExpression infixExpression = (InfixExpression) expression; List extendedOperands = infixExpression.extendedOperands(); assertEquals("wrong size", 3, extendedOperands.size()); //$NON-NLS-1$ } /** * Test for message on jdt-core-dev */ public void test0411() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0411", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertEquals("Wrong number of problems", 0, ((CompilationUnit) result).getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0, 0); assertNotNull(node); assertTrue("Not a return statement", node.getNodeType() == ASTNode.RETURN_STATEMENT); //$NON-NLS-1$ Expression expression = ((ReturnStatement) node).getExpression(); assertTrue("Not an infix expression", expression.getNodeType() == ASTNode.INFIX_EXPRESSION); //$NON-NLS-1$ InfixExpression infixExpression = (InfixExpression) expression; List extendedOperands = infixExpression.extendedOperands(); assertEquals("wrong size", 0, extendedOperands.size()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=23901 */ public void test0412() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0412", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0); assertNotNull(node); assertTrue("Not a type declaration", node.getNodeType() == ASTNode.TYPE_DECLARATION); //$NON-NLS-1$ TypeDeclaration typeDeclaration = (TypeDeclaration) node; assertTrue("Not an interface", typeDeclaration.isInterface()); //$NON-NLS-1$ ITypeBinding typeBinding = typeDeclaration.resolveBinding(); assertNotNull("No type binding", typeBinding); //$NON-NLS-1$ assertNotNull("No declaring node", unit.findDeclaringNode(typeBinding)); //$NON-NLS-1$ Name name = typeDeclaration.getName(); IBinding binding = name.resolveBinding(); assertNotNull("No binding", binding); //$NON-NLS-1$ ASTNode declaringNode = unit.findDeclaringNode(binding); assertNotNull("No declaring node", declaringNode); //$NON-NLS-1$ assertEquals("Wrong node", typeDeclaration, declaringNode); //$NON-NLS-1$ typeBinding = name.resolveTypeBinding(); assertNotNull("No type binding", typeBinding); //$NON-NLS-1$ declaringNode = unit.findDeclaringNode(typeBinding); assertNotNull("No declaring node", declaringNode); //$NON-NLS-1$ assertEquals("Wrong node", typeDeclaration, declaringNode); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=20881 */ public void test0413() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0413", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 1, 0); assertNotNull(node); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; List throwsException = internalThrownExceptions(methodDeclaration); assertEquals("wrong size", 2, throwsException.size()); //$NON-NLS-1$ Name name = (Name) throwsException.get(0); IBinding binding = name.resolveBinding(); assertNotNull("No binding", binding); //$NON-NLS-1$ assertEquals("LIOException;", binding.getKey()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=23734 * @deprecated using deprecated code */ public void test0414() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0414", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0); assertNotNull(node); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; Type type = methodDeclaration.getReturnType(); ITypeBinding typeBinding = type.resolveBinding(); assertNotNull("No type binding", typeBinding); //$NON-NLS-1$ ASTNode declaringNode = unit.findDeclaringNode(typeBinding); assertNull("Got a declaring node", declaringNode); //$NON-NLS-1$ node = getASTNode(unit, 0, 1); assertNotNull(node); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration2 = (MethodDeclaration) node; Type type2 = methodDeclaration2.getReturnType(); ITypeBinding typeBinding2 = type2.resolveBinding(); assertNotNull("No type binding", typeBinding2); //$NON-NLS-1$ ASTNode declaringNode2 = unit.findDeclaringNode(typeBinding2); assertNotNull("No declaring node", declaringNode2); //$NON-NLS-1$ ICompilationUnit sourceUnit2 = getCompilationUnit("Converter" , "src", "test0414", "B.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ result = runConversion(sourceUnit2, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit2 = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit2.getProblems().length); //$NON-NLS-1$ ASTNode declaringNode3 = unit2.findDeclaringNode(typeBinding); assertNull("Got a declaring node", declaringNode3); //$NON-NLS-1$ ASTNode declaringNode4 = unit2.findDeclaringNode(typeBinding.getKey()); assertNotNull("No declaring node", declaringNode4); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24268 */ public void test0415() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0415", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertNotNull("No node", node); assertTrue("not a switch statement", node.getNodeType() == ASTNode.SWITCH_STATEMENT); //$NON-NLS-1$ SwitchStatement switchStatement = (SwitchStatement) node; List statements = switchStatement.statements(); assertEquals("wrong size", statements.size(), 5); //$NON-NLS-1$ Statement statement = (Statement) statements.get(3); assertTrue("not a switch case (default)", statement.getNodeType() == ASTNode.SWITCH_CASE); //$NON-NLS-1$ SwitchCase defaultCase = (SwitchCase) statement; assertTrue("not a default case", defaultCase.isDefault()); checkSourceRange(defaultCase, "default:", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24324 */ public void test0416() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0416", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 1, 0, 0); assertNotNull("No node", node); assertTrue("not a variable declaration statement", node.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT); //$NON-NLS-1$ VariableDeclarationStatement statement = (VariableDeclarationStatement) node; List fragments = statement.fragments(); assertEquals("Wrong size", fragments.size(), 1); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression init = fragment.getInitializer(); assertTrue("not a qualified name", init.getNodeType() == ASTNode.QUALIFIED_NAME); //$NON-NLS-1$ QualifiedName qualifiedName = (QualifiedName) init; SimpleName simpleName = qualifiedName.getName(); assertEquals("Wrong name", "CONST", simpleName.getIdentifier()); IBinding binding = simpleName.resolveBinding(); assertEquals("Wrong type", IBinding.VARIABLE, binding.getKind()); IVariableBinding variableBinding = (IVariableBinding) binding; assertEquals("Wrong modifier", variableBinding.getModifiers(), Modifier.PUBLIC | Modifier.STATIC | Modifier.FINAL); ASTNode declaringNode = unit.findDeclaringNode(variableBinding); assertNotNull("No declaring node", declaringNode); assertTrue("not a variable declaration fragment", declaringNode.getNodeType() == ASTNode.VARIABLE_DECLARATION_FRAGMENT); VariableDeclarationFragment variableDeclarationFragment = (VariableDeclarationFragment) declaringNode; FieldDeclaration fieldDeclaration = (FieldDeclaration) variableDeclarationFragment.getParent(); assertEquals("Wrong modifier", fieldDeclaration.getModifiers(), Modifier.NONE); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24347 */ public void test0417() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0417", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertNotNull("No node", node); assertTrue("not a variable declaration statement", node.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT); //$NON-NLS-1$ VariableDeclarationStatement statement = (VariableDeclarationStatement) node; Type type = statement.getType(); assertTrue("not a simple type", type.getNodeType() == ASTNode.SIMPLE_TYPE); //$NON-NLS-1$ SimpleType simpleType = (SimpleType) type; Name name = simpleType.getName(); assertTrue("Not a qualified name", name.isQualifiedName()); QualifiedName qualifiedName = (QualifiedName) name; Name qualifier = qualifiedName.getQualifier(); assertTrue("Not a simple name", qualifier.isSimpleName()); IBinding binding = qualifier.resolveBinding(); assertNotNull("No binding", binding); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24406 */ public void test0418() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0418", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 1, 0); assertNotNull("No node", node); assertTrue("not an expression statement ", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertTrue("not an method invocation", expression.getNodeType() == ASTNode.METHOD_INVOCATION); //$NON-NLS-1$ MethodInvocation methodInvocation = (MethodInvocation) expression; Name name = methodInvocation.getName(); IBinding binding = name.resolveBinding(); assertNotNull("No binding", binding); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24449 */ public void test0419() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0419", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 1, 0, 0); assertEquals("Not an expression statement", node.getNodeType(), ASTNode.EXPRESSION_STATEMENT); ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertEquals("Not an assignment", expression.getNodeType(), ASTNode.ASSIGNMENT); Assignment assignment = (Assignment) expression; Expression expression2 = assignment.getLeftHandSide(); assertEquals("Not a name", expression2.getNodeType(), ASTNode.SIMPLE_NAME); SimpleName simpleName = (SimpleName) expression2; IBinding binding = simpleName.resolveBinding(); assertNull(binding); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24453 */ public void test0420() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0420", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Not a variable declaration statement", node.getNodeType(), ASTNode.VARIABLE_DECLARATION_STATEMENT); VariableDeclarationStatement statement = (VariableDeclarationStatement) node; List fragments = statement.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertEquals("Not an infix expression", expression.getNodeType(), ASTNode.INFIX_EXPRESSION); InfixExpression infixExpression = (InfixExpression) expression; Expression expression2 = infixExpression.getRightOperand(); assertEquals("Not a parenthesized expression", expression2.getNodeType(), ASTNode.PARENTHESIZED_EXPRESSION); checkSourceRange(expression2, "(2 + 3)", source); ParenthesizedExpression parenthesizedExpression = (ParenthesizedExpression) expression2; Expression expression3 = parenthesizedExpression.getExpression(); checkSourceRange(expression3, "2 + 3", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24453 */ public void test0421() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0421", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Not a variable declaration statement", node.getNodeType(), ASTNode.VARIABLE_DECLARATION_STATEMENT); VariableDeclarationStatement statement = (VariableDeclarationStatement) node; List fragments = statement.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertEquals("Not an infix expression", expression.getNodeType(), ASTNode.INFIX_EXPRESSION); InfixExpression infixExpression = (InfixExpression) expression; checkSourceRange(infixExpression, "(1 + 2) + 3", source); Expression expression2 = infixExpression.getLeftOperand(); assertEquals("Not a parenthesized expression", expression2.getNodeType(), ASTNode.PARENTHESIZED_EXPRESSION); checkSourceRange(expression2, "(1 + 2)", source); ParenthesizedExpression parenthesizedExpression = (ParenthesizedExpression) expression2; Expression expression3 = parenthesizedExpression.getExpression(); checkSourceRange(expression3, "1 + 2", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24453 */ public void test0422() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0422", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Not a variable declaration statement", node.getNodeType(), ASTNode.VARIABLE_DECLARATION_STATEMENT); VariableDeclarationStatement statement = (VariableDeclarationStatement) node; List fragments = statement.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertEquals("Not an infix expression", expression.getNodeType(), ASTNode.INFIX_EXPRESSION); InfixExpression infixExpression = (InfixExpression) expression; checkSourceRange(infixExpression, "( 1 + 2 ) + 3", source); Expression expression2 = infixExpression.getLeftOperand(); assertEquals("Not a parenthesized expression", expression2.getNodeType(), ASTNode.PARENTHESIZED_EXPRESSION); checkSourceRange(expression2, "( 1 + 2 )", source); ParenthesizedExpression parenthesizedExpression = (ParenthesizedExpression) expression2; Expression expression3 = parenthesizedExpression.getExpression(); checkSourceRange(expression3, "1 + 2", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24453 */ public void test0423() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0423", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Not a variable declaration statement", node.getNodeType(), ASTNode.VARIABLE_DECLARATION_STATEMENT); VariableDeclarationStatement statement = (VariableDeclarationStatement) node; List fragments = statement.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertEquals("Not an infix expression", expression.getNodeType(), ASTNode.INFIX_EXPRESSION); InfixExpression infixExpression = (InfixExpression) expression; Expression expression2 = infixExpression.getRightOperand(); assertEquals("Not a parenthesized expression", expression2.getNodeType(), ASTNode.PARENTHESIZED_EXPRESSION); checkSourceRange(expression2, "( 2 + 3 )", source); ParenthesizedExpression parenthesizedExpression = (ParenthesizedExpression) expression2; Expression expression3 = parenthesizedExpression.getExpression(); checkSourceRange(expression3, "2 + 3", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24453 */ public void test0424() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0424", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Not a variable declaration statement", node.getNodeType(), ASTNode.VARIABLE_DECLARATION_STATEMENT); VariableDeclarationStatement statement = (VariableDeclarationStatement) node; List fragments = statement.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertEquals("Not an infix expression", expression.getNodeType(), ASTNode.INFIX_EXPRESSION); InfixExpression infixExpression = (InfixExpression) expression; assertEquals("Wrong size", 1, infixExpression.extendedOperands().size()); Expression expression2 = (Expression) infixExpression.extendedOperands().get(0); checkSourceRange(expression2, "( 2 + 3 )", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24453 */ public void test0425() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0425", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Not a variable declaration statement", node.getNodeType(), ASTNode.VARIABLE_DECLARATION_STATEMENT); VariableDeclarationStatement statement = (VariableDeclarationStatement) node; List fragments = statement.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertEquals("Not an infix expression", expression.getNodeType(), ASTNode.INFIX_EXPRESSION); InfixExpression infixExpression = (InfixExpression) expression; assertEquals("Wrong size", 0, infixExpression.extendedOperands().size()); Expression expression2 = infixExpression.getRightOperand(); assertTrue("not an infix expression", expression2.getNodeType() == ASTNode.INFIX_EXPRESSION); //$NON-NLS-1$ InfixExpression infixExpression2 = (InfixExpression) expression2; Expression expression3 = infixExpression2.getRightOperand(); assertTrue("not a parenthesized expression", expression3.getNodeType() == ASTNode.PARENTHESIZED_EXPRESSION); //$NON-NLS-1$ checkSourceRange(expression3, "( 2 + 3 )", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24449 */ public void test0426() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0426", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 1, 0, 0); assertEquals("Not a variable declaration statement", node.getNodeType(), ASTNode.VARIABLE_DECLARATION_STATEMENT); VariableDeclarationStatement statement = (VariableDeclarationStatement) node; Type type = statement.getType(); assertTrue("not a simple type", type.getNodeType() == ASTNode.SIMPLE_TYPE); SimpleType simpleType = (SimpleType) type; Name name = simpleType.getName(); assertNotNull("No name", name); IBinding binding = name.resolveBinding(); assertNotNull("No binding", binding); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24449 */ public void test0427() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0427", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 1, 0, 0); assertEquals("Not an expression statement", node.getNodeType(), ASTNode.EXPRESSION_STATEMENT); ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertEquals("Not an assignment", expression.getNodeType(), ASTNode.ASSIGNMENT); Assignment assignment = (Assignment) expression; Expression expression2 = assignment.getLeftHandSide(); assertEquals("Not a super field access", expression2.getNodeType(), ASTNode.SUPER_FIELD_ACCESS); SuperFieldAccess superFieldAccess = (SuperFieldAccess) expression2; Name name = superFieldAccess.getName(); assertNotNull("No name", name); IBinding binding = name.resolveBinding(); assertNull("Got a binding", binding); assertNull("Got a binding", superFieldAccess.resolveFieldBinding()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24449 */ public void test0428() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0428", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 1, 0, 0); assertEquals("Not an expression statement", node.getNodeType(), ASTNode.EXPRESSION_STATEMENT); ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertEquals("Not an assignment", expression.getNodeType(), ASTNode.ASSIGNMENT); Assignment assignment = (Assignment) expression; Expression expression2 = assignment.getLeftHandSide(); assertEquals("Not a qualified name", expression2.getNodeType(), ASTNode.QUALIFIED_NAME); QualifiedName name = (QualifiedName) expression2; SimpleName simpleName = name.getName(); IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); IBinding binding2 = name.resolveBinding(); assertNotNull("No binding2", binding2); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24449 */ public void test0429() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0429", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 1, 0, 0); assertEquals("Not an expression statement", node.getNodeType(), ASTNode.EXPRESSION_STATEMENT); ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertEquals("Not an assignment", expression.getNodeType(), ASTNode.ASSIGNMENT); Assignment assignment = (Assignment) expression; Expression expression2 = assignment.getLeftHandSide(); assertEquals("Not a qualified name", expression2.getNodeType(), ASTNode.QUALIFIED_NAME); QualifiedName name = (QualifiedName) expression2; SimpleName simpleName = name.getName(); IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); IBinding binding2 = name.resolveBinding(); assertNotNull("No binding2", binding2); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24499 */ public void test0430() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0430", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertTrue("Not a constructor invocation", node.getNodeType() == ASTNode.CONSTRUCTOR_INVOCATION); ConstructorInvocation constructorInvocation = (ConstructorInvocation) node; checkSourceRange(constructorInvocation, "this(coo2());", source); List arguments = constructorInvocation.arguments(); assertEquals("Wrong size", 1, arguments.size()); Expression expression = (Expression) arguments.get(0); assertTrue("Not a method invocation", expression.getNodeType() == ASTNode.METHOD_INVOCATION); MethodInvocation methodInvocation = (MethodInvocation) expression; SimpleName simpleName = methodInvocation.getName(); IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24500 */ public void test0431() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0431", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertTrue("Not a constructor invocation", node.getNodeType() == ASTNode.CONSTRUCTOR_INVOCATION); ConstructorInvocation constructorInvocation = (ConstructorInvocation) node; List arguments = constructorInvocation.arguments(); assertEquals("Wrong size", 1, arguments.size()); Expression expression = (Expression) arguments.get(0); assertTrue("Not a simple name", expression.getNodeType() == ASTNode.SIMPLE_NAME); SimpleName simpleName = (SimpleName) expression; IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24501 */ public void test0432() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0432", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 1, 0, 0); assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType()); ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertEquals("Not an assignment", ASTNode.ASSIGNMENT, expression.getNodeType()); Assignment assignment = (Assignment) expression; Expression expression2 = assignment.getLeftHandSide(); assertEquals("Not a simple name", ASTNode.SIMPLE_NAME, expression2.getNodeType()); SimpleName simpleName = (SimpleName) expression2; IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24501 */ public void test0433() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0433", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 1, 0, 0); assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType()); ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertEquals("Not an assignment", ASTNode.ASSIGNMENT, expression.getNodeType()); Assignment assignment = (Assignment) expression; Expression expression2 = assignment.getLeftHandSide(); assertEquals("Not a super field access", ASTNode.SUPER_FIELD_ACCESS, expression2.getNodeType()); SuperFieldAccess superFieldAccess = (SuperFieldAccess) expression2; SimpleName simpleName = superFieldAccess.getName(); assertEquals("wrong name", "fCoo", simpleName.getIdentifier()); IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); assertEquals("Wrong binding", IBinding.VARIABLE, binding.getKind()); IVariableBinding variableBinding = superFieldAccess.resolveFieldBinding(); assertTrue("Different binding", binding == variableBinding); ASTNode astNode = unit.findDeclaringNode(variableBinding); assertTrue("Wrong type", astNode.getNodeType() == ASTNode.SINGLE_VARIABLE_DECLARATION || astNode.getNodeType() == ASTNode.VARIABLE_DECLARATION_FRAGMENT || astNode.getNodeType() == ASTNode.VARIABLE_DECLARATION_EXPRESSION); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24501 */ public void test0434() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0434", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 1, 0, 0); assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType()); ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertEquals("Not an assignment", ASTNode.ASSIGNMENT, expression.getNodeType()); Assignment assignment = (Assignment) expression; Expression expression2 = assignment.getLeftHandSide(); assertEquals("Not a qualified name", ASTNode.QUALIFIED_NAME, expression2.getNodeType()); QualifiedName qualifiedName = (QualifiedName) expression2; SimpleName simpleName = qualifiedName.getName(); assertEquals("wrong name", "fCoo", simpleName.getIdentifier()); IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24501 */ public void test0435() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0435", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 1, 0, 0); assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType()); ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertEquals("Not an assignment", ASTNode.ASSIGNMENT, expression.getNodeType()); Assignment assignment = (Assignment) expression; Expression expression2 = assignment.getLeftHandSide(); assertEquals("Not a qualified name", ASTNode.QUALIFIED_NAME, expression2.getNodeType()); QualifiedName qualifiedName = (QualifiedName) expression2; SimpleName simpleName = qualifiedName.getName(); assertEquals("wrong name", "fCoo", simpleName.getIdentifier()); IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24502 */ public void test0436() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0436", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertProblemsSize(unit, 1, "The type A.CInner is not visible"); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 1, 0, 0); assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType()); VariableDeclarationStatement statement = (VariableDeclarationStatement) node; Type type = statement.getType(); assertEquals("Not a simple type", ASTNode.SIMPLE_TYPE, type.getNodeType()); SimpleType simpleType = (SimpleType) type; Name name = simpleType.getName(); IBinding binding = name.resolveBinding(); assertNotNull("No binding", binding); assertEquals("Not a qualified name", ASTNode.QUALIFIED_NAME, name.getNodeType()); QualifiedName qualifiedName = (QualifiedName) name; SimpleName simpleName = qualifiedName.getName(); assertEquals("wrong name", "CInner", simpleName.getIdentifier()); IBinding binding2 = simpleName.resolveBinding(); assertNotNull("No binding", binding2); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24502 */ public void test0437() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0437", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertProblemsSize(unit, 1, "The type CInner is not visible"); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 1, 0, 0); assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType()); VariableDeclarationStatement statement = (VariableDeclarationStatement) node; Type type = statement.getType(); assertEquals("Not a simple type", ASTNode.SIMPLE_TYPE, type.getNodeType()); SimpleType simpleType = (SimpleType) type; Name name = simpleType.getName(); assertEquals("Not a simple name", ASTNode.SIMPLE_NAME, name.getNodeType()); SimpleName simpleName = (SimpleName) name; IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24511 */ public void test0438() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0438", "D.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< List imports = unit.imports(); assertEquals("Wrong size", 1, imports.size()); //$NON-NLS-1$< ImportDeclaration importDeclaration = (ImportDeclaration) imports.get(0); IBinding binding = importDeclaration.resolveBinding(); assertNotNull("No binding", binding); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24502 */ public void test0439() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0439", "E.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType()); VariableDeclarationStatement statement = (VariableDeclarationStatement) node; Type type = statement.getType(); assertEquals("Not a simple type", ASTNode.SIMPLE_TYPE, type.getNodeType()); SimpleType simpleType = (SimpleType) type; Name name = simpleType.getName(); IBinding binding = name.resolveBinding(); assertNotNull("No binding", binding); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24622 */ public void test0440() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0440", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType()); VariableDeclarationStatement statement = (VariableDeclarationStatement) node; List fragments = statement.fragments(); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertEquals("Not an infix expression", ASTNode.INFIX_EXPRESSION, expression.getNodeType()); // 2 * 3 + "" + (true) InfixExpression infixExpression = (InfixExpression) expression; checkSourceRange(infixExpression, "2 * 3 + \"\" + (true)", source); Expression leftOperand = infixExpression.getLeftOperand(); checkSourceRange(leftOperand, "2 * 3 + \"\"", source); checkSourceRange(infixExpression.getRightOperand(), "(true)", source); assertEquals("wrong operator", infixExpression.getOperator(), InfixExpression.Operator.PLUS); assertEquals("wrong type", ASTNode.INFIX_EXPRESSION, leftOperand.getNodeType()); infixExpression = (InfixExpression) leftOperand; checkSourceRange(infixExpression, "2 * 3 + \"\"", source); leftOperand = infixExpression.getLeftOperand(); checkSourceRange(leftOperand, "2 * 3", source); checkSourceRange(infixExpression.getRightOperand(), "\"\"", source); assertEquals("wrong operator", infixExpression.getOperator(), InfixExpression.Operator.PLUS); assertEquals("wrong type", ASTNode.INFIX_EXPRESSION, leftOperand.getNodeType()); infixExpression = (InfixExpression) leftOperand; checkSourceRange(infixExpression, "2 * 3", source); leftOperand = infixExpression.getLeftOperand(); checkSourceRange(leftOperand, "2", source); checkSourceRange(infixExpression.getRightOperand(), "3", source); assertEquals("wrong operator", infixExpression.getOperator(), InfixExpression.Operator.TIMES); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24622 */ public void test0441() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0441", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType()); VariableDeclarationStatement statement = (VariableDeclarationStatement) node; List fragments = statement.fragments(); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertEquals("Not an infix expression", ASTNode.INFIX_EXPRESSION, expression.getNodeType()); InfixExpression infixExpression = (InfixExpression) expression; checkSourceRange(infixExpression, "(2 + 2) * 3 * 1", source); Expression leftOperand = infixExpression.getLeftOperand(); checkSourceRange(leftOperand, "(2 + 2)", source); checkSourceRange(infixExpression.getRightOperand(), "3", source); List extendedOperands = infixExpression.extendedOperands(); assertEquals("wrong size", 1, extendedOperands.size()); checkSourceRange((Expression) extendedOperands.get(0), "1", source); assertEquals("wrong operator", InfixExpression.Operator.TIMES, infixExpression.getOperator()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24622 */ public void test0442() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0442", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType()); VariableDeclarationStatement statement = (VariableDeclarationStatement) node; List fragments = statement.fragments(); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertEquals("Not an infix expression", ASTNode.INFIX_EXPRESSION, expression.getNodeType()); InfixExpression infixExpression = (InfixExpression) expression; checkSourceRange(infixExpression, "2 + (2 * 3) + 1", source); Expression leftOperand = infixExpression.getLeftOperand(); checkSourceRange(leftOperand, "2", source); Expression rightOperand = infixExpression.getRightOperand(); checkSourceRange(rightOperand, "(2 * 3)", source); assertEquals("wrong type", ASTNode.PARENTHESIZED_EXPRESSION, rightOperand.getNodeType()); List extendedOperands = infixExpression.extendedOperands(); assertEquals("wrong size", 1, extendedOperands.size()); checkSourceRange((Expression) extendedOperands.get(0), "1", source); assertEquals("wrong operator", InfixExpression.Operator.PLUS, infixExpression.getOperator()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24623 */ public void test0443() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0443", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 3, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0); assertEquals("Wrong type", ASTNode.METHOD_DECLARATION, node.getNodeType()); MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertNotNull("No body", methodDeclaration.getBody()); assertNotNull("No binding", methodDeclaration.resolveBinding()); assertTrue("Not an abstract method", Modifier.isAbstract(methodDeclaration.getModifiers())); assertTrue("Not malformed", isMalformed(methodDeclaration)); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24623 */ public void test0444() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0444", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 2, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0); assertEquals("Wrong type", ASTNode.TYPE_DECLARATION, node.getNodeType()); TypeDeclaration typeDeclaration = (TypeDeclaration) node; List bodyDeclarations = typeDeclaration.bodyDeclarations(); assertEquals("Wrong size", 2, bodyDeclarations.size()); BodyDeclaration bodyDeclaration = (BodyDeclaration)bodyDeclarations.get(0); assertEquals("Wrong type", ASTNode.METHOD_DECLARATION, bodyDeclaration.getNodeType()); MethodDeclaration methodDeclaration = (MethodDeclaration) bodyDeclaration; assertEquals("Wrong name", "foo", methodDeclaration.getName().getIdentifier()); bodyDeclaration = (BodyDeclaration)bodyDeclarations.get(1); assertEquals("Wrong type", ASTNode.METHOD_DECLARATION, bodyDeclaration.getNodeType()); assertEquals("Wrong name", "foo", ((MethodDeclaration) bodyDeclaration).getName().getIdentifier()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24773 */ public void test0445() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0445", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$< } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=25018 */ public void test0446() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0446", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 2, unit.getProblems().length); //$NON-NLS-1$< } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=25124 */ public void test0447() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0447", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 3, unit.getProblems().length); //$NON-NLS-1$< } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=25330 * @deprecated using deprecated code */ public void test0448() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0448", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0); assertEquals("Not a method declaration", node.getNodeType(), ASTNode.METHOD_DECLARATION); MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertTrue("Not a constructor", methodDeclaration.isConstructor()); ITypeBinding returnTypeBinding = methodDeclaration.getReturnType().resolveBinding(); assertNotNull("No return type binding", returnTypeBinding); Block block = methodDeclaration.getBody(); assertNotNull("No method body", block); assertEquals("wrong size", 0, block.statements().size()); } /** * Check that the implicit super constructor call is not there */ public void test0449() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0449", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0); assertEquals("Not a method declaration", node.getNodeType(), ASTNode.METHOD_DECLARATION); MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertTrue("Not a constructor", methodDeclaration.isConstructor()); Block block = methodDeclaration.getBody(); assertNotNull("No method body", block); assertEquals("wrong size", 1, block.statements().size()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=26452 */ public void test0450() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0450", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0); assertEquals("Not a type declaration", node.getNodeType(), ASTNode.TYPE_DECLARATION); TypeDeclaration typeDeclaration = (TypeDeclaration) node; ITypeBinding typeBinding = typeDeclaration.resolveBinding(); assertNotNull("No type binding", typeBinding); assertTrue("not a class", typeBinding.isClass()); assertTrue("not a toplevel type", typeBinding.isTopLevel()); assertTrue("a local type", !typeBinding.isLocal()); assertTrue("an anonymous type", !typeBinding.isAnonymous()); assertTrue("a member type", !typeBinding.isMember()); assertTrue("a nested type", !typeBinding.isNested()); node = getASTNode(unit, 0, 0, 0); assertEquals("Not an expression statement", node.getNodeType(), ASTNode.EXPRESSION_STATEMENT); Expression expression = ((ExpressionStatement) node).getExpression(); assertEquals("Not a class instance creation", expression.getNodeType(), ASTNode.CLASS_INSTANCE_CREATION); ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expression; AnonymousClassDeclaration anonymousClassDeclaration = classInstanceCreation.getAnonymousClassDeclaration(); typeBinding = anonymousClassDeclaration.resolveBinding(); assertNotNull("No type binding", typeBinding); assertTrue("not a class", typeBinding.isClass()); assertTrue("a toplevel type", !typeBinding.isTopLevel()); assertTrue("not a local type", typeBinding.isLocal()); assertTrue("not an anonymous type", typeBinding.isAnonymous()); assertTrue("a member type", !typeBinding.isMember()); assertTrue("not a nested type", typeBinding.isNested()); ASTNode astNode = unit.findDeclaringNode(typeBinding); assertEquals("Wrong type", ASTNode.ANONYMOUS_CLASS_DECLARATION, astNode.getNodeType()); assertNotNull("Didn't get a key", typeBinding.getKey()); astNode = unit.findDeclaringNode(typeBinding.getKey()); assertNotNull("Didn't get a declaring node", astNode); ITypeBinding typeBinding3 = classInstanceCreation.resolveTypeBinding(); assertEquals("wrong binding", typeBinding, typeBinding3); List bodyDeclarations = anonymousClassDeclaration.bodyDeclarations(); assertEquals("wrong size", 2, bodyDeclarations.size()); BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0); assertTrue("not a type declaration", bodyDeclaration.getNodeType() == ASTNode.TYPE_DECLARATION); typeDeclaration = (TypeDeclaration) bodyDeclaration; bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(1); MethodDeclaration methodDeclaration = (MethodDeclaration) bodyDeclaration; Block block = methodDeclaration.getBody(); assertNotNull("No body", block); List statements = block.statements(); assertEquals("wrong size", 2, statements.size()); Statement statement = (Statement) statements.get(1); assertEquals("Not a variable declaration statement", statement.getNodeType(), ASTNode.VARIABLE_DECLARATION_STATEMENT); VariableDeclarationStatement variableDeclarationStatement = (VariableDeclarationStatement) statement; Type type = variableDeclarationStatement.getType(); assertNotNull("No type", type); ITypeBinding typeBinding2 = type.resolveBinding(); typeBinding = typeDeclaration.resolveBinding(); assertTrue("not equals", typeBinding == typeBinding2); assertNotNull("No type binding", typeBinding); assertTrue("not a class", typeBinding.isClass()); assertTrue("a toplevel type", !typeBinding.isTopLevel()); assertTrue("an anonymous type", !typeBinding.isAnonymous()); assertTrue("not a member type", typeBinding.isMember()); assertTrue("not a nested type", typeBinding.isNested()); assertTrue("a local type", !typeBinding.isLocal()); bodyDeclarations = typeDeclaration.bodyDeclarations(); assertEquals("wrong size", 1, bodyDeclarations.size()); bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0); assertTrue("not a type declaration", bodyDeclaration.getNodeType() == ASTNode.TYPE_DECLARATION); typeDeclaration = (TypeDeclaration) bodyDeclaration; typeBinding = typeDeclaration.resolveBinding(); assertNotNull("No type binding", typeBinding); assertTrue("not a class", typeBinding.isClass()); assertTrue("a toplevel type", !typeBinding.isTopLevel()); assertTrue("an anonymous type", !typeBinding.isAnonymous()); assertTrue("not a member type", typeBinding.isMember()); assertTrue("not a nested type", typeBinding.isNested()); assertTrue("a local type", !typeBinding.isLocal()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=24916 * @deprecated using deprecated code */ public void test0451() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0451", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 2, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0); assertNotNull("No node", node); assertTrue("not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; Type type = methodDeclaration.getReturnType(); checkSourceRange(type, "int", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=27204 */ public void test0452() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "", "NO_WORKING.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, false); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit compilationUnit = (CompilationUnit) result; ASTNode node = getASTNode(compilationUnit, 0, 0); assertNotNull("No node", node); assertTrue("not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; SimpleName name = methodDeclaration.getName(); assertEquals("wrong line number", 3, compilationUnit.getLineNumber(name.getStartPosition())); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=27173 */ public void test0453() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0453", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit compilationUnit = (CompilationUnit) result; ASTNode node = getASTNode(compilationUnit, 0, 0,0); assertNotNull("No node", node); assertTrue("not a return statement", node.getNodeType() == ASTNode.RETURN_STATEMENT); //$NON-NLS-1$ ReturnStatement returnStatement = (ReturnStatement) node; Expression expression = returnStatement.getExpression(); assertTrue("not a super method invocation", expression.getNodeType() == ASTNode.SUPER_METHOD_INVOCATION); //$NON-NLS-1$ SuperMethodInvocation methodInvocation = (SuperMethodInvocation) expression; IMethodBinding methodBinding = methodInvocation.resolveMethodBinding(); assertNotNull("No method binding", methodBinding); assertEquals("Wrong binding", "toString", methodBinding.getName()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=28296 */ public void test0454() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0454", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit compilationUnit = (CompilationUnit) result; ASTNode node = getASTNode(compilationUnit, 0, 0,1); assertNotNull("No node", node); assertTrue("not a variable declaration statement", node.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT); //$NON-NLS-1$ VariableDeclarationStatement statement = (VariableDeclarationStatement) node; List fragments = statement.fragments(); assertEquals("wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertTrue("not a cast expression", expression.getNodeType() == ASTNode.CAST_EXPRESSION); //$NON-NLS-1$ checkSourceRange(expression, "(int) (3.14f * a)", source); CastExpression castExpression = (CastExpression) expression; checkSourceRange(castExpression.getType(), "int", source); Expression expression2 = castExpression.getExpression(); checkSourceRange(expression2, "(3.14f * a)", source); assertTrue("not a parenthesized expression", expression2.getNodeType() == ASTNode.PARENTHESIZED_EXPRESSION); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=28682 */ public void test0455() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0455", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit compilationUnit = (CompilationUnit) result; ASTNode node = getASTNode(compilationUnit, 0, 0, 0); assertNotNull("No node", node); assertTrue("not a for statement", node.getNodeType() == ASTNode.FOR_STATEMENT); //$NON-NLS-1$ ForStatement forStatement = (ForStatement) node; // first for loop String expectedSource = "for (int i = 0; i < 10; i++) // for 1\n" + " for (int j = 0; j < 10; j++) // for 2\n" + " if (true) { }"; checkSourceRange(forStatement, expectedSource, source); Statement body = forStatement.getBody(); expectedSource = "for (int j = 0; j < 10; j++) // for 2\n" + " if (true) { }"; checkSourceRange(body, expectedSource, source); assertTrue("not a for statement", body.getNodeType() == ASTNode.FOR_STATEMENT); //$NON-NLS-1$ ForStatement forStatement2 = (ForStatement) body; body = forStatement2.getBody(); expectedSource = "if (true) { }"; checkSourceRange(body, expectedSource, source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=28682 */ public void test0456() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0456", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit compilationUnit = (CompilationUnit) result; ASTNode node = getASTNode(compilationUnit, 0, 0, 0); assertNotNull("No node", node); assertTrue("not a for statement", node.getNodeType() == ASTNode.FOR_STATEMENT); //$NON-NLS-1$ ForStatement forStatement = (ForStatement) node; // first for loop String expectedSource = "for (int x= 10; x < 20; x++)\n" + " main();"; checkSourceRange(forStatement, expectedSource, source); Statement body = forStatement.getBody(); expectedSource = "main();"; checkSourceRange(body, expectedSource, source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=28682 */ public void test0457() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0457", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit compilationUnit = (CompilationUnit) result; ASTNode node = getASTNode(compilationUnit, 0, 0, 0); assertNotNull("No node", node); assertTrue("not a for statement", node.getNodeType() == ASTNode.FOR_STATEMENT); //$NON-NLS-1$ ForStatement forStatement = (ForStatement) node; // first for loop String expectedSource = "for (int i= 10; i < 10; i++)/*[*/\n"+ " for (int z= 10; z < 10; z++)\n" + " foo();"; checkSourceRange(forStatement, expectedSource, source); Statement body = forStatement.getBody(); expectedSource = "for (int z= 10; z < 10; z++)\n" + " foo();"; checkSourceRange(body, expectedSource, source); assertTrue("not a for statement", body.getNodeType() == ASTNode.FOR_STATEMENT); //$NON-NLS-1$ ForStatement forStatement2 = (ForStatement) body; body = forStatement2.getBody(); expectedSource = "foo();"; checkSourceRange(body, expectedSource, source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=28682 */ public void test0458() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0458", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit compilationUnit = (CompilationUnit) result; ASTNode node = getASTNode(compilationUnit, 0, 0, 0); assertNotNull("No node", node); assertTrue("not a for statement", node.getNodeType() == ASTNode.FOR_STATEMENT); //$NON-NLS-1$ ForStatement forStatement = (ForStatement) node; // first for loop String expectedSource = "for (int i= 10; i < 10; i++)/*[*/\n"+ " for (int z= 10; z < 10; z++)\n" + " ;"; checkSourceRange(forStatement, expectedSource, source); Statement body = forStatement.getBody(); expectedSource = "for (int z= 10; z < 10; z++)\n" + " ;"; checkSourceRange(body, expectedSource, source); assertTrue("not a for statement", body.getNodeType() == ASTNode.FOR_STATEMENT); //$NON-NLS-1$ ForStatement forStatement2 = (ForStatement) body; body = forStatement2.getBody(); expectedSource = ";"; checkSourceRange(body, expectedSource, source); assertTrue("not an empty statement", body.getNodeType() == ASTNode.EMPTY_STATEMENT); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=28682 */ public void test0459() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0459", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit compilationUnit = (CompilationUnit) result; ASTNode node = getASTNode(compilationUnit, 0, 0, 0); assertNotNull("No node", node); assertTrue("not a for statement", node.getNodeType() == ASTNode.FOR_STATEMENT); //$NON-NLS-1$ ForStatement forStatement = (ForStatement) node; // first for loop String expectedSource = "for (int i= 10; i < 10; i++)/*[*/\n"+ " for (int z= 10; z < 10; z++)\n" + " { }"; checkSourceRange(forStatement, expectedSource, source); Statement body = forStatement.getBody(); expectedSource = "for (int z= 10; z < 10; z++)\n" + " { }"; checkSourceRange(body, expectedSource, source); assertTrue("not a for statement", body.getNodeType() == ASTNode.FOR_STATEMENT); //$NON-NLS-1$ ForStatement forStatement2 = (ForStatement) body; body = forStatement2.getBody(); expectedSource = "{ }"; checkSourceRange(body, expectedSource, source); assertTrue("not a block", body.getNodeType() == ASTNode.BLOCK); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=28869 */ public void test0460() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0460", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit compilationUnit = (CompilationUnit) result; assertTrue("Has error", compilationUnit.getProblems().length == 0); //$NON-NLS-1$ ASTNode node = getASTNode(compilationUnit, 0, 0, 0); assertNotNull("No node", node); assertTrue("Malformed", !isMalformed(node)); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=28824 */ public void test0461() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0461", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, false); char[] source = sourceUnit.getSource().toCharArray(); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit compilationUnit = (CompilationUnit) result; assertTrue("Has error", compilationUnit.getProblems().length == 0); //$NON-NLS-1$ ASTNode node = getASTNode(compilationUnit, 0, 0, 0); assertNotNull("No node", node); assertTrue("Malformed", !isMalformed(node)); assertTrue("not an expression statement", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertTrue("not an assignment", expression.getNodeType() == ASTNode.ASSIGNMENT); //$NON-NLS-1$ Assignment assignment = (Assignment) expression; checkSourceRange(assignment, "z= foo().y.toList()", source); Expression expression2 = assignment.getRightHandSide(); checkSourceRange(expression2, "foo().y.toList()", source); assertTrue("not a method invocation", expression2.getNodeType() == ASTNode.METHOD_INVOCATION); MethodInvocation methodInvocation = (MethodInvocation) expression2; Expression expression3 = methodInvocation.getExpression(); checkSourceRange(expression3, "foo().y", source); checkSourceRange(methodInvocation.getName(), "toList", source); assertTrue("not a field access", expression3.getNodeType() == ASTNode.FIELD_ACCESS); FieldAccess fieldAccess = (FieldAccess) expression3; checkSourceRange(fieldAccess.getName(), "y", source); Expression expression4 = fieldAccess.getExpression(); checkSourceRange(expression4, "foo()", source); assertTrue("not a method invocation", expression4.getNodeType() == ASTNode.METHOD_INVOCATION); MethodInvocation methodInvocation2 = (MethodInvocation) expression4; checkSourceRange(methodInvocation2.getName(), "foo", source); assertNull("no null", methodInvocation2.getExpression()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=32338 */ public void test0462() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "", "Test462.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit compilationUnit = (CompilationUnit) result; assertTrue("Has error", compilationUnit.getProblems().length == 0); //$NON-NLS-1$ ASTNode node = getASTNode(compilationUnit, 0); assertNotNull("No node", node); assertTrue("not a type declaration", node.getNodeType() == ASTNode.TYPE_DECLARATION); TypeDeclaration typeDeclaration = (TypeDeclaration) node; assertEquals("Wrong name", "Test462", typeDeclaration.getName().getIdentifier()); ITypeBinding typeBinding = typeDeclaration.resolveBinding(); assertNotNull("No binding", typeBinding); assertEquals("Wrong name", "Test462", typeBinding.getQualifiedName()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=33450 */ public void test0463() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0463", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, false); CompilationUnit compilationUnit = (CompilationUnit) result; char[] source = sourceUnit.getSource().toCharArray(); ASTNode node = getASTNode(compilationUnit, 0, 0, 0); assertNotNull("No node", node); assertTrue("not a return statement", node.getNodeType() == ASTNode.RETURN_STATEMENT); //$NON-NLS-1$ ReturnStatement returnStatement = (ReturnStatement) node; Expression expression = returnStatement.getExpression(); assertNotNull("No expression", expression); assertTrue("not a string literal", expression.getNodeType() == ASTNode.STRING_LITERAL); //$NON-NLS-1$ StringLiteral stringLiteral = (StringLiteral) expression; checkSourceRange(stringLiteral, "\"\\012\\015\\u0061\"", source); assertEquals("wrong value", "\012\015a", stringLiteral.getLiteralValue()); assertEquals("wrong value", "\"\\012\\015\\u0061\"", stringLiteral.getEscapedValue()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=33039 */ public void test0464() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0464", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); CompilationUnit compilationUnit = (CompilationUnit) result; ASTNode node = getASTNode(compilationUnit, 0, 0, 0); assertEquals("No error", 1, compilationUnit.getProblems().length); //$NON-NLS-1$ assertNotNull("No node", node); assertTrue("not a return statement", node.getNodeType() == ASTNode.RETURN_STATEMENT); //$NON-NLS-1$ ReturnStatement returnStatement = (ReturnStatement) node; Expression expression = returnStatement.getExpression(); assertNotNull("No expression", expression); assertTrue("not a null literal", expression.getNodeType() == ASTNode.NULL_LITERAL); //$NON-NLS-1$ NullLiteral nullLiteral = (NullLiteral) expression; ITypeBinding typeBinding = nullLiteral.resolveTypeBinding(); assertNotNull("No type binding", typeBinding); assertFalse("A primitive type", typeBinding.isPrimitive()); assertTrue("Null type", typeBinding.isNullType()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=33831 */ public void test0465() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0465", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); CompilationUnit compilationUnit = (CompilationUnit) result; ASTNode node = getASTNode(compilationUnit, 0, 1, 0); assertEquals("No error", 0, compilationUnit.getProblems().length); //$NON-NLS-1$ assertNotNull("No node", node); assertTrue("not a return statement", node.getNodeType() == ASTNode.RETURN_STATEMENT); //$NON-NLS-1$ ReturnStatement returnStatement = (ReturnStatement) node; Expression expression = returnStatement.getExpression(); assertNotNull("No expression", expression); assertTrue("not a field access", expression.getNodeType() == ASTNode.FIELD_ACCESS); //$NON-NLS-1$ FieldAccess fieldAccess = (FieldAccess) expression; Name name = fieldAccess.getName(); IBinding binding = name.resolveBinding(); assertNotNull("No binding", binding); assertEquals("Wrong type", IBinding.VARIABLE, binding.getKind()); IVariableBinding variableBinding = (IVariableBinding) binding; assertEquals("Wrong name", "i", variableBinding.getName()); assertEquals("Wrong type", "int", variableBinding.getType().getName()); IVariableBinding variableBinding2 = fieldAccess.resolveFieldBinding(); assertTrue("different binding", variableBinding == variableBinding2); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=33949 */ public void test0466() throws JavaModelException { Hashtable options = JavaCore.getOptions(); Hashtable newOptions = JavaCore.getOptions(); try { newOptions.put(JavaCore.COMPILER_SOURCE, JavaCore.VERSION_1_4); JavaCore.setOptions(newOptions); ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0466", "Assert.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); CompilationUnit compilationUnit = (CompilationUnit) result; char[] source = sourceUnit.getSource().toCharArray(); ASTNode node = getASTNode(compilationUnit, 0, 0, 0); checkSourceRange(node, "assert ref != null : message;", source); assertTrue("not an assert statement", node.getNodeType() == ASTNode.ASSERT_STATEMENT); //$NON-NLS-1$ AssertStatement statement = (AssertStatement) node; checkSourceRange(statement.getExpression(), "ref != null", source); checkSourceRange(statement.getMessage(), "message", source); } finally { JavaCore.setOptions(options); } } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=33949 */ public void test0467() throws JavaModelException { Hashtable options = JavaCore.getOptions(); Hashtable newOptions = JavaCore.getOptions(); try { newOptions.put(JavaCore.COMPILER_SOURCE, JavaCore.VERSION_1_4); JavaCore.setOptions(newOptions); ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0467", "Assert.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); CompilationUnit compilationUnit = (CompilationUnit) result; char[] source = sourceUnit.getSource().toCharArray(); ASTNode node = getASTNode(compilationUnit, 0, 0, 0); checkSourceRange(node, "assert ref != null : message\\u003B", source); assertTrue("not an assert statement", node.getNodeType() == ASTNode.ASSERT_STATEMENT); //$NON-NLS-1$ AssertStatement statement = (AssertStatement) node; checkSourceRange(statement.getExpression(), "ref != null", source); checkSourceRange(statement.getMessage(), "message", source); node = getASTNode(compilationUnit, 0, 0, 1); checkSourceRange(node, "assert ref != null\\u003B", source); assertTrue("not an assert statement", node.getNodeType() == ASTNode.ASSERT_STATEMENT); //$NON-NLS-1$ statement = (AssertStatement) node; checkSourceRange(statement.getExpression(), "ref != null", source); } finally { JavaCore.setOptions(options); } } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=36772 */ public void test0468() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0468", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); CompilationUnit compilationUnit = (CompilationUnit) result; ASTNode node = getASTNode(compilationUnit, 0, 1, 0); assertEquals("No error", 0, compilationUnit.getProblems().length); //$NON-NLS-1$ assertNotNull("No node", node); assertTrue("not a return statement", node.getNodeType() == ASTNode.RETURN_STATEMENT); //$NON-NLS-1$ ReturnStatement returnStatement = (ReturnStatement) node; Expression expression = returnStatement.getExpression(); assertNotNull("No expression", expression); assertTrue("not a field access", expression.getNodeType() == ASTNode.FIELD_ACCESS); //$NON-NLS-1$ FieldAccess fieldAccess = (FieldAccess) expression; Name name = fieldAccess.getName(); IBinding binding = name.resolveBinding(); assertNotNull("No binding", binding); assertEquals("Wrong type", IBinding.VARIABLE, binding.getKind()); IVariableBinding variableBinding = (IVariableBinding) binding; assertEquals("Wrong name", "i", variableBinding.getName()); assertEquals("Wrong type", "int", variableBinding.getType().getName()); IVariableBinding variableBinding2 = fieldAccess.resolveFieldBinding(); assertTrue("different binding", variableBinding == variableBinding2); node = getASTNode(compilationUnit, 0, 0); assertNotNull("No node", node); assertEquals("Wrong type", ASTNode.FIELD_DECLARATION, node.getNodeType()); FieldDeclaration fieldDeclaration = (FieldDeclaration) node; List fragments = fieldDeclaration.fragments(); assertEquals("wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); ASTNode foundNode = compilationUnit.findDeclaringNode(variableBinding); assertNotNull("No found node", foundNode); assertEquals("wrong node", fragment, foundNode); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=36895 */ public void test0469() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "codeManipulation", "bug.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); CompilationUnit compilationUnit = (CompilationUnit) result; ASTNode node = getASTNode(compilationUnit, 0, 2, 0); assertEquals("No error", 0, compilationUnit.getProblems().length); //$NON-NLS-1$ assertNotNull("No node", node); assertTrue("not a variable declaration statement", node.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT); //$NON-NLS-1$ ASTNode parent = node.getParent(); assertNotNull(parent); assertTrue("not a block", parent.getNodeType() == ASTNode.BLOCK); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=37381 */ public void test0470() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0470", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); CompilationUnit compilationUnit = (CompilationUnit) result; ASTNode node = getASTNode(compilationUnit, 0, 0, 0); assertEquals("No error", 0, compilationUnit.getProblems().length); //$NON-NLS-1$ assertNotNull("No node", node); assertTrue("not a for statement", node.getNodeType() == ASTNode.FOR_STATEMENT); //$NON-NLS-1$ ForStatement forStatement = (ForStatement) node; List initializers = forStatement.initializers(); assertEquals("wrong size", 1, initializers.size()); Expression initializer = (Expression) initializers.get(0); assertTrue("not a variable declaration expression", initializer.getNodeType() == ASTNode.VARIABLE_DECLARATION_EXPRESSION); //$NON-NLS-1$ VariableDeclarationExpression variableDeclarationExpression = (VariableDeclarationExpression) initializer; List fragments = variableDeclarationExpression.fragments(); assertEquals("wrong size", 2, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); checkSourceRange(fragment, "i= 0", source); fragment = (VariableDeclarationFragment) fragments.get(1); checkSourceRange(fragment, "j= goo(3)", source); checkSourceRange(variableDeclarationExpression, "int i= 0, j= goo(3)", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=38447 */ public void test0471() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0471", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); CompilationUnit compilationUnit = (CompilationUnit) result; assertEquals("No error", 1, compilationUnit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(compilationUnit, 0, 0); assertNotNull("No node", node); assertTrue("not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertTrue("Is a constructor", !methodDeclaration.isConstructor()); checkSourceRange(methodDeclaration, "private void foo(){", source, true/*expectMalformed*/); node = getASTNode(compilationUnit, 0, 1); assertNotNull("No node", node); assertTrue("not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ methodDeclaration = (MethodDeclaration) node; assertTrue("Is a constructor", !methodDeclaration.isConstructor()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=38447 */ public void test0472() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "junit.textui", "ResultPrinter.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); CompilationUnit compilationUnit = (CompilationUnit) result; assertEquals("No error", 2, compilationUnit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(compilationUnit, 0, 2); assertNotNull("No node", node); assertTrue("not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertTrue("Not a constructor", methodDeclaration.isConstructor()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=38732 */ public void test0473() throws JavaModelException { Hashtable options = JavaCore.getOptions(); Hashtable newOptions = JavaCore.getOptions(); try { newOptions.put(JavaCore.COMPILER_SOURCE, JavaCore.VERSION_1_4); newOptions.put(JavaCore.COMPILER_PB_ASSERT_IDENTIFIER, JavaCore.ERROR); JavaCore.setOptions(newOptions); ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0473", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); CompilationUnit compilationUnit = (CompilationUnit) result; assertEquals("No error", 2, compilationUnit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(compilationUnit, 0, 0, 0); assertNotNull("No node", node); assertTrue("not an assert statement", node.getNodeType() == ASTNode.ASSERT_STATEMENT); //$NON-NLS-1$ AssertStatement assertStatement = (AssertStatement) node; checkSourceRange(assertStatement, "assert(true);", source); Expression expression = assertStatement.getExpression(); checkSourceRange(expression, "(true)", source); } finally { JavaCore.setOptions(options); } } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=39259 */ public void test0474() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0474", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); CompilationUnit compilationUnit = (CompilationUnit) result; assertEquals("No error", 0, compilationUnit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(compilationUnit, 0, 1, 0); assertNotNull("No node", node); assertEquals("Not a while statement", node.getNodeType(), ASTNode.WHILE_STATEMENT); WhileStatement whileStatement = (WhileStatement) node; Statement statement = whileStatement.getBody(); assertEquals("Not a while statement", statement.getNodeType(), ASTNode.WHILE_STATEMENT); WhileStatement whileStatement2 = (WhileStatement) statement; String expectedSource = "while(b())\n" + " foo();"; checkSourceRange(whileStatement2, expectedSource, source); Statement statement2 = whileStatement2.getBody(); checkSourceRange(statement2, "foo();", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=39259 */ public void test0475() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0475", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); CompilationUnit compilationUnit = (CompilationUnit) result; assertEquals("No error", 0, compilationUnit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(compilationUnit, 0, 1, 0); assertNotNull("No node", node); assertEquals("Not an if statement", node.getNodeType(), ASTNode.IF_STATEMENT); IfStatement statement = (IfStatement) node; Statement statement2 = statement.getThenStatement(); assertEquals("Not an if statement", statement2.getNodeType(), ASTNode.IF_STATEMENT); IfStatement statement3 = (IfStatement) statement2; String expectedSource = "if(b())\n" + " foo();"; checkSourceRange(statement3, expectedSource, source); Statement statement4 = statement3.getThenStatement(); checkSourceRange(statement4, "foo();", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=39259 */ public void test0476() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0476", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); CompilationUnit compilationUnit = (CompilationUnit) result; assertEquals("No error", 0, compilationUnit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(compilationUnit, 0, 1, 0); assertNotNull("No node", node); assertEquals("Not a for statement", node.getNodeType(), ASTNode.FOR_STATEMENT); ForStatement statement = (ForStatement) node; Statement statement2 = statement.getBody(); assertEquals("Not a for statement", statement2.getNodeType(), ASTNode.FOR_STATEMENT); ForStatement statement3 = (ForStatement) statement2; String expectedSource = "for(;b();)\n" + " foo();"; checkSourceRange(statement3, expectedSource, source); Statement statement4 = statement3.getBody(); checkSourceRange(statement4, "foo();", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=39327 */ public void test0477() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0477", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); CompilationUnit compilationUnit = (CompilationUnit) result; assertEquals("No error", 1, compilationUnit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(compilationUnit, 0, 1, 0); assertNotNull("No node", node); checkSourceRange(node, "this(undef());", source); assertEquals("Not a constructor invocation", node.getNodeType(), ASTNode.CONSTRUCTOR_INVOCATION); ConstructorInvocation constructorInvocation = (ConstructorInvocation) node; List arguments = constructorInvocation.arguments(); assertEquals("Wrong size", 1, arguments.size()); IMethodBinding binding = constructorInvocation.resolveConstructorBinding(); assertNotNull("No binding", binding); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=40474 */ public void test0478() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0478", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ IType[] types = sourceUnit.getTypes(); assertNotNull(types); assertEquals("wrong size", 2, types.length); IType type = types[1]; IMethod[] methods = type.getMethods(); assertNotNull(methods); assertEquals("wrong size", 1, methods.length); IMethod method = methods[0]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(sourceUnit, sourceRange.getOffset() + sourceRange.getLength() / 2, true); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 1, 0); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertEquals("wrong name", "test", methodDeclaration.getName().getIdentifier()); IMethodBinding methodBinding = methodDeclaration.resolveBinding(); assertNotNull(methodBinding); List statements = ((MethodDeclaration) node).getBody().statements(); assertEquals("wrong size", 2, statements.size()); ASTNode node2 = (ASTNode) statements.get(1); assertNotNull(node2); assertTrue("Not an expression statement", node2.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node2; Expression expression = expressionStatement.getExpression(); assertTrue("Not a method invocation", expression.getNodeType() == ASTNode.METHOD_INVOCATION); //$NON-NLS-1$ MethodInvocation methodInvocation = (MethodInvocation) expression; Expression expression2 = methodInvocation.getExpression(); assertTrue("Not a simple name", expression2.getNodeType() == ASTNode.SIMPLE_NAME); //$NON-NLS-1$ SimpleName simpleName = (SimpleName) expression2; IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); //$NON-NLS-1$ assertTrue("wrong type", binding.getKind() == IBinding.VARIABLE); //$NON-NLS-1$ IVariableBinding variableBinding = (IVariableBinding) binding; assertEquals("Wrong name", "a", variableBinding.getName()); //$NON-NLS-1$ //$NON-NLS-2$ SimpleName simpleName2 = methodInvocation.getName(); assertEquals("Wrong name", "clone", simpleName2.getIdentifier()); //$NON-NLS-1$ //$NON-NLS-2$ IBinding binding2 = simpleName2.resolveBinding(); assertNotNull("no binding2", binding2); //$NON-NLS-1$ assertTrue("Wrong type", binding2.getKind() == IBinding.METHOD); //$NON-NLS-1$ IMethodBinding methodBinding2 = (IMethodBinding) binding2; assertEquals("Wrong name", "clone", methodBinding2.getName()); //$NON-NLS-1$ //$NON-NLS-2$ } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=40474 */ public void test0479() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0479", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ IType[] types = sourceUnit.getTypes(); assertNotNull(types); assertEquals("wrong size", 2, types.length); IType type = types[1]; IMethod[] methods = type.getMethods(); assertNotNull(methods); assertEquals("wrong size", 1, methods.length); IMethod method = methods[0]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(sourceUnit, sourceRange.getOffset() + sourceRange.getLength() / 2, false); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 1, 0); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertEquals("wrong name", "test", methodDeclaration.getName().getIdentifier()); List statements = ((MethodDeclaration) node).getBody().statements(); assertEquals("wrong size", 2, statements.size()); ASTNode node2 = (ASTNode) statements.get(1); assertNotNull(node2); assertTrue("Not an expression statement", node2.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node2; Expression expression = expressionStatement.getExpression(); assertTrue("Not a method invocation", expression.getNodeType() == ASTNode.METHOD_INVOCATION); //$NON-NLS-1$ MethodInvocation methodInvocation = (MethodInvocation) expression; Expression expression2 = methodInvocation.getExpression(); assertTrue("Not a simple name", expression2.getNodeType() == ASTNode.SIMPLE_NAME); //$NON-NLS-1$ SimpleName simpleName = (SimpleName) expression2; IBinding binding = simpleName.resolveBinding(); assertNull("No binding", binding); //$NON-NLS-1$ SimpleName simpleName2 = methodInvocation.getName(); assertEquals("Wrong name", "clone", simpleName2.getIdentifier()); //$NON-NLS-1$ //$NON-NLS-2$ } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=40474 */ public void test0480() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0480", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ IType[] types = sourceUnit.getTypes(); assertNotNull(types); assertEquals("wrong size", 1, types.length); IType type = types[0]; IMethod[] methods = type.getMethods(); assertNotNull(methods); assertEquals("wrong size", 1, methods.length); IMethod method = methods[0]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(sourceUnit, sourceRange.getOffset() + sourceRange.getLength() / 2, false); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertEquals("wrong name", "test", methodDeclaration.getName().getIdentifier()); List statements = ((MethodDeclaration) node).getBody().statements(); assertEquals("wrong size", 1, statements.size()); ASTNode node2 = (ASTNode) statements.get(0); assertNotNull(node2); assertTrue("Not an variable declaration statement", node2.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT); //$NON-NLS-1$ } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=40474 */ public void test0481() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0481", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ IType[] types = sourceUnit.getTypes(); assertNotNull(types); assertEquals("wrong size", 1, types.length); IType type = types[0]; IMethod[] methods = type.getMethods(); assertNotNull(methods); assertEquals("wrong size", 1, methods.length); IMethod method = methods[0]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(sourceUnit, sourceRange.getOffset() + sourceRange.getLength() / 2, true); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertEquals("wrong name", "test", methodDeclaration.getName().getIdentifier()); List statements = ((MethodDeclaration) node).getBody().statements(); assertEquals("wrong size", 1, statements.size()); ASTNode node2 = (ASTNode) statements.get(0); assertNotNull(node2); assertTrue("Not an variable declaration statement", node2.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT); //$NON-NLS-1$ VariableDeclarationStatement statement = (VariableDeclarationStatement) node2; List fragments = statement.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertTrue("Not a class instance creation", expression.getNodeType() == ASTNode.CLASS_INSTANCE_CREATION); //$NON-NLS-1$ ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expression; ITypeBinding typeBinding = classInstanceCreation.resolveTypeBinding(); assertNotNull(typeBinding); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=40474 */ public void test0482() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0482", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ IType[] types = sourceUnit.getTypes(); assertNotNull(types); assertEquals("wrong size", 1, types.length); IType type = types[0]; IType[] memberTypes = type.getTypes(); assertNotNull(memberTypes); assertEquals("wrong size", 1, memberTypes.length); IType memberType = memberTypes[0]; IMethod[] methods = memberType.getMethods(); assertEquals("wrong size", 1, methods.length); IMethod method = methods[0]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(sourceUnit, sourceRange.getOffset() + sourceRange.getLength() / 2, true); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0, 0); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertEquals("wrong name", "test", methodDeclaration.getName().getIdentifier()); List statements = ((MethodDeclaration) node).getBody().statements(); assertEquals("wrong size", 1, statements.size()); ASTNode node2 = (ASTNode) statements.get(0); assertNotNull(node2); assertTrue("Not an variable declaration statement", node2.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT); //$NON-NLS-1$ VariableDeclarationStatement statement = (VariableDeclarationStatement) node2; List fragments = statement.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertTrue("Not a class instance creation", expression.getNodeType() == ASTNode.CLASS_INSTANCE_CREATION); //$NON-NLS-1$ ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expression; ITypeBinding typeBinding = classInstanceCreation.resolveTypeBinding(); assertNotNull(typeBinding); assertTrue(typeBinding.isAnonymous()); assertEquals("Wrong name", "", typeBinding.getName()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=40474 */ public void test0483() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0483", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ IType[] types = sourceUnit.getTypes(); assertNotNull(types); assertEquals("wrong size", 1, types.length); IType type = types[0]; IMethod[] methods = type.getMethods(); assertEquals("wrong size", 1, methods.length); IMethod method = methods[0]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(sourceUnit, sourceRange.getOffset() + sourceRange.getLength() / 2, true); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertEquals("wrong name", "A", methodDeclaration.getName().getIdentifier()); assertTrue("Not a constructor", methodDeclaration.isConstructor()); IBinding binding = methodDeclaration.getName().resolveBinding(); assertNotNull(binding); assertEquals("Wrong type", IBinding.METHOD, binding.getKind()); List statements = ((MethodDeclaration) node).getBody().statements(); assertEquals("wrong size", 1, statements.size()); ASTNode node2 = (ASTNode) statements.get(0); assertNotNull(node2); assertTrue("Not an variable declaration statement", node2.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT); //$NON-NLS-1$ VariableDeclarationStatement statement = (VariableDeclarationStatement) node2; List fragments = statement.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertTrue("Not a class instance creation", expression.getNodeType() == ASTNode.CLASS_INSTANCE_CREATION); //$NON-NLS-1$ ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expression; ITypeBinding typeBinding = classInstanceCreation.resolveTypeBinding(); assertNotNull(typeBinding); assertTrue(typeBinding.isAnonymous()); assertEquals("Wrong name", "", typeBinding.getName()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=40474 */ public void test0484() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0482", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ IType[] types = sourceUnit.getTypes(); assertNotNull(types); assertEquals("wrong size", 1, types.length); IType type = types[0]; IType[] memberTypes = type.getTypes(); assertNotNull(memberTypes); assertEquals("wrong size", 1, memberTypes.length); IType memberType = memberTypes[0]; ISourceRange sourceRange = memberType.getSourceRange(); ASTNode result = runConversion(sourceUnit, sourceRange.getOffset() + sourceRange.getLength() / 2, true); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0); assertTrue("Not a type declaration", node.getNodeType() == ASTNode.TYPE_DECLARATION); //$NON-NLS-1$ TypeDeclaration typeDeclaration = (TypeDeclaration) node; assertEquals("wrong name", "B", typeDeclaration.getName().getIdentifier()); List bodyDeclarations = typeDeclaration.bodyDeclarations(); assertEquals("Wrong size", 1, bodyDeclarations.size()); BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0); assertTrue("Not a method declaration", bodyDeclaration.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) bodyDeclaration; Block block = methodDeclaration.getBody(); List statements = block.statements(); assertEquals("Wrong size", 1, statements.size()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=40474 */ public void test0485() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0482", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ IType[] types = sourceUnit.getTypes(); assertNotNull(types); assertEquals("wrong size", 1, types.length); IType type = types[0]; IType[] memberTypes = type.getTypes(); assertNotNull(memberTypes); assertEquals("wrong size", 1, memberTypes.length); IType memberType = memberTypes[0]; ISourceRange sourceRange = memberType.getSourceRange(); ASTNode result = runConversion(sourceUnit, sourceRange.getOffset() + sourceRange.getLength() / 2, false); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0); assertTrue("Not a type declaration", node.getNodeType() == ASTNode.TYPE_DECLARATION); //$NON-NLS-1$ TypeDeclaration typeDeclaration = (TypeDeclaration) node; assertEquals("wrong name", "B", typeDeclaration.getName().getIdentifier()); List bodyDeclarations = typeDeclaration.bodyDeclarations(); assertEquals("Wrong size", 1, bodyDeclarations.size()); BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0); assertTrue("Not a method declaration", bodyDeclaration.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) bodyDeclaration; Block block = methodDeclaration.getBody(); List statements = block.statements(); assertEquals("Wrong size", 1, statements.size()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=40474 */ public void test0486() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0486", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ IType[] types = sourceUnit.getTypes(); assertNotNull(types); assertEquals("wrong size", 1, types.length); IType type = types[0]; IMethod[] methods = type.getMethods(); assertEquals("wrong size", 2, methods.length); IMethod method = methods[1]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(sourceUnit, sourceRange.getOffset() + sourceRange.getLength() / 2, false); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 2); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; Block block = methodDeclaration.getBody(); List statements = block.statements(); assertEquals("Wrong size", 2, statements.size()); node = getASTNode((CompilationUnit) result, 0, 1); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ methodDeclaration = (MethodDeclaration) node; block = methodDeclaration.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=40474 */ public void test0487() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0487", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ IType[] types = sourceUnit.getTypes(); assertNotNull(types); assertEquals("wrong size", 1, types.length); IType type = types[0]; IMethod[] methods = type.getMethods(); assertEquals("wrong size", 3, methods.length); IMethod method = methods[1]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(sourceUnit, sourceRange.getOffset() + sourceRange.getLength() / 2, false); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 5); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; Block block = methodDeclaration.getBody(); List statements = block.statements(); assertEquals("Wrong size", 2, statements.size()); node = getASTNode((CompilationUnit) result, 0, 4); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ methodDeclaration = (MethodDeclaration) node; block = methodDeclaration.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); node = getASTNode((CompilationUnit) result, 0, 0); assertTrue("Not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); //$NON-NLS-1$ FieldDeclaration fieldDeclaration = (FieldDeclaration) node; List fragments = fieldDeclaration.fragments(); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertEquals("Wrong name", "field", fragment.getName().getIdentifier()); assertNotNull("No initializer", expression); node = getASTNode((CompilationUnit) result, 0, 1); assertTrue("Not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); //$NON-NLS-1$ fieldDeclaration = (FieldDeclaration) node; fragments = fieldDeclaration.fragments(); fragment = (VariableDeclarationFragment) fragments.get(0); expression = fragment.getInitializer(); assertEquals("Wrong name", "i", fragment.getName().getIdentifier()); assertNotNull("No initializer", expression); node = getASTNode((CompilationUnit) result, 0, 2); assertTrue("Not an initializer", node.getNodeType() == ASTNode.INITIALIZER); //$NON-NLS-1$ Initializer initializer = (Initializer) node; assertEquals("Not static", Modifier.NONE, initializer.getModifiers()); block = initializer.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); node = getASTNode((CompilationUnit) result, 0, 3); assertTrue("Not an initializer", node.getNodeType() == ASTNode.INITIALIZER); //$NON-NLS-1$ initializer = (Initializer) node; assertEquals("Not static", Modifier.STATIC, initializer.getModifiers()); block = initializer.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); node = getASTNode((CompilationUnit) result, 0, 6); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ methodDeclaration = (MethodDeclaration) node; block = methodDeclaration.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=40474 */ public void test0488() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0488", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ IType[] types = sourceUnit.getTypes(); assertNotNull(types); assertEquals("wrong size", 1, types.length); IType type = types[0]; IInitializer[] initializers = type.getInitializers(); assertEquals("wrong size", 2, initializers.length); IInitializer init = initializers[1]; ISourceRange sourceRange = init.getSourceRange(); ASTNode result = runConversion(sourceUnit, sourceRange.getOffset() + sourceRange.getLength() / 2, false); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 5); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; Block block = methodDeclaration.getBody(); List statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); node = getASTNode((CompilationUnit) result, 0, 4); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ methodDeclaration = (MethodDeclaration) node; block = methodDeclaration.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); node = getASTNode((CompilationUnit) result, 0, 0); assertTrue("Not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); //$NON-NLS-1$ FieldDeclaration fieldDeclaration = (FieldDeclaration) node; List fragments = fieldDeclaration.fragments(); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertEquals("Wrong name", "field", fragment.getName().getIdentifier()); assertNotNull("No initializer", expression); node = getASTNode((CompilationUnit) result, 0, 1); assertTrue("Not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); //$NON-NLS-1$ fieldDeclaration = (FieldDeclaration) node; fragments = fieldDeclaration.fragments(); fragment = (VariableDeclarationFragment) fragments.get(0); expression = fragment.getInitializer(); assertEquals("Wrong name", "i", fragment.getName().getIdentifier()); assertNotNull("No initializer", expression); node = getASTNode((CompilationUnit) result, 0, 2); assertTrue("Not an initializer", node.getNodeType() == ASTNode.INITIALIZER); //$NON-NLS-1$ Initializer initializer = (Initializer) node; assertEquals("Not static", Modifier.NONE, initializer.getModifiers()); block = initializer.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); node = getASTNode((CompilationUnit) result, 0, 3); assertTrue("Not an initializer", node.getNodeType() == ASTNode.INITIALIZER); //$NON-NLS-1$ initializer = (Initializer) node; assertEquals("Not static", Modifier.STATIC, initializer.getModifiers()); block = initializer.getBody(); statements = block.statements(); assertEquals("Wrong size", 1, statements.size()); node = getASTNode((CompilationUnit) result, 0, 6); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ methodDeclaration = (MethodDeclaration) node; block = methodDeclaration.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=40804 */ public void test0489() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0489", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 3, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0); assertNotNull("No node", node); assertTrue("not a type declaration", node.getNodeType() == ASTNode.TYPE_DECLARATION); //$NON-NLS-1$ TypeDeclaration typeDeclaration = (TypeDeclaration) node; assertNotNull("No type binding", typeDeclaration.resolveBinding()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=40804 */ public void test0490() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0490", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=42647 */ public void test0491() throws JavaModelException { Hashtable options = JavaCore.getOptions(); Hashtable newOptions = JavaCore.getOptions(); try { newOptions.put(JavaCore.COMPILER_SOURCE, JavaCore.VERSION_1_4); JavaCore.setOptions(newOptions); ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0491", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertTrue("not an assert statement", node.getNodeType() == ASTNode.ASSERT_STATEMENT); //$NON-NLS-1$ AssertStatement assertStatement = (AssertStatement) node; Expression expression = assertStatement.getExpression(); assertTrue("not a parenthesized expression", expression.getNodeType() == ASTNode.PARENTHESIZED_EXPRESSION); //$NON-NLS-1$ checkSourceRange(expression, "(loginName != null)", source); } finally { JavaCore.setOptions(options); } } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=42647 */ public void test0492() throws JavaModelException { Hashtable options = JavaCore.getOptions(); Hashtable newOptions = JavaCore.getOptions(); try { newOptions.put(JavaCore.COMPILER_SOURCE, JavaCore.VERSION_1_4); JavaCore.setOptions(newOptions); ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0492", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0, 0); assertTrue("not an assert statement", node.getNodeType() == ASTNode.ASSERT_STATEMENT); //$NON-NLS-1$ AssertStatement assertStatement = (AssertStatement) node; Expression expression = assertStatement.getExpression(); checkSourceRange(expression, "loginName != null", source); } finally { JavaCore.setOptions(options); } } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=42839 */ public void test0493() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0493", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0); assertTrue("not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); //$NON-NLS-1$ FieldDeclaration fieldDeclaration = (FieldDeclaration) node; Type type = fieldDeclaration.getType(); checkSourceRange(type, "Class[][]", source); assertTrue("not an array type", type.isArrayType()); //$NON-NLS-1$ ArrayType arrayType = (ArrayType) type; Type componentType = componentType(arrayType); assertTrue("not an array type", componentType.isArrayType()); //$NON-NLS-1$ checkSourceRange(componentType, "Class[]", source); arrayType = (ArrayType) componentType; componentType = componentType(arrayType); assertTrue("is an array type", !componentType.isArrayType()); //$NON-NLS-1$ checkSourceRange(componentType, "Class", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=42839 */ public void test0494() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0494", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0); assertTrue("not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); //$NON-NLS-1$ FieldDeclaration fieldDeclaration = (FieldDeclaration) node; Type type = fieldDeclaration.getType(); checkSourceRange(type, "Class[][][]", source); assertTrue("not an array type", type.isArrayType()); //$NON-NLS-1$ ArrayType arrayType = (ArrayType) type; Type componentType = componentType(arrayType); assertTrue("not an array type", componentType.isArrayType()); //$NON-NLS-1$ checkSourceRange(componentType, "Class[][]", source); arrayType = (ArrayType) componentType; componentType = componentType(arrayType); assertTrue("not an array type", componentType.isArrayType()); //$NON-NLS-1$ checkSourceRange(componentType, "Class[]", source); arrayType = (ArrayType) componentType; componentType = componentType(arrayType); assertTrue("is an array type", !componentType.isArrayType()); //$NON-NLS-1$ checkSourceRange(componentType, "Class", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=42839 */ public void test0495() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0495", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0); assertTrue("not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); //$NON-NLS-1$ FieldDeclaration fieldDeclaration = (FieldDeclaration) node; Type type = fieldDeclaration.getType(); checkSourceRange(type, "Class[][]", source); assertTrue("not an array type", type.isArrayType()); //$NON-NLS-1$ ArrayType arrayType = (ArrayType) type; Type componentType = componentType(arrayType); assertTrue("not an array type", componentType.isArrayType()); //$NON-NLS-1$ checkSourceRange(componentType, "Class[]", source); arrayType = (ArrayType) componentType; componentType = componentType(arrayType); assertTrue("is an array type", !componentType.isArrayType()); //$NON-NLS-1$ checkSourceRange(componentType, "Class", source); List fragments = fieldDeclaration.fragments(); assertEquals("wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); assertEquals("wrong extra dimension", 1, fragment.getExtraDimensions()); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=42839 */ public void test0496() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0496", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0); assertTrue("not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); //$NON-NLS-1$ FieldDeclaration fieldDeclaration = (FieldDeclaration) node; Type type = fieldDeclaration.getType(); checkSourceRange(type, "Class[][][][]", source); assertTrue("not an array type", type.isArrayType()); //$NON-NLS-1$ ArrayType arrayType = (ArrayType) type; Type componentType = componentType(arrayType); assertTrue("not an array type", componentType.isArrayType()); //$NON-NLS-1$ checkSourceRange(componentType, "Class[][][]", source); arrayType = (ArrayType) componentType; componentType = componentType(arrayType); assertTrue("not an array type", componentType.isArrayType()); //$NON-NLS-1$ checkSourceRange(componentType, "Class[][]", source); arrayType = (ArrayType) componentType; componentType = componentType(arrayType); assertTrue("not an array type", componentType.isArrayType()); //$NON-NLS-1$ checkSourceRange(componentType, "Class[]", source); arrayType = (ArrayType) componentType; componentType = componentType(arrayType); assertTrue("is an array type", !componentType.isArrayType()); //$NON-NLS-1$ checkSourceRange(componentType, "Class", source); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=42839 */ public void test0497() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0497", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$< ASTNode node = getASTNode(unit, 0, 0); assertTrue("not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); //$NON-NLS-1$ FieldDeclaration fieldDeclaration = (FieldDeclaration) node; Type type = fieldDeclaration.getType(); checkSourceRange(type, "Class[]", source); assertTrue("not an array type", type.isArrayType()); //$NON-NLS-1$ ArrayType arrayType = (ArrayType) type; Type componentType = componentType(arrayType); assertTrue("is an array type", !componentType.isArrayType()); //$NON-NLS-1$ checkSourceRange(componentType, "Class", source); } /** */ public void test0498() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0498", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=45199 */ public void test0499() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0499", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0, 1); assertNotNull(node); assertTrue("Not an expression statement", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ Expression expression = ((ExpressionStatement) node).getExpression(); assertTrue("Not an assignment", expression.getNodeType() == ASTNode.ASSIGNMENT); //$NON-NLS-1$ Assignment assignment = (Assignment) expression; Expression expression2 = assignment.getRightHandSide(); assertTrue("Not an infix expression", expression2.getNodeType() == ASTNode.INFIX_EXPRESSION); //$NON-NLS-1$ InfixExpression infixExpression = (InfixExpression) expression2; Expression expression3 = infixExpression.getLeftOperand(); assertTrue("Not a simple name", expression3.getNodeType() == ASTNode.SIMPLE_NAME); //$NON-NLS-1$ ITypeBinding binding = expression3.resolveTypeBinding(); assertNotNull("No binding", binding); Expression expression4 = assignment.getLeftHandSide(); assertTrue("Not a simple name", expression4.getNodeType() == ASTNode.SIMPLE_NAME); //$NON-NLS-1$ ITypeBinding binding2 = expression4.resolveTypeBinding(); assertNotNull("No binding", binding2); assertTrue("Should be the same", binding == binding2); } /** * Test for bug 45436 fix. * When this bug happened, the first assertion was false (2 problems found). * @see <a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=45436">bug 45436</a> * @throws JavaModelException */ public void test0500() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0500", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ IJavaProject project = sourceUnit.getJavaProject(); Map originalOptions = project.getOptions(false); try { project.setOption(JavaCore.COMPILER_PB_INVALID_JAVADOC, JavaCore.ERROR); project.setOption(JavaCore.COMPILER_PB_MISSING_JAVADOC_TAGS, JavaCore.ERROR); project.setOption(JavaCore.COMPILER_PB_MISSING_JAVADOC_COMMENTS, JavaCore.ERROR); CompilationUnit result = (CompilationUnit)runConversion(sourceUnit, true); IProblem[] problems= result.getProblems(); assertTrue(problems.length == 1); assertEquals("Invalid warning", "Javadoc: Missing tag for parameter a", problems[0].getMessage()); } finally { project.setOptions(originalOptions); } } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46012 */ public void test0501() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0501", "JavaEditor.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, false); assertNotNull(result); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46013 */ public void test0502a() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0502", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // 'i' in initializer VariableDeclarationStatement variableDeclarationStatement = (VariableDeclarationStatement)getASTNode(unit, 0, 0, 0); VariableDeclarationFragment fragment = (VariableDeclarationFragment) variableDeclarationStatement.fragments().get(0); IVariableBinding localBinding = fragment.resolveBinding(); assertEquals("Unexpected key", "Ltest0502/A;#0#i", localBinding.getKey()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46013 */ public void test0502b() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0502", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // 'j' in 'then' block in initializer IfStatement ifStatement = (IfStatement) getASTNode(unit, 0, 0, 1); Block block = (Block)ifStatement.getThenStatement(); VariableDeclarationStatement variableDeclarationStatement = (VariableDeclarationStatement) block.statements().get(0); VariableDeclarationFragment fragment = (VariableDeclarationFragment) variableDeclarationStatement.fragments().get(0); IVariableBinding localBinding = fragment.resolveBinding(); assertEquals("Unexpected key", "Ltest0502/A;#0#0#j", localBinding.getKey()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46013 */ public void test0502c() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0502", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // 'i' in 'foo()' VariableDeclarationStatement variableDeclarationStatement = (VariableDeclarationStatement)getASTNode(unit, 0, 1, 0); VariableDeclarationFragment fragment = (VariableDeclarationFragment) variableDeclarationStatement.fragments().get(0); IVariableBinding localBinding = fragment.resolveBinding(); assertEquals("Unexpected key", "Ltest0502/A;.foo()V#i", localBinding.getKey()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46013 */ public void test0502d() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0502", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // 'j' in 'then' block in 'foo()' IfStatement ifStatement = (IfStatement) getASTNode(unit, 0, 1, 1); Block block = (Block)ifStatement.getThenStatement(); VariableDeclarationStatement variableDeclarationStatement = (VariableDeclarationStatement) block.statements().get(0); VariableDeclarationFragment fragment = (VariableDeclarationFragment) variableDeclarationStatement.fragments().get(0); IVariableBinding localBinding = fragment.resolveBinding(); assertEquals("Unexpected key", "Ltest0502/A;.foo()V#0#j", localBinding.getKey()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46013 */ public void test0502e() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0502", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // 'j' in 'else' block in 'foo()' IfStatement ifStatement = (IfStatement) getASTNode(unit, 0, 1, 1); Block block = (Block)ifStatement.getElseStatement(); VariableDeclarationStatement variableDeclarationStatement = (VariableDeclarationStatement) block.statements().get(0); VariableDeclarationFragment fragment = (VariableDeclarationFragment) variableDeclarationStatement.fragments().get(0); IVariableBinding localBinding = fragment.resolveBinding(); assertEquals("Unexpected key", "Ltest0502/A;.foo()V#1#j", localBinding.getKey()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46013 */ public void test0502f() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0502", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // first 'new Object(){...}' in 'foo()' ExpressionStatement expressionStatement = (ExpressionStatement) getASTNode(unit, 0, 1, 2); ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expressionStatement.getExpression(); AnonymousClassDeclaration anonymousClassDeclaration = classInstanceCreation.getAnonymousClassDeclaration(); ITypeBinding typeBinding = anonymousClassDeclaration.resolveBinding(); assertEquals("Unexpected key", "Ltest0502/A$182;", typeBinding.getKey()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46013 * @deprecated using deprecated code */ public void test0502g() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0502", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // 'B' in 'foo()' TypeDeclarationStatement typeDeclarationStatement = (TypeDeclarationStatement) getASTNode(unit, 0, 1, 3); TypeDeclaration typeDeclaration = typeDeclarationStatement.getTypeDeclaration(); ITypeBinding typeBinding = typeDeclaration.resolveBinding(); assertEquals("Unexpected key", "Ltest0502/A$206$B;", typeBinding.getKey()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46013 */ public void test0502h() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0502", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // second 'new Object(){...}' in 'foo()' ExpressionStatement expressionStatement = (ExpressionStatement) getASTNode(unit, 0, 1, 4); ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expressionStatement.getExpression(); AnonymousClassDeclaration anonymousClassDeclaration = classInstanceCreation.getAnonymousClassDeclaration(); ITypeBinding typeBinding = anonymousClassDeclaration.resolveBinding(); assertEquals("Unexpected key", "Ltest0502/A$255;", typeBinding.getKey()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46013 * @deprecated using deprecated code */ public void test0502i() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0502", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // 'field' in 'B' in 'foo()' TypeDeclarationStatement typeDeclarationStatement = (TypeDeclarationStatement) getASTNode(unit, 0, 1, 3); TypeDeclaration typeDeclaration = typeDeclarationStatement.getTypeDeclaration(); FieldDeclaration fieldDeclaration = typeDeclaration.getFields()[0]; VariableDeclarationFragment fragment = (VariableDeclarationFragment) fieldDeclaration.fragments().get(0); IVariableBinding fieldBinding = fragment.resolveBinding(); assertEquals("Unexpected key", "Ltest0502/A$206$B;.field)I", fieldBinding.getKey()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46013 * @deprecated using deprecated code */ public void test0502j() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0502", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // 'bar()' in 'B' in 'foo()' TypeDeclarationStatement typeDeclarationStatement = (TypeDeclarationStatement) getASTNode(unit, 0, 1, 3); TypeDeclaration typeDeclaration = typeDeclarationStatement.getTypeDeclaration(); MethodDeclaration methodDeclaration = typeDeclaration.getMethods()[0]; IMethodBinding methodBinding = methodDeclaration.resolveBinding(); assertEquals("Unexpected key", "Ltest0502/A$206$B;.bar()V", methodBinding.getKey()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46057 */ public void test0503a() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0503", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // top level type A TypeDeclaration type = (TypeDeclaration)getASTNode(unit, 0); ITypeBinding typeBinding = type.resolveBinding(); assertEquals("Unexpected binary name", "test0503.A", typeBinding.getBinaryName()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46057 */ public void test0503b() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0503", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // member type B in A TypeDeclaration type = (TypeDeclaration)getASTNode(unit, 0, 0); ITypeBinding typeBinding = type.resolveBinding(); assertEquals("Unexpected binary name", "test0503.A$B", typeBinding.getBinaryName()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46057 * @deprecated using deprecated code */ public void test0503c() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0503", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // local type E in foo() in A TypeDeclarationStatement typeDeclarationStatement = (TypeDeclarationStatement) getASTNode(unit, 0, 1, 0); TypeDeclaration typeDeclaration = typeDeclarationStatement.getTypeDeclaration(); ITypeBinding typeBinding = typeDeclaration.resolveBinding(); assertEquals("Unexpected binary name", "test0503.A$1$E", typeBinding.getBinaryName()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46057 */ public void test0503d() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0503", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // anonymous type new Object() {...} in foo() in A ExpressionStatement expressionStatement = (ExpressionStatement) getASTNode(unit, 0, 1, 1); ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expressionStatement.getExpression(); AnonymousClassDeclaration anonymousClassDeclaration = classInstanceCreation.getAnonymousClassDeclaration(); ITypeBinding typeBinding = anonymousClassDeclaration.resolveBinding(); assertEquals("Unexpected binary name", "test0503.A$2", typeBinding.getBinaryName()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46057 */ public void test0503e() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0503", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // type F in anonymous type new Object() {...} in foo() in A ExpressionStatement expressionStatement = (ExpressionStatement) getASTNode(unit, 0, 1, 1); ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expressionStatement.getExpression(); AnonymousClassDeclaration anonymousClassDeclaration = classInstanceCreation.getAnonymousClassDeclaration(); TypeDeclaration type = (TypeDeclaration) anonymousClassDeclaration.bodyDeclarations().get(0); ITypeBinding typeBinding = type.resolveBinding(); assertEquals("Unexpected binary name", "test0503.A$2$F", typeBinding.getBinaryName()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46057 * @deprecated using deprecated code */ public void test0503f() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0503", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // local type C in bar() in B in A MethodDeclaration method = (MethodDeclaration) getASTNode(unit, 0, 0, 0); TypeDeclarationStatement typeDeclarationStatement = (TypeDeclarationStatement) method.getBody().statements().get(0); TypeDeclaration typeDeclaration = typeDeclarationStatement.getTypeDeclaration(); ITypeBinding typeBinding = typeDeclaration.resolveBinding(); assertEquals("Unexpected binary name", "test0503.A$1$C", typeBinding.getBinaryName()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46057 */ public void test0503g() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0503", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // anonymous type new Object() {...} in bar() in B in A MethodDeclaration method = (MethodDeclaration) getASTNode(unit, 0, 0, 0); ExpressionStatement expressionStatement = (ExpressionStatement) method.getBody().statements().get(1); ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expressionStatement.getExpression(); AnonymousClassDeclaration anonymousClassDeclaration = classInstanceCreation.getAnonymousClassDeclaration(); ITypeBinding typeBinding = anonymousClassDeclaration.resolveBinding(); assertEquals("Unexpected binary name", "test0503.A$1", typeBinding.getBinaryName()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46057 */ public void test0503h() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0503", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // type D in anonymous type new Object() {...} in bar() in B in A MethodDeclaration method = (MethodDeclaration) getASTNode(unit, 0, 0, 0); ExpressionStatement expressionStatement = (ExpressionStatement) method.getBody().statements().get(1); ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expressionStatement.getExpression(); AnonymousClassDeclaration anonymousClassDeclaration = classInstanceCreation.getAnonymousClassDeclaration(); TypeDeclaration type = (TypeDeclaration) anonymousClassDeclaration.bodyDeclarations().get(0); ITypeBinding typeBinding = type.resolveBinding(); assertEquals("Unexpected binary name", "test0503.A$1$D", typeBinding.getBinaryName()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=46057 * @deprecated using deprecated code */ public void test0503i() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0503", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ CompilationUnit unit = (CompilationUnit)runConversion(sourceUnit, true); // unreachable type G in foo() in A IfStatement ifStatement = (IfStatement) getASTNode(unit, 0, 1, 2); Block block = (Block)ifStatement.getThenStatement(); TypeDeclarationStatement typeDeclarationStatement = (TypeDeclarationStatement) block.statements().get(0); TypeDeclaration typeDeclaration = typeDeclarationStatement.getTypeDeclaration(); ITypeBinding typeBinding = typeDeclaration.resolveBinding(); assertEquals("Unexpected binary name", null, typeBinding.getBinaryName()); //$NON-NLS-1$ } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=47396 */ public void test0504() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0504", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 1, 0); assertNotNull(node); assertTrue("Not a constructor declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration declaration = (MethodDeclaration) node; assertTrue("A constructor", !declaration.isConstructor()); checkSourceRange(declaration, "public method(final int parameter);", source, true/*expectMalformed*/); } /** * http://bugs.eclipse.org/bugs/show_bug.cgi?id=47396 */ public void test0505() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0505", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertTrue("not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 1, 0); assertNotNull(node); assertTrue("Not a constructor declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration declaration = (MethodDeclaration) node; assertTrue("A constructor", !declaration.isConstructor()); checkSourceRange(declaration, "public method(final int parameter) { }", source, true/*expectMalformed*/); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=46699 */ public void test0506() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0506", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Wrong number of problems", 0, (unit).getProblems().length); //$NON-NLS-1$ assertNotNull(node); assertTrue("Not an expression statement", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node; assertTrue("Not a class instance creation", expressionStatement.getExpression().getNodeType() == ASTNode.CLASS_INSTANCE_CREATION); //$NON-NLS-1$ ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expressionStatement.getExpression(); IMethodBinding binding = classInstanceCreation.resolveConstructorBinding(); assertFalse("is synthetic", binding.isSynthetic()); assertTrue("is default constructor", binding.isDefaultConstructor()); assertNull("Has a declaring node", unit.findDeclaringNode(binding)); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=46699 */ public void test0507() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0507", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Wrong number of problems", 0, (unit).getProblems().length); //$NON-NLS-1$ assertNotNull(node); assertTrue("Not an expression statement", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node; assertTrue("Not a class instance creation", expressionStatement.getExpression().getNodeType() == ASTNode.CLASS_INSTANCE_CREATION); //$NON-NLS-1$ ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expressionStatement.getExpression(); IMethodBinding binding = classInstanceCreation.resolveConstructorBinding(); assertFalse("is synthetic", binding.isSynthetic()); assertTrue("is default constructor", binding.isDefaultConstructor()); assertNull("Has a declaring node", unit.findDeclaringNode(binding)); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=46699 */ public void test0508() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0508", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; ASTNode node = getASTNode(unit, 0, 1, 0); assertEquals("Wrong number of problems", 0, (unit).getProblems().length); //$NON-NLS-1$ assertNotNull(node); assertTrue("Not an expression statement", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node; assertTrue("Not a class instance creation", expressionStatement.getExpression().getNodeType() == ASTNode.CLASS_INSTANCE_CREATION); //$NON-NLS-1$ ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expressionStatement.getExpression(); IMethodBinding binding = classInstanceCreation.resolveConstructorBinding(); assertFalse("is synthetic", binding.isSynthetic()); assertTrue("not a default constructor", !binding.isDefaultConstructor()); assertNotNull("Has no declaring node", unit.findDeclaringNode(binding)); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=46699 */ public void test0509() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0509", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Wrong number of problems", 0, (unit).getProblems().length); //$NON-NLS-1$ assertNotNull(node); assertTrue("Not an expression statement", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node; assertTrue("Not a class instance creation", expressionStatement.getExpression().getNodeType() == ASTNode.CLASS_INSTANCE_CREATION); //$NON-NLS-1$ ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expressionStatement.getExpression(); IMethodBinding binding = classInstanceCreation.resolveConstructorBinding(); assertFalse("is synthetic", binding.isSynthetic()); assertTrue("not a default constructor", !binding.isDefaultConstructor()); assertNull("Has a declaring node", unit.findDeclaringNode(binding)); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=46699 */ public void test0510() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0510", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Wrong number of problems", 0, (unit).getProblems().length); //$NON-NLS-1$ assertNotNull(node); assertTrue("Not an expression statement", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node; assertTrue("Not a class instance creation", expressionStatement.getExpression().getNodeType() == ASTNode.CLASS_INSTANCE_CREATION); //$NON-NLS-1$ ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expressionStatement.getExpression(); IMethodBinding binding = classInstanceCreation.resolveConstructorBinding(); assertFalse("is synthetic", binding.isSynthetic()); assertFalse("is default constructor", binding.isDefaultConstructor()); assertNull("Has a declaring node", unit.findDeclaringNode(binding)); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=46699 */ public void test0511() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0511", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Wrong number of problems", 0, (unit).getProblems().length); //$NON-NLS-1$ assertNotNull(node); assertTrue("Not an expression statement", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node; assertTrue("Not a class instance creation", expressionStatement.getExpression().getNodeType() == ASTNode.CLASS_INSTANCE_CREATION); //$NON-NLS-1$ ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expressionStatement.getExpression(); IMethodBinding binding = classInstanceCreation.resolveConstructorBinding(); assertFalse("is synthetic", binding.isSynthetic()); assertFalse("is default constructor", binding.isDefaultConstructor()); assertNull("Has a declaring node", unit.findDeclaringNode(binding)); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=47326 */ public void test0512() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0512", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; ASTNode node = getASTNode(unit, 0, 0); assertEquals("Wrong number of problems", 2, unit.getProblems().length); //$NON-NLS-1$ assertNotNull(node); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration declaration = (MethodDeclaration) node; assertTrue("Not a constructor", declaration.isConstructor()); checkSourceRange(declaration, "public A();", source, true /*expectMalformed*/); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=49429 */ public void test0513() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0513", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$ } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=48502 */ public void test0514() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0514", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$ } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=49204 */ public void test0515() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0515", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0, 0); assertNotNull("No node", node); assertTrue("not a if statement", node.getNodeType() == ASTNode.IF_STATEMENT); IfStatement ifStatement = (IfStatement) node; assertTrue("not an empty statement", ifStatement.getThenStatement().getNodeType() == ASTNode.EMPTY_STATEMENT); checkSourceRange(ifStatement.getThenStatement(), ";", source); Statement statement = ifStatement.getElseStatement(); assertTrue("not a if statement", statement.getNodeType() == ASTNode.IF_STATEMENT); ifStatement = (IfStatement) statement; assertTrue("not an empty statement", ifStatement.getThenStatement().getNodeType() == ASTNode.EMPTY_STATEMENT); checkSourceRange(ifStatement.getThenStatement(), ";", source); Statement statement2 = ifStatement.getElseStatement(); assertTrue("not an empty statement", statement2.getNodeType() == ASTNode.EMPTY_STATEMENT); checkSourceRange(statement2, ";", source); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=48489 * @deprecated using deprecated code */ public void test0516() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0516", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, false); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0); assertNotNull("No node", node); assertTrue("not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); MethodDeclaration declaration = (MethodDeclaration) node; ASTParser parser = ASTParser.newParser(AST.JLS2); parser.setKind(ASTParser.K_CLASS_BODY_DECLARATIONS); parser.setSource(source); parser.setSourceRange(declaration.getStartPosition(), declaration.getLength()); parser.setCompilerOptions(JavaCore.getOptions()); ASTNode result2 = parser.createAST(null); assertNotNull("No node", result2); assertTrue("not a type declaration", result2.getNodeType() == ASTNode.TYPE_DECLARATION); TypeDeclaration typeDeclaration = (TypeDeclaration) result2; List bodyDeclarations = typeDeclaration.bodyDeclarations(); assertEquals("wrong size", 1, bodyDeclarations.size()); BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0); assertTrue(declaration.subtreeMatch(new ASTMatcher(), bodyDeclaration)); ASTNode root = bodyDeclaration.getRoot(); assertNotNull("No root", root); assertTrue("not a compilation unit", root.getNodeType() == ASTNode.COMPILATION_UNIT); CompilationUnit compilationUnit = (CompilationUnit) root; assertEquals("wrong problem size", 0, compilationUnit.getProblems().length); assertNotNull("No comments", compilationUnit.getCommentList()); assertEquals("Wrong size", 3, compilationUnit.getCommentList().size()); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=48489 * @deprecated using deprecated code */ public void test0517() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0517", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, false); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ assertNotNull("No comments", unit.getCommentList()); assertEquals("Wrong size", 3, unit.getCommentList().size()); ASTNode node = getASTNode(unit, 0, 0); assertNotNull("No node", node); assertTrue("not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); FieldDeclaration declaration = (FieldDeclaration) node; ASTParser parser = ASTParser.newParser(AST.JLS2); parser.setKind(ASTParser.K_CLASS_BODY_DECLARATIONS); parser.setSource(source); parser.setSourceRange(declaration.getStartPosition(), declaration.getLength()); parser.setCompilerOptions(JavaCore.getOptions()); ASTNode result2 = parser.createAST(null); assertNotNull("No node", result2); assertTrue("not a type declaration", result2.getNodeType() == ASTNode.TYPE_DECLARATION); TypeDeclaration typeDeclaration = (TypeDeclaration) result2; List bodyDeclarations = typeDeclaration.bodyDeclarations(); assertEquals("wrong size", 1, bodyDeclarations.size()); BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0); assertTrue(declaration.subtreeMatch(new ASTMatcher(), bodyDeclaration)); ASTNode root = bodyDeclaration.getRoot(); assertNotNull("No root", root); assertTrue("not a compilation unit", root.getNodeType() == ASTNode.COMPILATION_UNIT); CompilationUnit compilationUnit = (CompilationUnit) root; assertEquals("wrong problem size", 0, compilationUnit.getProblems().length); assertNotNull("No comments", compilationUnit.getCommentList()); assertEquals("Wrong size", 2, compilationUnit.getCommentList().size()); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=48489 * @deprecated using deprecated code */ public void test0518() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0518", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, false); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0); assertNotNull("No node", node); assertTrue("not an initializer", node.getNodeType() == ASTNode.INITIALIZER); Initializer declaration = (Initializer) node; ASTParser parser = ASTParser.newParser(AST.JLS2); parser.setKind(ASTParser.K_CLASS_BODY_DECLARATIONS); parser.setSource(source); parser.setSourceRange(declaration.getStartPosition(), declaration.getLength()); parser.setCompilerOptions(JavaCore.getOptions()); ASTNode result2 = parser.createAST(null); assertNotNull("No node", result2); assertTrue("not a type declaration", result2.getNodeType() == ASTNode.TYPE_DECLARATION); TypeDeclaration typeDeclaration = (TypeDeclaration) result2; List bodyDeclarations = typeDeclaration.bodyDeclarations(); assertEquals("wrong size", 1, bodyDeclarations.size()); BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0); assertTrue(declaration.subtreeMatch(new ASTMatcher(), bodyDeclaration)); ASTNode root = bodyDeclaration.getRoot(); assertNotNull("No root", root); assertTrue("not a compilation unit", root.getNodeType() == ASTNode.COMPILATION_UNIT); CompilationUnit compilationUnit = (CompilationUnit) root; assertEquals("wrong problem size", 0, compilationUnit.getProblems().length); assertNotNull("No comments", compilationUnit.getCommentList()); assertEquals("Wrong size", 3, compilationUnit.getCommentList().size()); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=48489 * @deprecated using deprecated code */ public void test0519() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0519", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, false); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ assertNotNull("No comments", unit.getCommentList()); assertEquals("Wrong size", 2, unit.getCommentList().size()); ASTNode node = getASTNode(unit, 0, 0, 0); assertNotNull("No node", node); ASTNode statement = node; ASTParser parser = ASTParser.newParser(AST.JLS2); parser.setKind(ASTParser.K_STATEMENTS); parser.setSource(source); parser.setSourceRange(statement.getStartPosition(), statement.getLength()); parser.setCompilerOptions(JavaCore.getOptions()); ASTNode result2 = parser.createAST(null); assertNotNull("No node", result2); assertTrue("not a block", result2.getNodeType() == ASTNode.BLOCK); Block block = (Block) result2; List statements = block.statements(); assertEquals("wrong size", 1, statements.size()); Statement statement2 = (Statement) statements.get(0); assertTrue(statement.subtreeMatch(new ASTMatcher(), statement2)); ASTNode root = statement2.getRoot(); assertNotNull("No root", root); assertTrue("not a compilation unit", root.getNodeType() == ASTNode.COMPILATION_UNIT); CompilationUnit compilationUnit = (CompilationUnit) root; assertEquals("wrong problem size", 0, compilationUnit.getProblems().length); assertNotNull("No comments", compilationUnit.getCommentList()); assertEquals("Wrong size", 1, compilationUnit.getCommentList().size()); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=48489 * @deprecated using deprecated code */ public void test0520() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0520", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, false); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ assertNotNull("No comments", unit.getCommentList()); assertEquals("Wrong size", 2, unit.getCommentList().size()); ASTNode node = getASTNode(unit, 0, 0, 0); assertNotNull("No node", node); assertTrue("not a block", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); ASTParser parser = ASTParser.newParser(AST.JLS2); parser.setKind(ASTParser.K_EXPRESSION); parser.setSource(source); parser.setSourceRange(expression.getStartPosition(), expression.getLength()); parser.setCompilerOptions(JavaCore.getOptions()); ASTNode result2 = parser.createAST(null); assertNotNull("No node", result2); assertTrue("not a method invocation", result2.getNodeType() == ASTNode.METHOD_INVOCATION); assertTrue(expression.subtreeMatch(new ASTMatcher(), result2)); ASTNode root = result2.getRoot(); assertNotNull("No root", root); assertTrue("not a compilation unit", root.getNodeType() == ASTNode.COMPILATION_UNIT); CompilationUnit compilationUnit = (CompilationUnit) root; assertEquals("wrong problem size", 0, compilationUnit.getProblems().length); assertNotNull("No comments", compilationUnit.getCommentList()); assertEquals("Wrong size", 1, compilationUnit.getCommentList().size()); } /** * Ensure an OperationCanceledException is correcly thrown when progress monitor is canceled * @deprecated using deprecated code */ public void test0521() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0521", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ // count the number of time isCanceled() is called when converting this source unit WorkingCopyOwner owner = new WorkingCopyOwner() {}; CancelCounter counter = new CancelCounter(); ASTParser parser = ASTParser.newParser(AST.JLS2); parser.setSource(sourceUnit); parser.setResolveBindings(true); parser.setWorkingCopyOwner(owner); parser.createAST(counter); // throw an OperatonCanceledException at each point isCanceled() is called for (int i = 0; i < counter.count; i++) { boolean gotException = false; try { parser = ASTParser.newParser(AST.JLS2); parser.setSource(sourceUnit); parser.setResolveBindings(true); parser.setWorkingCopyOwner(owner); parser.createAST(new Canceler(i)); } catch (OperationCanceledException e) { gotException = true; } assertTrue("Should get an OperationCanceledException (" + i + ")", gotException); } // last should not throw an OperationCanceledException parser = ASTParser.newParser(AST.JLS2); parser.setSource(sourceUnit); parser.setResolveBindings(true); parser.setWorkingCopyOwner(owner); parser.createAST(new Canceler(counter.count)); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=48292 */ public void test0522() throws JavaModelException { IClassFile classFile = getClassFile("Converter" , "bins", "test0522", "Test.class"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ assertNotNull("No bytes", classFile.getBytes()); assertNotNull(classFile); assertNotNull(classFile.getSource()); IType type = classFile.getType(); assertNotNull(type); IMethod[] methods = type.getMethods(); assertNotNull(methods); assertEquals("wrong size", 2, methods.length); IMethod method = methods[1]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(classFile, sourceRange.getOffset() + sourceRange.getLength() / 2, true); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 1, 0); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertEquals("wrong name", "test", methodDeclaration.getName().getIdentifier()); IMethodBinding methodBinding = methodDeclaration.resolveBinding(); assertNotNull(methodBinding); List statements = ((MethodDeclaration) node).getBody().statements(); assertEquals("wrong size", 2, statements.size()); ASTNode node2 = (ASTNode) statements.get(1); assertNotNull(node2); assertTrue("Not an expression statement", node2.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node2; Expression expression = expressionStatement.getExpression(); assertTrue("Not a method invocation", expression.getNodeType() == ASTNode.METHOD_INVOCATION); //$NON-NLS-1$ MethodInvocation methodInvocation = (MethodInvocation) expression; Expression expression2 = methodInvocation.getExpression(); assertTrue("Not a simple name", expression2.getNodeType() == ASTNode.SIMPLE_NAME); //$NON-NLS-1$ SimpleName simpleName = (SimpleName) expression2; IBinding binding = simpleName.resolveBinding(); assertNotNull("No binding", binding); //$NON-NLS-1$ assertTrue("wrong type", binding.getKind() == IBinding.VARIABLE); //$NON-NLS-1$ IVariableBinding variableBinding = (IVariableBinding) binding; assertEquals("Wrong name", "a", variableBinding.getName()); //$NON-NLS-1$ //$NON-NLS-2$ SimpleName simpleName2 = methodInvocation.getName(); assertEquals("Wrong name", "clone", simpleName2.getIdentifier()); //$NON-NLS-1$ //$NON-NLS-2$ IBinding binding2 = simpleName2.resolveBinding(); assertNotNull("no binding2", binding2); //$NON-NLS-1$ assertTrue("Wrong type", binding2.getKind() == IBinding.METHOD); //$NON-NLS-1$ IMethodBinding methodBinding2 = (IMethodBinding) binding2; assertEquals("Wrong name", "clone", methodBinding2.getName()); //$NON-NLS-1$ //$NON-NLS-2$ } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=48292 */ public void test0523() throws JavaModelException { IClassFile classFile = getClassFile("Converter" , "bins", "test0523", "Test.class"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ assertNotNull(classFile); assertNotNull(classFile.getSource()); IType type = classFile.getType(); assertNotNull(type); IMethod[] methods = type.getMethods(); assertNotNull(methods); assertEquals("wrong size", 2, methods.length); IMethod method = methods[1]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(classFile, sourceRange.getOffset() + sourceRange.getLength() / 2, false); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 1, 0); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertEquals("wrong name", "test", methodDeclaration.getName().getIdentifier()); List statements = ((MethodDeclaration) node).getBody().statements(); assertEquals("wrong size", 2, statements.size()); ASTNode node2 = (ASTNode) statements.get(1); assertNotNull(node2); assertTrue("Not an expression statement", node2.getNodeType() == ASTNode.EXPRESSION_STATEMENT); //$NON-NLS-1$ ExpressionStatement expressionStatement = (ExpressionStatement) node2; Expression expression = expressionStatement.getExpression(); assertTrue("Not a method invocation", expression.getNodeType() == ASTNode.METHOD_INVOCATION); //$NON-NLS-1$ MethodInvocation methodInvocation = (MethodInvocation) expression; Expression expression2 = methodInvocation.getExpression(); assertTrue("Not a simple name", expression2.getNodeType() == ASTNode.SIMPLE_NAME); //$NON-NLS-1$ SimpleName simpleName = (SimpleName) expression2; IBinding binding = simpleName.resolveBinding(); assertNull("No binding", binding); //$NON-NLS-1$ SimpleName simpleName2 = methodInvocation.getName(); assertEquals("Wrong name", "clone", simpleName2.getIdentifier()); //$NON-NLS-1$ //$NON-NLS-2$ } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=48292 */ public void test0524() throws JavaModelException { IClassFile classFile = getClassFile("Converter" , "bins", "test0524", "A.class"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ assertNotNull(classFile); assertNotNull(classFile.getSource()); IType type = classFile.getType(); assertNotNull(type); IMethod[] methods = type.getMethods(); assertNotNull(methods); assertEquals("wrong size", 2, methods.length); IMethod method = methods[1]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(classFile, sourceRange.getOffset() + sourceRange.getLength() / 2, false); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertEquals("wrong name", "test", methodDeclaration.getName().getIdentifier()); List statements = ((MethodDeclaration) node).getBody().statements(); assertEquals("wrong size", 1, statements.size()); ASTNode node2 = (ASTNode) statements.get(0); assertNotNull(node2); assertTrue("Not an variable declaration statement", node2.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT); //$NON-NLS-1$ } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=48292 */ public void test0525() throws JavaModelException { IClassFile classFile = getClassFile("Converter" , "bins", "test0525", "A.class"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ assertNotNull(classFile); assertNotNull(classFile.getSource()); IType type = classFile.getType(); assertNotNull(type); IMethod[] methods = type.getMethods(); assertNotNull(methods); assertEquals("wrong size", 2, methods.length); IMethod method = methods[1]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(classFile, sourceRange.getOffset() + sourceRange.getLength() / 2, true); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertEquals("wrong name", "test", methodDeclaration.getName().getIdentifier()); List statements = ((MethodDeclaration) node).getBody().statements(); assertEquals("wrong size", 1, statements.size()); ASTNode node2 = (ASTNode) statements.get(0); assertNotNull(node2); assertTrue("Not an variable declaration statement", node2.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT); //$NON-NLS-1$ VariableDeclarationStatement statement = (VariableDeclarationStatement) node2; List fragments = statement.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertTrue("Not a class instance creation", expression.getNodeType() == ASTNode.CLASS_INSTANCE_CREATION); //$NON-NLS-1$ ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expression; ITypeBinding typeBinding = classInstanceCreation.resolveTypeBinding(); assertNotNull(typeBinding); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=48292 */ public void test0526() throws JavaModelException { IClassFile classFile = getClassFile("Converter" , "bins", "test0526", "A.class"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ assertNotNull(classFile); assertNotNull(classFile.getSource()); IType type = classFile.getType(); assertNotNull(type); IType[] memberTypes = type.getTypes(); assertNotNull(memberTypes); assertEquals("wrong size", 1, memberTypes.length); IType memberType = memberTypes[0]; IMethod[] methods = memberType.getMethods(); assertEquals("wrong size", 2, methods.length); IMethod method = methods[1]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(classFile, sourceRange.getOffset() + sourceRange.getLength() / 2, true); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0, 0); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertEquals("wrong name", "test", methodDeclaration.getName().getIdentifier()); List statements = ((MethodDeclaration) node).getBody().statements(); assertEquals("wrong size", 1, statements.size()); ASTNode node2 = (ASTNode) statements.get(0); assertNotNull(node2); assertTrue("Not an variable declaration statement", node2.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT); //$NON-NLS-1$ VariableDeclarationStatement statement = (VariableDeclarationStatement) node2; List fragments = statement.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertTrue("Not a class instance creation", expression.getNodeType() == ASTNode.CLASS_INSTANCE_CREATION); //$NON-NLS-1$ ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expression; ITypeBinding typeBinding = classInstanceCreation.resolveTypeBinding(); assertNotNull(typeBinding); assertTrue(typeBinding.isAnonymous()); assertEquals("Wrong name", "", typeBinding.getName()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=48292 */ public void test0527() throws JavaModelException { IClassFile classFile = getClassFile("Converter" , "bins", "test0527", "A.class"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ assertNotNull(classFile); assertNotNull(classFile.getSource()); IType type = classFile.getType(); assertNotNull(type); IMethod[] methods = type.getMethods(); assertEquals("wrong size", 1, methods.length); IMethod method = methods[0]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(classFile, sourceRange.getOffset() + sourceRange.getLength() / 2, true); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertEquals("wrong name", "A", methodDeclaration.getName().getIdentifier()); assertTrue("Not a constructor", methodDeclaration.isConstructor()); IBinding binding = methodDeclaration.getName().resolveBinding(); assertNotNull(binding); assertEquals("Wrong type", IBinding.METHOD, binding.getKind()); List statements = ((MethodDeclaration) node).getBody().statements(); assertEquals("wrong size", 1, statements.size()); ASTNode node2 = (ASTNode) statements.get(0); assertNotNull(node2); assertTrue("Not an variable declaration statement", node2.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT); //$NON-NLS-1$ VariableDeclarationStatement statement = (VariableDeclarationStatement) node2; List fragments = statement.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertTrue("Not a class instance creation", expression.getNodeType() == ASTNode.CLASS_INSTANCE_CREATION); //$NON-NLS-1$ ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expression; ITypeBinding typeBinding = classInstanceCreation.resolveTypeBinding(); assertNotNull(typeBinding); assertTrue(typeBinding.isAnonymous()); assertEquals("Wrong name", "", typeBinding.getName()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=48292 */ public void test0528() throws JavaModelException { IClassFile classFile = getClassFile("Converter" , "bins", "test0528", "A.class"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ assertNotNull(classFile); assertNotNull(classFile.getSource()); IType type = classFile.getType(); IType[] memberTypes = type.getTypes(); assertNotNull(memberTypes); assertEquals("wrong size", 1, memberTypes.length); IType memberType = memberTypes[0]; ISourceRange sourceRange = memberType.getSourceRange(); ASTNode result = runConversion(classFile, sourceRange.getOffset() + sourceRange.getLength() / 2, true); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0); assertTrue("Not a type declaration", node.getNodeType() == ASTNode.TYPE_DECLARATION); //$NON-NLS-1$ TypeDeclaration typeDeclaration = (TypeDeclaration) node; assertEquals("wrong name", "B", typeDeclaration.getName().getIdentifier()); List bodyDeclarations = typeDeclaration.bodyDeclarations(); assertEquals("Wrong size", 1, bodyDeclarations.size()); BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0); assertTrue("Not a method declaration", bodyDeclaration.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) bodyDeclaration; Block block = methodDeclaration.getBody(); List statements = block.statements(); assertEquals("Wrong size", 1, statements.size()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=48292 */ public void test0529() throws JavaModelException { IClassFile classFile = getClassFile("Converter" , "bins", "test0529", "A.class"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ assertNotNull(classFile); assertNotNull(classFile.getSource()); IType type = classFile.getType(); IType[] memberTypes = type.getTypes(); assertNotNull(memberTypes); assertEquals("wrong size", 1, memberTypes.length); IType memberType = memberTypes[0]; ISourceRange sourceRange = memberType.getSourceRange(); ASTNode result = runConversion(classFile, sourceRange.getOffset() + sourceRange.getLength() / 2, false); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 0); assertTrue("Not a type declaration", node.getNodeType() == ASTNode.TYPE_DECLARATION); //$NON-NLS-1$ TypeDeclaration typeDeclaration = (TypeDeclaration) node; assertEquals("wrong name", "B", typeDeclaration.getName().getIdentifier()); List bodyDeclarations = typeDeclaration.bodyDeclarations(); assertEquals("Wrong size", 1, bodyDeclarations.size()); BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0); assertTrue("Not a method declaration", bodyDeclaration.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) bodyDeclaration; Block block = methodDeclaration.getBody(); List statements = block.statements(); assertEquals("Wrong size", 1, statements.size()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=48292 */ public void test0530() throws JavaModelException { IClassFile classFile = getClassFile("Converter" , "bins", "test0530", "A.class"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ assertNotNull(classFile); assertNotNull(classFile.getSource()); IType type = classFile.getType(); IMethod[] methods = type.getMethods(); assertEquals("wrong size", 3, methods.length); IMethod method = methods[2]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(classFile, sourceRange.getOffset() + sourceRange.getLength() / 2, false); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 2); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; Block block = methodDeclaration.getBody(); List statements = block.statements(); assertEquals("Wrong size", 2, statements.size()); node = getASTNode((CompilationUnit) result, 0, 1); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ methodDeclaration = (MethodDeclaration) node; block = methodDeclaration.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=48292 */ public void test0531() throws JavaModelException { IClassFile classFile = getClassFile("Converter" , "bins", "test0531", "A.class"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ assertNotNull(classFile); assertNotNull(classFile.getSource()); IType type = classFile.getType(); IMethod[] methods = type.getMethods(); assertEquals("wrong size", 5, methods.length); IMethod method = methods[3]; ISourceRange sourceRange = method.getSourceRange(); ASTNode result = runConversion(classFile, sourceRange.getOffset() + sourceRange.getLength() / 2, false); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 5); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; Block block = methodDeclaration.getBody(); List statements = block.statements(); assertEquals("Wrong size", 2, statements.size()); node = getASTNode((CompilationUnit) result, 0, 4); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ methodDeclaration = (MethodDeclaration) node; block = methodDeclaration.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); node = getASTNode((CompilationUnit) result, 0, 0); assertTrue("Not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); //$NON-NLS-1$ FieldDeclaration fieldDeclaration = (FieldDeclaration) node; List fragments = fieldDeclaration.fragments(); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertEquals("Wrong name", "field", fragment.getName().getIdentifier()); assertNotNull("No initializer", expression); node = getASTNode((CompilationUnit) result, 0, 1); assertTrue("Not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); //$NON-NLS-1$ fieldDeclaration = (FieldDeclaration) node; fragments = fieldDeclaration.fragments(); fragment = (VariableDeclarationFragment) fragments.get(0); expression = fragment.getInitializer(); assertEquals("Wrong name", "i", fragment.getName().getIdentifier()); assertNotNull("No initializer", expression); node = getASTNode((CompilationUnit) result, 0, 2); assertTrue("Not an initializer", node.getNodeType() == ASTNode.INITIALIZER); //$NON-NLS-1$ Initializer initializer = (Initializer) node; assertEquals("Not static", Modifier.NONE, initializer.getModifiers()); block = initializer.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); node = getASTNode((CompilationUnit) result, 0, 3); assertTrue("Not an initializer", node.getNodeType() == ASTNode.INITIALIZER); //$NON-NLS-1$ initializer = (Initializer) node; assertEquals("Not static", Modifier.STATIC, initializer.getModifiers()); block = initializer.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); node = getASTNode((CompilationUnit) result, 0, 6); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ methodDeclaration = (MethodDeclaration) node; block = methodDeclaration.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=48292 */ public void test0532() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0488", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ IType[] types = sourceUnit.getTypes(); assertNotNull(types); assertEquals("wrong size", 1, types.length); IType type = types[0]; IInitializer[] initializers = type.getInitializers(); assertEquals("wrong size", 2, initializers.length); IInitializer init = initializers[1]; ISourceRange sourceRange = init.getSourceRange(); int position = sourceRange.getOffset() + sourceRange.getLength() / 2; IClassFile classFile = getClassFile("Converter" , "bins", "test0532", "A.class"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ assertNotNull(classFile); assertNotNull(classFile.getSource()); type = classFile.getType(); initializers = type.getInitializers(); assertEquals("wrong size", 0, initializers.length); ASTNode result = runConversion(classFile, position, false); assertNotNull(result); assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT); //$NON-NLS-1$ ASTNode node = getASTNode((CompilationUnit) result, 0, 5); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; Block block = methodDeclaration.getBody(); List statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); node = getASTNode((CompilationUnit) result, 0, 4); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ methodDeclaration = (MethodDeclaration) node; block = methodDeclaration.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); node = getASTNode((CompilationUnit) result, 0, 0); assertTrue("Not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); //$NON-NLS-1$ FieldDeclaration fieldDeclaration = (FieldDeclaration) node; List fragments = fieldDeclaration.fragments(); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); Expression expression = fragment.getInitializer(); assertEquals("Wrong name", "field", fragment.getName().getIdentifier()); assertNotNull("No initializer", expression); node = getASTNode((CompilationUnit) result, 0, 1); assertTrue("Not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); //$NON-NLS-1$ fieldDeclaration = (FieldDeclaration) node; fragments = fieldDeclaration.fragments(); fragment = (VariableDeclarationFragment) fragments.get(0); expression = fragment.getInitializer(); assertEquals("Wrong name", "i", fragment.getName().getIdentifier()); assertNotNull("No initializer", expression); node = getASTNode((CompilationUnit) result, 0, 2); assertTrue("Not an initializer", node.getNodeType() == ASTNode.INITIALIZER); //$NON-NLS-1$ Initializer initializer = (Initializer) node; assertEquals("Not static", Modifier.NONE, initializer.getModifiers()); block = initializer.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); node = getASTNode((CompilationUnit) result, 0, 3); assertTrue("Not an initializer", node.getNodeType() == ASTNode.INITIALIZER); //$NON-NLS-1$ initializer = (Initializer) node; assertEquals("Not static", Modifier.STATIC, initializer.getModifiers()); block = initializer.getBody(); statements = block.statements(); assertEquals("Wrong size", 1, statements.size()); node = getASTNode((CompilationUnit) result, 0, 6); assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); //$NON-NLS-1$ methodDeclaration = (MethodDeclaration) node; block = methodDeclaration.getBody(); statements = block.statements(); assertEquals("Wrong size", 0, statements.size()); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=48489 * @deprecated using deprecated code */ public void test0533() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0533", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, false); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0); assertNotNull("No node", node); assertTrue("not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION); MethodDeclaration declaration = (MethodDeclaration) node; ASTParser parser = ASTParser.newParser(AST.JLS2); parser.setKind(ASTParser.K_CLASS_BODY_DECLARATIONS); parser.setSource(source); parser.setSourceRange(declaration.getStartPosition(), declaration.getLength()); parser.setCompilerOptions(JavaCore.getOptions()); ASTNode result2 = parser.createAST(null); assertNotNull("No node", result2); assertTrue("not a compilation unit", result2.getNodeType() == ASTNode.COMPILATION_UNIT); CompilationUnit compilationUnit = (CompilationUnit) result2; assertEquals("wrong problem size", 1, compilationUnit.getProblems().length); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=48489 * @deprecated using deprecated code */ public void test0534() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0534", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, false); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0); assertNotNull("No node", node); assertTrue("not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); FieldDeclaration declaration = (FieldDeclaration) node; ASTParser parser = ASTParser.newParser(AST.JLS2); parser.setKind(ASTParser.K_CLASS_BODY_DECLARATIONS); parser.setSource(source); parser.setSourceRange(declaration.getStartPosition(), declaration.getLength()); parser.setCompilerOptions(JavaCore.getOptions()); ASTNode result2 = parser.createAST(null); assertNotNull("No node", result2); assertTrue("not a compilation unit", result2.getNodeType() == ASTNode.COMPILATION_UNIT); CompilationUnit compilationUnit = (CompilationUnit) result2; assertEquals("wrong problem size", 1, compilationUnit.getProblems().length); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=48489 * @deprecated using deprecated code */ public void test0535() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0535", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, false); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0); assertNotNull("No node", node); assertTrue("not an initializer", node.getNodeType() == ASTNode.INITIALIZER); Initializer declaration = (Initializer) node; ASTParser parser = ASTParser.newParser(AST.JLS2); parser.setKind(ASTParser.K_CLASS_BODY_DECLARATIONS); parser.setSource(source); parser.setSourceRange(declaration.getStartPosition(), declaration.getLength()); parser.setCompilerOptions(JavaCore.getOptions()); ASTNode result2 = parser.createAST(null); assertNotNull("No node", result2); assertTrue("not a compilation unit", result2.getNodeType() == ASTNode.COMPILATION_UNIT); CompilationUnit compilationUnit = (CompilationUnit) result2; assertEquals("wrong problem size", 1, compilationUnit.getProblems().length); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=47396 */ public void test0536() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0536", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, false); assertNotNull("No compilation unit", result); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=51089 */ public void test0537a() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0537", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, false); assertNotNull("No compilation unit", result); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=51089 */ public void test0537b() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0537", "B.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, false); assertNotNull("No compilation unit", result); } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=51089 */ public void test0537c() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0537", "C.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, false); assertNotNull("No compilation unit", result); } /** * Ensures that an AST can be created during reconcile. * @deprecated using deprecated code */ public void test0538a() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0538", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ try { sourceUnit.becomeWorkingCopy(null, null); sourceUnit.getBuffer().setContents( "package test0538;\n" + "public class A {\n" + " int i;\n" + "}" ); CompilationUnit unit = sourceUnit.reconcile(AST.JLS2, false, null, null); assertNotNull("No level 2 compilation unit", unit); assertEquals("Compilation unit has wrong AST level (2)", AST.JLS2, unit.getAST().apiLevel()); // TODO improve test for AST.JLS3 } finally { sourceUnit.discardWorkingCopy(); } } /* * Ensures that no AST is created during reconcile if not requested. */ public void test0538b() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0538", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ try { sourceUnit.becomeWorkingCopy(null); sourceUnit.getBuffer().setContents( "package test0538;\n" + "public class A {\n" + " int i;\n" + "}" ); CompilationUnit unit = sourceUnit.reconcile(0, false, null, null); assertNull("Unexpected compilation unit", unit); } finally { sourceUnit.discardWorkingCopy(); } } /** * Ensures that no AST is created during reconcile if consistent. * @deprecated using deprecated code */ public void test0538c() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0538", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ try { sourceUnit.becomeWorkingCopy(null, null); CompilationUnit unit = sourceUnit.reconcile(AST.JLS2, false, null, null); assertNull("Unexpected compilation unit", unit); // TODO improve test for AST.JLS3 } finally { sourceUnit.discardWorkingCopy(); } } /** * Ensures that bindings are created during reconcile if the problem requestor is active. * @deprecated using deprecated code */ public void test0538d() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0538", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ try { ReconcilerTests.ProblemRequestor pbRequestor = new ReconcilerTests.ProblemRequestor(); sourceUnit.becomeWorkingCopy(pbRequestor, null); sourceUnit.getBuffer().setContents( "package test0538;\n" + "public class A {\n" + " Object field;\n" + "}" ); // TODO improve test for AST.JLS3 CompilationUnit unit = sourceUnit.reconcile(AST.JLS2, false, null, null); ASTNode node = getASTNode(unit, 0, 0); assertNotNull("No node", node); assertTrue("Not original", isOriginal(node)); assertTrue("not a field declaration", node.getNodeType() == ASTNode.FIELD_DECLARATION); FieldDeclaration declaration = (FieldDeclaration) node; Type type = declaration.getType(); ITypeBinding typeBinding = type.resolveBinding(); assertNotNull("No type binding", typeBinding); assertEquals("Wrong name", "Object", typeBinding.getName()); } finally { sourceUnit.discardWorkingCopy(); } } /** * Ensures that bindings are created during reconcile if force problem detection is turned on. * @deprecated using deprecated code */ public void test0538e() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0538", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ try { ReconcilerTests.ProblemRequestor pbRequestor = new ReconcilerTests.ProblemRequestor(); sourceUnit.becomeWorkingCopy(pbRequestor, null); // TODO improve test for AST.JLS3 CompilationUnit unit = sourceUnit.reconcile(AST.JLS2, true/*force pb detection*/, null, null); ASTNode node = getASTNode(unit, 0); assertNotNull("No node", node); assertTrue("not a type declaration", node.getNodeType() == ASTNode.TYPE_DECLARATION); TypeDeclaration declaration = (TypeDeclaration) node; ITypeBinding typeBinding = declaration.resolveBinding(); assertNotNull("No type binding", typeBinding); assertEquals("Wrong name", "A", typeBinding.getName()); } finally { sourceUnit.discardWorkingCopy(); } } /** * Ensures that bindings are created during reconcile if force problem detection is turned on. * Case of a unit containing an anonymous type. * (regression test for bug 55102 NPE when using ICU.reconcile(GET_AST_TRUE, ...)) * @deprecated using deprecated code */ public void test0538f() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0538", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ try { ReconcilerTests.ProblemRequestor pbRequestor = new ReconcilerTests.ProblemRequestor(); sourceUnit.becomeWorkingCopy(pbRequestor, null); sourceUnit.getBuffer().setContents( "package test0538;\n" + "public class A {\n" + " void foo() {\n" + " new Object() {\n" + " void bar() {\n" + " }\n" + " };\n" + " }\n" + "}" ); // TODO improve test for AST.JLS3 CompilationUnit unit = sourceUnit.reconcile(AST.JLS2, true/*force pb detection*/, null, null); ASTNode node = getASTNode(unit, 0); assertNotNull("No node", node); } finally { sourceUnit.discardWorkingCopy(); } } /** * Ensures that bindings are created during reconcile if force problem detection is turned on. * Case of a unit containing an anonymous type. * (regression test for bug 55102 NPE when using ICU.reconcile(GET_AST_TRUE, ...)) * @deprecated using deprecated code */ public void test0538g() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0538", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ try { ReconcilerTests.ProblemRequestor pbRequestor = new ReconcilerTests.ProblemRequestor(); sourceUnit.becomeWorkingCopy(pbRequestor, null); sourceUnit.getBuffer().setContents( "package test0538;\n" + "public class A {\n" + " void foo() {\n" + " new Object() {\n" + " void bar() {\n" + " }\n" + " };\n" + " }\n" + "}" ); sourceUnit.reconcile(ICompilationUnit.NO_AST, false/* don't force pb detection*/, null, null); // TODO improve test for AST.JLS3 CompilationUnit unit = sourceUnit.reconcile(AST.JLS2, true/*force pb detection*/, null, null); ASTNode node = getASTNode(unit, 0); assertNotNull("No node", node); } finally { sourceUnit.discardWorkingCopy(); } } /** * Ensures that asking for well known type doesn't throw a NPE if the problem requestor is not active. * (regression test for bug 64750 NPE in Java AST Creation - editing some random file) * @deprecated using deprecated code */ public void test0538h() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0538", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ try { ReconcilerTests.ProblemRequestor pbRequestor = new ReconcilerTests.ProblemRequestor() { public boolean isActive() { return false; } }; sourceUnit.becomeWorkingCopy(pbRequestor, null); sourceUnit.getBuffer().setContents( "package test0538;\n" + "public class A {\n" + " Object field;\n" + "}" ); // TODO improve test for AST.JLS3 CompilationUnit unit = sourceUnit.reconcile(AST.JLS2, false, null, null); assertEquals("Unexpected well known type", null, unit.getAST().resolveWellKnownType("void")); } finally { sourceUnit.discardWorkingCopy(); } } /** * http://dev.eclipse.org/bugs/show_bug.cgi?id=53477 */ public void test0539() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0539", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, false); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 1, 0); assertNotNull("No node", node); assertTrue("not an expression statement", node.getNodeType() == ASTNode.EXPRESSION_STATEMENT); ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertTrue("not a class instance creation", expression.getNodeType() == ASTNode.CLASS_INSTANCE_CREATION); ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expression; checkSourceRange(classInstanceCreation, "new A(){}.new Inner(){/*x*/}", source); AnonymousClassDeclaration anonymousClassDeclaration = classInstanceCreation.getAnonymousClassDeclaration(); Expression expression2 = classInstanceCreation.getExpression(); assertTrue("not a class instance creation", expression2.getNodeType() == ASTNode.CLASS_INSTANCE_CREATION); ClassInstanceCreation classInstanceCreation2 = (ClassInstanceCreation) expression2; AnonymousClassDeclaration anonymousClassDeclaration2 = classInstanceCreation2.getAnonymousClassDeclaration(); assertNotNull("No anonymous class declaration", anonymousClassDeclaration2); checkSourceRange(anonymousClassDeclaration2, "{}", source); assertNotNull("No anonymous class declaration", anonymousClassDeclaration); checkSourceRange(anonymousClassDeclaration, "{/*x*/}", source); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=54431 */ public void test0540() { char[] source = ("package test0540;\n" + //$NON-NLS-1$ "\n" + //$NON-NLS-1$ "class Test {\n" + //$NON-NLS-1$ " public void foo(int arg) {\n" +//$NON-NLS-1$ " assert true;\n" +//$NON-NLS-1$ " }\n" + //$NON-NLS-1$ "}").toCharArray(); //$NON-NLS-1$ IJavaProject project = getJavaProject("Converter"); //$NON-NLS-1$ Map options = project.getOptions(true); options.put(JavaCore.COMPILER_SOURCE, JavaCore.VERSION_1_4); options.put(JavaCore.COMPILER_CODEGEN_TARGET_PLATFORM, JavaCore.VERSION_1_4); options.put(JavaCore.COMPILER_COMPLIANCE, JavaCore.VERSION_1_4); ASTNode result = runConversion(source, "Test.java", project, options, true); //$NON-NLS-1$ assertNotNull("No compilation unit", result); //$NON-NLS-1$ assertTrue("result is not a compilation unit", result instanceof CompilationUnit); //$NON-NLS-1$ CompilationUnit compilationUnit = (CompilationUnit) result; assertEquals("Problems found", 0, compilationUnit.getProblems().length); ASTNode node = getASTNode(compilationUnit, 0); assertTrue("not a TypeDeclaration", node instanceof TypeDeclaration); //$NON-NLS-1$ TypeDeclaration typeDeclaration = (TypeDeclaration) node; ITypeBinding typeBinding = typeDeclaration.resolveBinding(); assertNotNull("No type binding", typeBinding); //$NON-NLS-1$ assertEquals("Wrong name", "Test", typeBinding.getName()); //$NON-NLS-1$ //$NON-NLS-2$ assertEquals("Wrong package", "test0540", typeBinding.getPackage().getName()); //$NON-NLS-1$ //$NON-NLS-2$ assertTrue("Not an interface", typeBinding.isClass()); //$NON-NLS-1$ } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=56697 */ public void test0541() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0541", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0); assertEquals("not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType()); class Change14FieldAccessASTVisitor extends ASTVisitor { int counter; Change14FieldAccessASTVisitor() { this.counter = 0; } public void endVisit(QualifiedName qualifiedName) { IBinding i_binding = qualifiedName.getQualifier().resolveBinding(); ITypeBinding type_binding = qualifiedName.getQualifier().resolveTypeBinding(); if (i_binding == null || type_binding == null) { this.counter++; } } } Change14FieldAccessASTVisitor visitor = new Change14FieldAccessASTVisitor(); unit.accept(visitor); assertEquals("Missing binding", 0, visitor.counter); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=55004 */ public void test0542() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0542", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0); assertTrue("not a field declaration", node instanceof FieldDeclaration); //$NON-NLS-1$ FieldDeclaration fieldDeclaration = (FieldDeclaration) node; List fragments = fieldDeclaration.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); IVariableBinding variableBinding = fragment.resolveBinding(); assertNotNull("No binding", variableBinding); assertEquals("Wrong name", "STRING_FIELD", variableBinding.getName()); Object constantValue = variableBinding.getConstantValue(); assertNotNull("No constant", constantValue); assertEquals("Wrong value", "Hello world!", constantValue); Expression initializer = fragment.getInitializer(); assertNotNull("No initializer", initializer); checkSourceRange(initializer, "\"Hello world!\"", source); node = getASTNode(unit, 0, 1); assertTrue("not a field declaration", node instanceof FieldDeclaration); //$NON-NLS-1$ fieldDeclaration = (FieldDeclaration) node; fragments = fieldDeclaration.fragments(); assertEquals("Wrong size", 1, fragments.size()); fragment = (VariableDeclarationFragment) fragments.get(0); variableBinding = fragment.resolveBinding(); assertNotNull("No binding", variableBinding); assertEquals("Wrong name", "BOOLEAN_FIELD", variableBinding.getName()); constantValue = variableBinding.getConstantValue(); assertNotNull("No constant", constantValue); assertEquals("Wrong value", Boolean.TRUE, constantValue); initializer = fragment.getInitializer(); assertNotNull("No initializer", initializer); checkSourceRange(initializer, "true", source); node = getASTNode(unit, 0, 2); assertTrue("not a field declaration", node instanceof FieldDeclaration); //$NON-NLS-1$ fieldDeclaration = (FieldDeclaration) node; fragments = fieldDeclaration.fragments(); assertEquals("Wrong size", 1, fragments.size()); fragment = (VariableDeclarationFragment) fragments.get(0); variableBinding = fragment.resolveBinding(); assertNotNull("No binding", variableBinding); assertEquals("Wrong name", "BYTE_FIELD", variableBinding.getName()); constantValue = variableBinding.getConstantValue(); assertNotNull("No constant", constantValue); assertEquals("Wrong value", new Byte((byte)1), constantValue); initializer = fragment.getInitializer(); assertNotNull("No initializer", initializer); checkSourceRange(initializer, "1", source); node = getASTNode(unit, 0, 3); assertTrue("not a field declaration", node instanceof FieldDeclaration); //$NON-NLS-1$ fieldDeclaration = (FieldDeclaration) node; fragments = fieldDeclaration.fragments(); assertEquals("Wrong size", 1, fragments.size()); fragment = (VariableDeclarationFragment) fragments.get(0); variableBinding = fragment.resolveBinding(); assertNotNull("No binding", variableBinding); assertEquals("Wrong name", "CHAR_FIELD", variableBinding.getName()); constantValue = variableBinding.getConstantValue(); assertNotNull("No constant", constantValue); assertEquals("Wrong value", new Character('{'), constantValue); initializer = fragment.getInitializer(); assertNotNull("No initializer", initializer); checkSourceRange(initializer, "\'{\'", source); node = getASTNode(unit, 0, 4); assertTrue("not a field declaration", node instanceof FieldDeclaration); //$NON-NLS-1$ fieldDeclaration = (FieldDeclaration) node; fragments = fieldDeclaration.fragments(); assertEquals("Wrong size", 1, fragments.size()); fragment = (VariableDeclarationFragment) fragments.get(0); variableBinding = fragment.resolveBinding(); assertNotNull("No binding", variableBinding); assertEquals("Wrong name", "DOUBLE_FIELD", variableBinding.getName()); constantValue = variableBinding.getConstantValue(); assertNotNull("No constant", constantValue); assertEquals("Wrong value", new Double("3.1415"), constantValue); initializer = fragment.getInitializer(); assertNotNull("No initializer", initializer); checkSourceRange(initializer, "3.1415", source); node = getASTNode(unit, 0, 5); assertTrue("not a field declaration", node instanceof FieldDeclaration); //$NON-NLS-1$ fieldDeclaration = (FieldDeclaration) node; fragments = fieldDeclaration.fragments(); assertEquals("Wrong size", 1, fragments.size()); fragment = (VariableDeclarationFragment) fragments.get(0); variableBinding = fragment.resolveBinding(); assertNotNull("No binding", variableBinding); assertEquals("Wrong name", "FLOAT_FIELD", variableBinding.getName()); constantValue = variableBinding.getConstantValue(); assertNotNull("No constant", constantValue); assertEquals("Wrong value", new Float("3.14159f"), constantValue); initializer = fragment.getInitializer(); assertNotNull("No initializer", initializer); checkSourceRange(initializer, "3.14159f", source); node = getASTNode(unit, 0, 6); assertTrue("not a field declaration", node instanceof FieldDeclaration); //$NON-NLS-1$ fieldDeclaration = (FieldDeclaration) node; fragments = fieldDeclaration.fragments(); assertEquals("Wrong size", 1, fragments.size()); fragment = (VariableDeclarationFragment) fragments.get(0); variableBinding = fragment.resolveBinding(); assertNotNull("No binding", variableBinding); assertEquals("Wrong name", "INT_FIELD", variableBinding.getName()); constantValue = variableBinding.getConstantValue(); assertNotNull("No constant", constantValue); assertEquals("Wrong value", Integer.valueOf("7fffffff", 16), constantValue); initializer = fragment.getInitializer(); assertNotNull("No initializer", initializer); checkSourceRange(initializer, "Integer.MAX_VALUE", source); node = getASTNode(unit, 0, 7); assertTrue("not a field declaration", node instanceof FieldDeclaration); //$NON-NLS-1$ fieldDeclaration = (FieldDeclaration) node; fragments = fieldDeclaration.fragments(); assertEquals("Wrong size", 1, fragments.size()); fragment = (VariableDeclarationFragment) fragments.get(0); variableBinding = fragment.resolveBinding(); assertNotNull("No binding", variableBinding); assertEquals("Wrong name", "LONG_FIELD", variableBinding.getName()); constantValue = variableBinding.getConstantValue(); assertNotNull("No constant", constantValue); assertEquals("Wrong value", new Long("34"), constantValue); initializer = fragment.getInitializer(); assertNotNull("No initializer", initializer); checkSourceRange(initializer, "34L", source); node = getASTNode(unit, 0, 8); assertTrue("not a field declaration", node instanceof FieldDeclaration); //$NON-NLS-1$ fieldDeclaration = (FieldDeclaration) node; fragments = fieldDeclaration.fragments(); assertEquals("Wrong size", 1, fragments.size()); fragment = (VariableDeclarationFragment) fragments.get(0); variableBinding = fragment.resolveBinding(); assertNotNull("No binding", variableBinding); assertEquals("Wrong name", "SHORT_FIELD", variableBinding.getName()); constantValue = variableBinding.getConstantValue(); assertNotNull("No constant", constantValue); assertEquals("Wrong value", new Short("130"), constantValue); initializer = fragment.getInitializer(); assertNotNull("No initializer", initializer); checkSourceRange(initializer, "130", source); node = getASTNode(unit, 0, 9); assertTrue("not a field declaration", node instanceof FieldDeclaration); //$NON-NLS-1$ fieldDeclaration = (FieldDeclaration) node; fragments = fieldDeclaration.fragments(); assertEquals("Wrong size", 1, fragments.size()); fragment = (VariableDeclarationFragment) fragments.get(0); variableBinding = fragment.resolveBinding(); assertNotNull("No binding", variableBinding); assertEquals("Wrong name", "int_field", variableBinding.getName()); constantValue = variableBinding.getConstantValue(); assertNull("Got a constant", constantValue); initializer = fragment.getInitializer(); assertNotNull("No initializer", initializer); checkSourceRange(initializer, "Integer.MAX_VALUE", source); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=58436 */ public void test0543() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0543", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ unit.accept(new GetKeyVisitor()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=51500 */ public void test0544() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0544", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0); assertEquals("not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType()); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertTrue("Not an abstract method", (methodDeclaration.getModifiers() & Modifier.ABSTRACT) != 0); IMethodBinding methodBinding = methodDeclaration.resolveBinding(); assertNotNull("No binding", methodBinding); assertTrue("Not an abstract method binding", (methodBinding.getModifiers() & Modifier.ABSTRACT) != 0); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=59843 */ public void test0545() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0545", "First.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0); assertEquals("not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType()); //$NON-NLS-1$ TypeDeclaration typeDeclaration = (TypeDeclaration) node; ITypeBinding typeBinding = typeDeclaration.resolveBinding(); assertEquals("Wrong key", "Ltest0545/First$Test;", typeBinding.getKey()); sourceUnit = getCompilationUnit("Converter", "src", "test0545", "Second.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ result = runConversion(sourceUnit, true); unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ node = getASTNode(unit, 0, 0); assertEquals("not a method declaration", ASTNode.TYPE_DECLARATION, node.getNodeType()); //$NON-NLS-1$ typeDeclaration = (TypeDeclaration) node; typeBinding = typeDeclaration.resolveBinding(); assertEquals("Wrong key", "Ltest0545/Second$Test;", typeBinding.getKey()); sourceUnit = getCompilationUnit("Converter", "src", "test0545", "Third.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ result = runConversion(sourceUnit, true); unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ node = getASTNode(unit, 0, 0); assertEquals("not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType()); //$NON-NLS-1$ typeDeclaration = (TypeDeclaration) node; typeBinding = typeDeclaration.resolveBinding(); assertEquals("Wrong key", "Ltest0545/Third$Test;", typeBinding.getKey()); sourceUnit = getCompilationUnit("Converter", "src", "test0545", "Test.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ result = runConversion(sourceUnit, true); unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ node = getASTNode(unit, 0); assertEquals("not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType()); //$NON-NLS-1$ typeDeclaration = (TypeDeclaration) node; typeBinding = typeDeclaration.resolveBinding(); assertEquals("Wrong key", "Ltest0545/Test;", typeBinding.getKey()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=59848 * @deprecated using deprecated code */ public void test0546() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0546", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); final CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 0, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 1, 0, 0); assertEquals("not a variable declaration", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType()); //$NON-NLS-1$ VariableDeclarationStatement variableDeclarationStatement = (VariableDeclarationStatement) node; List fragments = variableDeclarationStatement.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); IVariableBinding variableBinding = fragment.resolveBinding(); ITypeBinding typeBinding = variableBinding.getType(); assertTrue("An anonymous type binding", !typeBinding.isAnonymous()); Expression initializer = fragment.getInitializer(); assertEquals("not a class instance creation", ASTNode.CLASS_INSTANCE_CREATION, initializer.getNodeType()); //$NON-NLS-1$ ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) initializer; AnonymousClassDeclaration anonymousClassDeclaration = classInstanceCreation.getAnonymousClassDeclaration(); ITypeBinding typeBinding2 = anonymousClassDeclaration.resolveBinding(); assertTrue("Not an anonymous type binding", typeBinding2.isAnonymous()); ITypeBinding typeBinding3 = classInstanceCreation.resolveTypeBinding(); assertTrue("Not an anonymous type binding", typeBinding3.isAnonymous()); node = getASTNode(unit, 1, 0, 1); assertEquals("not a expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType()); //$NON-NLS-1$ ExpressionStatement statement = (ExpressionStatement) node; Expression expression = statement.getExpression(); assertEquals("not a method invocation", ASTNode.METHOD_INVOCATION, expression.getNodeType()); //$NON-NLS-1$ MethodInvocation methodInvocation = (MethodInvocation) expression; Expression expression2 = methodInvocation.getExpression(); assertEquals("not a simple name", ASTNode.SIMPLE_NAME, expression2.getNodeType()); //$NON-NLS-1$ SimpleName simpleName = (SimpleName) expression2; ITypeBinding typeBinding4 = simpleName.resolveTypeBinding(); assertTrue("An anonymous type binding", !typeBinding4.isAnonymous()); Name name = classInstanceCreation.getName(); IBinding binding = name.resolveBinding(); assertEquals("Wrong type", IBinding.TYPE, binding.getKind()); ITypeBinding typeBinding5 = (ITypeBinding) binding; assertTrue("An anonymous type binding", !typeBinding5.isAnonymous()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=60078 * @deprecated using deprecated code */ public void test0547() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0547", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); CompilationUnit unit = (CompilationUnit) result; assertEquals("Wrong number of problems", 1, unit.getProblems().length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("not a type declaration statement", ASTNode.TYPE_DECLARATION_STATEMENT, node.getNodeType()); //$NON-NLS-1$ TypeDeclarationStatement typeDeclarationStatement = (TypeDeclarationStatement) node; TypeDeclaration typeDeclaration = typeDeclarationStatement.getTypeDeclaration(); ITypeBinding typeBinding = typeDeclaration.resolveBinding(); assertEquals("Wrong key", "Ltest0547/A$74$Local;", typeBinding.getKey()); List bodyDeclarations = typeDeclaration.bodyDeclarations(); assertEquals("wrong size", 3, bodyDeclarations.size()); BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0); assertEquals("not a type declaration statement", ASTNode.TYPE_DECLARATION, bodyDeclaration.getNodeType()); //$NON-NLS-1$ TypeDeclaration typeDeclaration2 = (TypeDeclaration) bodyDeclaration; typeBinding = typeDeclaration2.resolveBinding(); assertEquals("Wrong key", "Ltest0547/A$100$LocalMember;", typeBinding.getKey()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=60581 */ public void test0548() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0548", "PaletteStackEditPart.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, false); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=48502 */ public void test0549() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0549", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, false); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=48502 */ public void test0550() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0550", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, false); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=60848 */ public void test0551() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0551", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, false); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 1, problems.length); //$NON-NLS-1$ IProblem problem = problems[0]; assertEquals("wrong end position", source.length - 1, problem.getSourceEnd()); } public void test0552() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0552", "Test.java"); char[] source = sourceUnit.getSource().toCharArray(); CompilationUnit result = (CompilationUnit) runConversion(sourceUnit, true); assertEquals("Got errors", 0, result.getProblems().length); TypeDeclaration declaration = (TypeDeclaration) result.types().get(0); Block body = declaration.getMethods()[0].getBody(); ExpressionStatement expr = (ExpressionStatement) body.statements().get(0); MethodInvocation invocation = (MethodInvocation) expr.getExpression(); InfixExpression node = (InfixExpression) invocation.arguments().get(0); ITypeBinding typeBinding = node.resolveTypeBinding(); assertEquals("wrong type", "java.lang.String", typeBinding.getQualifiedName()); checkSourceRange(node, "\"a\" + \"a\" + \"a\"", source); List extendedOperands = node.extendedOperands(); assertEquals("Wrong size", 1, extendedOperands.size()); Expression leftOperand = node.getLeftOperand(); checkSourceRange(leftOperand, "\"a\"", source); typeBinding = leftOperand.resolveTypeBinding(); assertEquals("wrong type", "java.lang.String", typeBinding.getQualifiedName()); Expression rightOperand = node.getRightOperand(); checkSourceRange(rightOperand, "\"a\"", source); typeBinding = rightOperand.resolveTypeBinding(); assertEquals("wrong type", "java.lang.String", typeBinding.getQualifiedName()); Expression expression = (Expression) extendedOperands.get(0); checkSourceRange(expression, "\"a\"", source); typeBinding = expression.resolveTypeBinding(); assertEquals("wrong type", "java.lang.String", typeBinding.getQualifiedName()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=61946 */ public void test0553() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0553", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0); assertEquals("Not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType()); FieldDeclaration fieldDeclaration = (FieldDeclaration) node; List fragments = fieldDeclaration.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); IVariableBinding variableBinding = fragment.resolveBinding(); assertNotNull("No binding", variableBinding); Object constantValue = variableBinding.getConstantValue(); assertNull("Got a constant value", constantValue); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=61946 */ public void test0554() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0554", "B.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Not a return statement", ASTNode.RETURN_STATEMENT, node.getNodeType()); ReturnStatement returnStatement = (ReturnStatement) node; Expression expression = returnStatement.getExpression(); assertNotNull("No expression", expression); assertEquals("Not a method invocation", ASTNode.METHOD_INVOCATION, expression.getNodeType()); MethodInvocation methodInvocation = (MethodInvocation) expression; Expression expression2 = methodInvocation.getExpression(); checkSourceRange(expression2, "A", source); ITypeBinding typeBinding = expression2.resolveTypeBinding(); assertEquals("wrong type", "test0554.A", typeBinding.getQualifiedName()); IVariableBinding[] fields = typeBinding.getDeclaredFields(); assertEquals("Wrong size", 1, fields.length); IVariableBinding variableBinding = fields[0]; Object constantValue = variableBinding.getConstantValue(); assertNotNull("Missing constant", constantValue); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=61946 */ public void test0555() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0555", "B.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Not a return statement", ASTNode.RETURN_STATEMENT, node.getNodeType()); ReturnStatement returnStatement = (ReturnStatement) node; Expression expression = returnStatement.getExpression(); assertNotNull("No expression", expression); assertEquals("Not a qualified name", ASTNode.QUALIFIED_NAME, expression.getNodeType()); QualifiedName qualifiedName = (QualifiedName) expression; Name name = qualifiedName.getQualifier(); checkSourceRange(name, "A", source); ITypeBinding typeBinding = name.resolveTypeBinding(); assertEquals("wrong type", "test0555.A", typeBinding.getQualifiedName()); IVariableBinding[] fields = typeBinding.getDeclaredFields(); assertEquals("Wrong size", 1, fields.length); IVariableBinding variableBinding = fields[0]; Object constantValue = variableBinding.getConstantValue(); assertNotNull("No constant value", constantValue); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=62463 */ public void test0556() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0556", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 1, 0); assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType()); ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertEquals("Not an method invocation", ASTNode.METHOD_INVOCATION, expression.getNodeType()); MethodInvocation methodInvocation = (MethodInvocation) expression; Expression expression2 = methodInvocation.getExpression(); checkSourceRange(expression2, "(aa.bar())", source); SimpleName simpleName = methodInvocation.getName(); checkSourceRange(simpleName, "size", source); checkSourceRange(expression, "(aa.bar()).size()", source); checkSourceRange(expressionStatement, "(aa.bar()).size();", source); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=62463 */ public void test0557() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0557", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 1, 0); assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType()); ExpressionStatement expressionStatement = (ExpressionStatement) node; Expression expression = expressionStatement.getExpression(); assertEquals("Not an method invocation", ASTNode.METHOD_INVOCATION, expression.getNodeType()); MethodInvocation methodInvocation = (MethodInvocation) expression; Expression expression2 = methodInvocation.getExpression(); checkSourceRange(expression2, "(aa.bar())", source); SimpleName simpleName = methodInvocation.getName(); checkSourceRange(simpleName, "get", source); checkSourceRange(expression, "(aa.bar()).get(0)", source); checkSourceRange(expressionStatement, "(aa.bar()).get(0);", source); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=65090 * @deprecated using deprecated code */ public void test0558() { String src = "\tSystem.out.println(\"Hello\");\n\tSystem.out.println(\"World\");\n"; char[] source = src.toCharArray(); ASTParser parser = ASTParser.newParser(AST.JLS2); parser.setKind (ASTParser.K_STATEMENTS); parser.setSource (source); ASTNode result = parser.createAST (null); assertNotNull("no result", result); assertEquals("Wrong type", ASTNode.BLOCK, result.getNodeType()); Block block = (Block) result; List statements = block.statements(); assertNotNull("No statements", statements); assertEquals("Wrong size", 2, statements.size()); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=65562 */ public void test0559() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0559", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Wrong type", ASTNode.IF_STATEMENT, node.getNodeType()); IfStatement ifStatement = (IfStatement) node; Expression expression = ifStatement.getExpression(); assertEquals("Wrong type", ASTNode.INFIX_EXPRESSION, expression.getNodeType()); InfixExpression infixExpression = (InfixExpression) expression; Expression expression2 = infixExpression.getLeftOperand(); assertEquals("Wrong type", ASTNode.METHOD_INVOCATION, expression2.getNodeType()); MethodInvocation methodInvocation = (MethodInvocation) expression2; Expression expression3 = methodInvocation.getExpression(); assertEquals("Wrong type", ASTNode.PARENTHESIZED_EXPRESSION, expression3.getNodeType()); ParenthesizedExpression parenthesizedExpression = (ParenthesizedExpression) expression3; Expression expression4 = parenthesizedExpression.getExpression(); assertEquals("Wrong type", ASTNode.STRING_LITERAL, expression4.getNodeType()); checkSourceRange(expression4, "\" \"", source); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=65562 */ public void test0560() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0560", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Wrong type", ASTNode.IF_STATEMENT, node.getNodeType()); IfStatement ifStatement = (IfStatement) node; Expression expression = ifStatement.getExpression(); assertEquals("Wrong type", ASTNode.INFIX_EXPRESSION, expression.getNodeType()); InfixExpression infixExpression = (InfixExpression) expression; Expression expression2 = infixExpression.getLeftOperand(); assertEquals("Wrong type", ASTNode.METHOD_INVOCATION, expression2.getNodeType()); MethodInvocation methodInvocation = (MethodInvocation) expression2; Expression expression3 = methodInvocation.getExpression(); assertEquals("Wrong type", ASTNode.PARENTHESIZED_EXPRESSION, expression3.getNodeType()); ParenthesizedExpression parenthesizedExpression = (ParenthesizedExpression) expression3; Expression expression4 = parenthesizedExpression.getExpression(); assertEquals("Wrong type", ASTNode.STRING_LITERAL, expression4.getNodeType()); checkSourceRange(expression4, "\" \"", source); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=65562 */ public void test0561() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0561", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Wrong type", ASTNode.IF_STATEMENT, node.getNodeType()); IfStatement ifStatement = (IfStatement) node; Expression expression = ifStatement.getExpression(); assertEquals("Wrong type", ASTNode.INFIX_EXPRESSION, expression.getNodeType()); InfixExpression infixExpression = (InfixExpression) expression; Expression expression2 = infixExpression.getLeftOperand(); assertEquals("Wrong type", ASTNode.METHOD_INVOCATION, expression2.getNodeType()); MethodInvocation methodInvocation = (MethodInvocation) expression2; Expression expression3 = methodInvocation.getExpression(); assertEquals("Wrong type", ASTNode.PARENTHESIZED_EXPRESSION, expression3.getNodeType()); ParenthesizedExpression parenthesizedExpression = (ParenthesizedExpression) expression3; Expression expression4 = parenthesizedExpression.getExpression(); assertEquals("Wrong type", ASTNode.STRING_LITERAL, expression4.getNodeType()); checkSourceRange(expression4, "\" \"", source); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=65562 */ public void test0562() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0562", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Wrong type", ASTNode.IF_STATEMENT, node.getNodeType()); IfStatement ifStatement = (IfStatement) node; Expression expression = ifStatement.getExpression(); assertEquals("Wrong type", ASTNode.INFIX_EXPRESSION, expression.getNodeType()); InfixExpression infixExpression = (InfixExpression) expression; Expression expression2 = infixExpression.getLeftOperand(); assertEquals("Wrong type", ASTNode.METHOD_INVOCATION, expression2.getNodeType()); MethodInvocation methodInvocation = (MethodInvocation) expression2; Expression expression3 = methodInvocation.getExpression(); assertEquals("Wrong type", ASTNode.PARENTHESIZED_EXPRESSION, expression3.getNodeType()); ParenthesizedExpression parenthesizedExpression = (ParenthesizedExpression) expression3; Expression expression4 = parenthesizedExpression.getExpression(); assertEquals("Wrong type", ASTNode.STRING_LITERAL, expression4.getNodeType()); checkSourceRange(expression4, "\" \"", source); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=65562 */ public void test0563() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0563", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Wrong type", ASTNode.IF_STATEMENT, node.getNodeType()); IfStatement ifStatement = (IfStatement) node; Expression expression = ifStatement.getExpression(); assertEquals("Wrong type", ASTNode.INFIX_EXPRESSION, expression.getNodeType()); InfixExpression infixExpression = (InfixExpression) expression; Expression expression2 = infixExpression.getLeftOperand(); assertEquals("Wrong type", ASTNode.METHOD_INVOCATION, expression2.getNodeType()); MethodInvocation methodInvocation = (MethodInvocation) expression2; Expression expression3 = methodInvocation.getExpression(); assertEquals("Wrong type", ASTNode.PARENTHESIZED_EXPRESSION, expression3.getNodeType()); ParenthesizedExpression parenthesizedExpression = (ParenthesizedExpression) expression3; Expression expression4 = parenthesizedExpression.getExpression(); checkSourceRange(expression4, "new String()", source); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=65562 */ public void test0564() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0564", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Wrong type", ASTNode.IF_STATEMENT, node.getNodeType()); IfStatement ifStatement = (IfStatement) node; Expression expression = ifStatement.getExpression(); assertEquals("Wrong type", ASTNode.INFIX_EXPRESSION, expression.getNodeType()); InfixExpression infixExpression = (InfixExpression) expression; Expression expression2 = infixExpression.getLeftOperand(); assertEquals("Wrong type", ASTNode.METHOD_INVOCATION, expression2.getNodeType()); MethodInvocation methodInvocation = (MethodInvocation) expression2; Expression expression3 = methodInvocation.getExpression(); assertEquals("Wrong type", ASTNode.PARENTHESIZED_EXPRESSION, expression3.getNodeType()); ParenthesizedExpression parenthesizedExpression = (ParenthesizedExpression) expression3; Expression expression4 = parenthesizedExpression.getExpression(); checkSourceRange(expression4, "new String()", source); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=65562 */ public void test0565() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0565", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0, 0); assertEquals("Wrong type", ASTNode.IF_STATEMENT, node.getNodeType()); IfStatement ifStatement = (IfStatement) node; Expression expression = ifStatement.getExpression(); assertEquals("Wrong type", ASTNode.INFIX_EXPRESSION, expression.getNodeType()); InfixExpression infixExpression = (InfixExpression) expression; Expression expression2 = infixExpression.getLeftOperand(); assertEquals("Wrong type", ASTNode.METHOD_INVOCATION, expression2.getNodeType()); MethodInvocation methodInvocation = (MethodInvocation) expression2; Expression expression3 = methodInvocation.getExpression(); assertEquals("Wrong type", ASTNode.PARENTHESIZED_EXPRESSION, expression3.getNodeType()); ParenthesizedExpression parenthesizedExpression = (ParenthesizedExpression) expression3; Expression expression4 = parenthesizedExpression.getExpression(); checkSourceRange(expression4, "(/**/ String /**/) new String()", source); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=69349 */ public void test0566() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0566", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0); assertEquals("Wrong type", ASTNode.METHOD_DECLARATION, node.getNodeType()); assertEquals("Wrong character", '}', source[node.getStartPosition() + node.getLength() - 1]); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=69349 */ public void test0567() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0567", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ char[] source = sourceUnit.getSource().toCharArray(); ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0); assertEquals("Wrong type", ASTNode.METHOD_DECLARATION, node.getNodeType()); assertEquals("Wrong character", '}', source[node.getStartPosition() + node.getLength() - 1]); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=74369 * @deprecated using deprecated code */ public void test0569() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0569", "A.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; final IProblem[] problems = unit.getProblems(); assertEquals("Wrong number of problems", 0, problems.length); //$NON-NLS-1$ ASTNode node = getASTNode(unit, 0, 0, 1); assertEquals("not a type declaration statement", ASTNode.TYPE_DECLARATION_STATEMENT, node.getNodeType()); //$NON-NLS-1$ TypeDeclarationStatement typeDeclarationStatement = (TypeDeclarationStatement) node; TypeDeclaration typeDeclaration = typeDeclarationStatement.getTypeDeclaration(); assertEquals("wrong name", "Local", typeDeclaration.getName().getIdentifier()); assertNull("Got a javadoc", typeDeclaration.getJavadoc()); node = getASTNode(unit, 0); assertEquals("not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType()); //$NON-NLS-1$ typeDeclaration = (TypeDeclaration) node; assertEquals("wrong name", "A", typeDeclaration.getName().getIdentifier()); assertNotNull("No javadoc", typeDeclaration.getJavadoc()); node = getASTNode(unit, 0, 0); assertEquals("not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType()); //$NON-NLS-1$ MethodDeclaration methodDeclaration = (MethodDeclaration) node; assertEquals("wrong name", "method", methodDeclaration.getName().getIdentifier()); assertNotNull("No javadoc", methodDeclaration.getJavadoc()); } /* * Ensures that the type binding from an import and the type binding from a type ref are equals * when the AST is computed using ICompilationUnit#reconcile(...) * (regression test for bug 83210 Unidentical ITypeBindings for same type from same AST from reconcile) */ public void test0570() throws CoreException { ICompilationUnit workingCopy = null; try { workingCopy = getWorkingCopy("/Converter/src/X.java", true); CompilationUnit unit = (CompilationUnit) buildAST( "import java.util.List;\n" + "public class X{\n" + " List field;\n" + "}", workingCopy ); ImportDeclaration importDeclaration = (ImportDeclaration) unit.imports().iterator().next(); TypeDeclaration typeDeclaration = (TypeDeclaration) unit.types().iterator().next(); FieldDeclaration fieldDeclaration = typeDeclaration.getFields()[0]; Type type = fieldDeclaration.getType(); IBinding importBinding = importDeclaration.resolveBinding(); IBinding typeBinding = type.resolveBinding(); assertEquals(importBinding,typeBinding); } finally { if (workingCopy != null) workingCopy.discardWorkingCopy(); } } /* * Ensures that the bindings for a member type in a .class file can be created. */ public void test0571() throws CoreException, IOException { try { IJavaProject p = createJavaProject("P", new String[] {""}, new String[] {"CONVERTER_JCL_LIB"}, ""); String source = "public class X {\n" + " public class Y {\n" + " }\n" + "}"; addLibrary(p, "test0571.jar", "test0571.zip", new String[] {"X.java", source }, "1.4"); IClassFile classFile = getClassFile("P", "/P/test0571.jar", "", "X$Y.class"); CompilationUnit unit = (CompilationUnit) runConversion(getJLS3(), classFile, 0, true); IProblem[] problems = unit.getProblems(); StringBuffer buffer = new StringBuffer(); for (int i = 0, length = problems.length; i < length; i++) Util.appendProblem(buffer, problems[i], source.toCharArray(), i); assertEquals("Unexpected problems", "", buffer.toString()); } finally { deleteProject("P"); } } /* * Ensures that the method bindings of an anonymous type are correct. */ public void test0572() throws CoreException { ICompilationUnit workingCopy = null; try { workingCopy = getWorkingCopy("/Converter/src/X.java", true/*resolve*/); AnonymousClassDeclaration type = (AnonymousClassDeclaration) buildAST( "public class X {\n" + " void foo() {\n" + " new X() /*start*/{\n" + " void bar() {}\n" + " }/*end*/;\n" + " }\n" + "}", workingCopy); ITypeBinding typeBinding = type.resolveBinding(); assertBindingsEqual( "LX$40;.(LX;)V\n" + "LX$40;.bar()V", typeBinding.getDeclaredMethods()); } finally { if (workingCopy != null) workingCopy.discardWorkingCopy(); } } /* * Ensures that the Java element of a compilation is correct. */ public void test0573() throws CoreException { ICompilationUnit workingCopy = null; try { workingCopy = getWorkingCopy("/Converter/src/X.java", true/*resolve*/); CompilationUnit cu = (CompilationUnit) buildAST( "public class X {\n" + "}", workingCopy); assertElementEquals("Unexpected Java element", "[Working copy] X.java [in <default> [in src [in Converter]]]", cu.getJavaElement()); } finally { if (workingCopy != null) workingCopy.discardWorkingCopy(); } } /* * Ensures that strings are not optimized when creating the AST through a reconcile. * (regression test for bug 82830 AST: String concatenation represented as single node) */ public void test0574() throws CoreException { ICompilationUnit workingCopy = null; try { workingCopy = getWorkingCopy("/Converter/src/X.java", true/*resolve*/); ASTNode string = buildAST( "public class X {\n" + " String s = /*start*/\"a\" + \"b\"/*end*/;\n" + "}", workingCopy); assertEquals("Unexpected node type", ASTNode.INFIX_EXPRESSION, string.getNodeType()); } finally { if (workingCopy != null) workingCopy.discardWorkingCopy(); } } /* * Ensures that 2 different method bindings with the same return type are not "isEqualTo(...)". * (regression test for bug 99978 MalformedTreeException on Inline Method) */ public void test0575() throws JavaModelException { ICompilationUnit workingCopy = null; try { workingCopy = getWorkingCopy("/Converter/src/X.java", true/*resolve*/); String contents = "public class X {\n" + " /*start1*/String foo(String o) {return null;}/*end1*/\n" + " /*start2*/String foo(Object o) {return null;}/*end2*/\n" + "}"; IBinding[] firstBatch = resolveBindings(contents, workingCopy); IBinding[] secondBatch = resolveBindings(contents, workingCopy); assertTrue("2 different method type bindings should not be equals", !firstBatch[0].isEqualTo(secondBatch[1])); } finally { if (workingCopy != null) workingCopy.discardWorkingCopy(); } } /* * Ensures that the binding key of a raw member type is correct. * (regression test for bug 100549 Strange binding keys from AST on class file of nested type) */ public void test0576() throws CoreException, IOException { try { IJavaProject project = createJavaProject("P1", new String[] {""}, new String[] {"CONVERTER_JCL15_LIB"}, "", "1.5"); addLibrary(project, "lib.jar", "src.zip", new String[] { "/P1/p/X.java", "package p;\n" + "public class X<T> {\n" + " /*start*/public class Member {\n" + " }/*end*/\n" + "}", }, "1.5"); IClassFile classFile = getClassFile("P1", "/P1/lib.jar", "p", "X$Member.class"); ASTNode node = buildAST(classFile); ITypeBinding binding = ((TypeDeclaration) node).resolveBinding(); assertBindingKeyEquals("Lp/X<TT;>.Member;", binding.getKey()); } finally { deleteProject("P1"); } } /* * Ensures that strings are not optimized when creating the AST through a reconcile * even if the working copy was consistent. * (regression test for bug 114909 AST: String concatenation represented as single node) */ public void test0577() throws CoreException { ICompilationUnit workingCopy = null; try { workingCopy = getWorkingCopy( "/Converter/src/X.java", "public class X {\n" + " String s = /*start*/\"a\" + \"b\"/*end*/;\n" + "}", true/*resolve*/); ASTNode string = buildAST(workingCopy); assertEquals("Unexpected node type", ASTNode.INFIX_EXPRESSION, string.getNodeType()); } finally { if (workingCopy != null) workingCopy.discardWorkingCopy(); } } /* * Ensures that bindings are created when reconciling an external working copy. */ public void test0578() throws CoreException { ICompilationUnit workingCopy = null; try { IClasspathEntry[] classpath = new IClasspathEntry[] {JavaCore.newLibraryEntry(getConverterJCLPath(), null, null)}; workingCopy = newExternalWorkingCopy("External.java", classpath, new ProblemRequestor(), ""); String contents = "public class External {\n"+ " /*start*/String foo(){\n"+ " return \"\";\n" + " }/*end*/\n"+ "}\n"; IBinding methodBinding = resolveBindings(contents, workingCopy)[0]; assertBindingEquals( "LExternal;.foo()Ljava/lang/String;", methodBinding); } finally { if (workingCopy != null) workingCopy.discardWorkingCopy(); } } /* * Ensures that the start position of an argument that has a previous sibbling with a comment is correct * (regression test for bug 80904 Quick Fix "Assign parameter to new field" doesn't appear with commented type) */ public void test0579() throws CoreException { ICompilationUnit workingCopy = null; try { workingCopy = getWorkingCopy( "/Converter/src/X.java", "public class X {\n" + " /*start*/void foo(Object/*first arg*/ arg1, Object arg2) {\n" + " }/*end*/\n" + "}", true/*resolve*/); MethodDeclaration method = (MethodDeclaration) buildAST(workingCopy); SingleVariableDeclaration arg2 = (SingleVariableDeclaration) method.parameters().get(1); int start = arg2.getStartPosition(); assertEquals("Unexpected range for arg2", "Object arg2", workingCopy.getSource().substring(start, start+arg2.getLength())); } finally { if (workingCopy != null) workingCopy.discardWorkingCopy(); } } public void test0606() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter", "src", "test0606", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ ASTNode result = runConversion(sourceUnit, true); assertEquals("not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType()); //$NON-NLS-1$ CompilationUnit unit = (CompilationUnit) result; assertProblemsSize(unit, 0); unit.accept(new ASTVisitor() { public boolean visit(MethodDeclaration methodDeclaration) { IMethodBinding methodBinding = methodDeclaration.resolveBinding(); IJavaElement javaElement = methodBinding.getJavaElement(); assertNotNull("No java element", javaElement); return false; } }); } /** * https://bugs.eclipse.org/bugs/show_bug.cgi?id=173853 */ public void test0607() throws CoreException { ICompilationUnit workingCopy = null; try { workingCopy = getWorkingCopy( "/Converter/src/X.java", "public class X {\n" + " void foo() {\n" + " #\n" + " /*start*/new Object() {\n" + " }/*end*/;\n" + " }\n" + "}", true/*resolve*/); ASTNode string = buildAST(null, workingCopy, false, true); assertEquals("Unexpected node type", ASTNode.CLASS_INSTANCE_CREATION, string.getNodeType()); ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) string; ITypeBinding resolveTypeBinding = classInstanceCreation.resolveTypeBinding(); assertNotNull("Binding is null", resolveTypeBinding); IMethodBinding[] declaredMethods = resolveTypeBinding.getDeclaredMethods(); assertNotNull("Should have one method", declaredMethods); assertEquals("Should have one method", 1, declaredMethods.length); assertTrue("The method should be a default constructor", declaredMethods[0].isDefaultConstructor()); } finally { if (workingCopy != null) workingCopy.discardWorkingCopy(); } } /* * Ensures that no exception is thrown in case of a syntax error in a for statement * (regression test for bug 199668 IAE in ASTNode.setSourceRange while editing a class) */ public void test0608() throws CoreException { ICompilationUnit workingCopy = null; try { workingCopy = getWorkingCopy( "/Converter/src/X.java", "public class X {\n" + " void foo() {\n" + " for (int i=0,; i<10; i++) {\n" + " }\n" + " }\n" + "}" ); ASTNode node = buildAST(null, workingCopy, false, true); assertNotNull("Should get an AST", node); assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType()); node = getASTNode((CompilationUnit) node, 0, 0, 0); assertEquals("Not a for statement", ASTNode.FOR_STATEMENT, node.getNodeType()); ForStatement forStatement = (ForStatement) node; List initializers = forStatement.initializers(); assertEquals("Wrong size", 1, initializers.size()); VariableDeclarationExpression expression = (VariableDeclarationExpression) initializers.get(0); List fragments = expression.fragments(); assertEquals("Wrong size", 1, fragments.size()); VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0); assertEquals("Wrong name", "i", fragment.getName().getIdentifier()); assertTrue("Should be a recovered fragment", isRecovered(expression)); } finally { if (workingCopy != null) workingCopy.discardWorkingCopy(); } } /* * Ensures that no exception is thrown in case of a syntax error in method parameter declarations * (regression test for bug 200080 Endless illegal arg exceptions from java editor's ASTProvider) */ public void test0609() throws CoreException { ICompilationUnit workingCopy = null; try { workingCopy = getWorkingCopy( "/Converter/src/X.java", "public class X {\n" + " void foo(a, b, ) {\n" + " if\n" + " }\n" + "}" ); ASTNode cu = workingCopy.reconcile(getJLS3(), true, true, null, null); assertNotNull("Should get an AST", cu); } finally { if (workingCopy != null) workingCopy.discardWorkingCopy(); } } // https://bugs.eclipse.org/bugs/show_bug.cgi?id=270446. NPE while building abridged AST public void test0610() throws CoreException { ICompilationUnit workingCopy = null; try { workingCopy = getWorkingCopy( "/Converter/src/X.java", "public class X {\n" + " private class B {\n" + " public B() {\n" + " }\n" + " }\n" + " public X() {\n" + " }\n" + " }\n" ); // Create parser ASTParser parser = ASTParser.newParser(getJLS3()); parser.setSource(workingCopy); parser.setFocalPosition(0); parser.setResolveBindings(true); ASTNode result = parser.createAST(null); assertNotNull("Should get an AST", result); } finally { if (workingCopy != null) workingCopy.discardWorkingCopy(); } } }