blob: 5f748d3fb779610a40018156b40a6cf4014cd214 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.core.tests.dom;
import java.io.IOException;
import java.util.List;
import junit.framework.Test;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.IType;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.core.dom.*;
public class ASTConverter15Test extends ConverterTestSetup {
ICompilationUnit workingCopy;
public void setUpSuite() throws Exception {
super.setUpSuite();
this.ast = AST.newAST(AST.JLS3);
}
public ASTConverter15Test(String name) {
super(name);
}
static {
// TESTS_NUMBERS = new int[] { 192 };
// TESTS_NAMES = new String[] {"test0189"};
}
public static Test suite() {
return buildTestSuite(ASTConverter15Test.class);
}
protected void tearDown() throws Exception {
super.tearDown();
if (this.workingCopy != null) {
this.workingCopy.discardWorkingCopy();
this.workingCopy = null;
}
}
public void test0001() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0001", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
List types = compilationUnit.types();
assertEquals("Wrong number of types", 1, types.size());
AbstractTypeDeclaration typeDeclaration = (AbstractTypeDeclaration) types.get(0);
assertEquals("wrong type", ASTNode.TYPE_DECLARATION, typeDeclaration.getNodeType());
TypeDeclaration typeDeclaration2 = (TypeDeclaration) typeDeclaration;
List modifiers = typeDeclaration2.modifiers();
assertEquals("Wrong number of modifiers", 1, modifiers.size());
Modifier modifier = (Modifier) modifiers.get(0);
checkSourceRange(modifier, "public", source);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Wrong type", ASTNode.FIELD_DECLARATION, node.getNodeType());
FieldDeclaration fieldDeclaration = (FieldDeclaration) node;
modifiers = fieldDeclaration.modifiers();
assertEquals("Wrong number of modifiers", 3, modifiers.size());
modifier = (Modifier) modifiers.get(0);
checkSourceRange(modifier, "public", source);
modifier = (Modifier) modifiers.get(1);
checkSourceRange(modifier, "static", source);
modifier = (Modifier) modifiers.get(2);
checkSourceRange(modifier, "final", source);
node = getASTNode(compilationUnit, 0, 1);
assertEquals("Wrong type", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
modifiers = methodDeclaration.modifiers();
assertEquals("Wrong number of modifiers", 2, modifiers.size());
modifier = (Modifier) modifiers.get(0);
checkSourceRange(modifier, "private", source);
modifier = (Modifier) modifiers.get(1);
checkSourceRange(modifier, "static", source);
List parameters = methodDeclaration.parameters();
assertEquals("Wrong number of parameters", 1, parameters.size());
SingleVariableDeclaration variableDeclaration = (SingleVariableDeclaration) parameters.get(0);
modifiers = variableDeclaration.modifiers();
assertEquals("Wrong number of modifiers", 1, modifiers.size());
modifier = (Modifier) modifiers.get(0);
checkSourceRange(modifier, "final", source);
node = getASTNode(compilationUnit, 0, 2);
assertEquals("Wrong type", ASTNode.METHOD_DECLARATION, node.getNodeType());
methodDeclaration = (MethodDeclaration) node;
modifiers = methodDeclaration.modifiers();
assertEquals("Wrong number of modifiers", 2, modifiers.size());
modifier = (Modifier) modifiers.get(0);
checkSourceRange(modifier, "public", source);
modifier = (Modifier) modifiers.get(1);
checkSourceRange(modifier, "static", source);
}
public void test0002() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0002", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
}
public void test0003() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0003", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
List types = compilationUnit.types();
assertEquals("Wrong number of types", 3, types.size());
AbstractTypeDeclaration typeDeclaration = (AbstractTypeDeclaration) types.get(2);
assertEquals("wrong type", ASTNode.TYPE_DECLARATION, typeDeclaration.getNodeType());
TypeDeclaration typeDeclaration2 = (TypeDeclaration) typeDeclaration;
List modifiers = typeDeclaration2.modifiers();
assertEquals("Wrong number of modifiers", 2, modifiers.size());
ASTNode modifier = (ASTNode) modifiers.get(0);
checkSourceRange(modifier, "@Author(@Name(first=\"Joe\", last=\"Hacker\"))", source);
assertEquals("wrong type", ASTNode.SINGLE_MEMBER_ANNOTATION, modifier.getNodeType());
SingleMemberAnnotation annotation = (SingleMemberAnnotation) modifier;
checkSourceRange(annotation.getTypeName(), "Author", source);
Expression value = annotation.getValue();
assertEquals("wrong type", ASTNode.NORMAL_ANNOTATION, value.getNodeType());
NormalAnnotation normalAnnotation = (NormalAnnotation) value;
checkSourceRange(normalAnnotation.getTypeName(), "Name", source);
List values = normalAnnotation.values();
assertEquals("wrong size", 2, values.size());
MemberValuePair memberValuePair = (MemberValuePair) values.get(0);
checkSourceRange(memberValuePair, "first=\"Joe\"", source);
checkSourceRange(memberValuePair.getName(), "first", source);
checkSourceRange(memberValuePair.getValue(), "\"Joe\"", source);
memberValuePair = (MemberValuePair) values.get(1);
checkSourceRange(memberValuePair, "last=\"Hacker\"", source);
checkSourceRange(memberValuePair.getName(), "last", source);
checkSourceRange(memberValuePair.getValue(), "\"Hacker\"", source);
modifier = (ASTNode) modifiers.get(1);
checkSourceRange(modifier, "public", source);
}
public void test0004() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0004", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
List types = compilationUnit.types();
assertEquals("Wrong number of types", 3, types.size());
AbstractTypeDeclaration typeDeclaration = (AbstractTypeDeclaration) types.get(2);
assertEquals("wrong type", ASTNode.TYPE_DECLARATION, typeDeclaration.getNodeType());
TypeDeclaration typeDeclaration2 = (TypeDeclaration) typeDeclaration;
List modifiers = typeDeclaration2.modifiers();
assertEquals("Wrong number of modifiers", 2, modifiers.size());
ASTNode modifier = (ASTNode) modifiers.get(1);
checkSourceRange(modifier, "@Author(@Name(first=\"Joe\", last=\"Hacker\"))", source);
assertEquals("wrong type", ASTNode.SINGLE_MEMBER_ANNOTATION, modifier.getNodeType());
SingleMemberAnnotation annotation = (SingleMemberAnnotation) modifier;
checkSourceRange(annotation.getTypeName(), "Author", source);
Expression value = annotation.getValue();
assertEquals("wrong type", ASTNode.NORMAL_ANNOTATION, value.getNodeType());
NormalAnnotation normalAnnotation = (NormalAnnotation) value;
checkSourceRange(normalAnnotation.getTypeName(), "Name", source);
List values = normalAnnotation.values();
assertEquals("wrong size", 2, values.size());
MemberValuePair memberValuePair = (MemberValuePair) values.get(0);
checkSourceRange(memberValuePair, "first=\"Joe\"", source);
checkSourceRange(memberValuePair.getName(), "first", source);
checkSourceRange(memberValuePair.getValue(), "\"Joe\"", source);
memberValuePair = (MemberValuePair) values.get(1);
checkSourceRange(memberValuePair, "last=\"Hacker\"", source);
checkSourceRange(memberValuePair.getName(), "last", source);
checkSourceRange(memberValuePair.getValue(), "\"Hacker\"", source);
modifier = (ASTNode) modifiers.get(0);
checkSourceRange(modifier, "public", source);
}
public void test0005() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0005", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
List types = compilationUnit.types();
assertEquals("Wrong number of types", 4, types.size());
AbstractTypeDeclaration typeDeclaration = (AbstractTypeDeclaration) types.get(3);
assertEquals("wrong type", ASTNode.TYPE_DECLARATION, typeDeclaration.getNodeType());
TypeDeclaration typeDeclaration2 = (TypeDeclaration) typeDeclaration;
List modifiers = typeDeclaration2.modifiers();
assertEquals("Wrong number of modifiers", 3, modifiers.size());
ASTNode modifier = (ASTNode) modifiers.get(0);
checkSourceRange(modifier, "@Retention", source);
assertEquals("wrong type", ASTNode.MARKER_ANNOTATION, modifier.getNodeType());
MarkerAnnotation markerAnnotation = (MarkerAnnotation) modifier;
checkSourceRange(markerAnnotation.getTypeName(), "Retention", source);
modifier = (ASTNode) modifiers.get(2);
checkSourceRange(modifier, "@Author(@Name(first=\"Joe\", last=\"Hacker\", age=32))", source);
assertEquals("wrong type", ASTNode.SINGLE_MEMBER_ANNOTATION, modifier.getNodeType());
SingleMemberAnnotation annotation = (SingleMemberAnnotation) modifier;
checkSourceRange(annotation.getTypeName(), "Author", source);
Expression value = annotation.getValue();
assertEquals("wrong type", ASTNode.NORMAL_ANNOTATION, value.getNodeType());
NormalAnnotation normalAnnotation = (NormalAnnotation) value;
checkSourceRange(normalAnnotation.getTypeName(), "Name", source);
List values = normalAnnotation.values();
assertEquals("wrong size", 3, values.size());
MemberValuePair memberValuePair = (MemberValuePair) values.get(0);
checkSourceRange(memberValuePair, "first=\"Joe\"", source);
checkSourceRange(memberValuePair.getName(), "first", source);
checkSourceRange(memberValuePair.getValue(), "\"Joe\"", source);
memberValuePair = (MemberValuePair) values.get(1);
checkSourceRange(memberValuePair, "last=\"Hacker\"", source);
checkSourceRange(memberValuePair.getName(), "last", source);
checkSourceRange(memberValuePair.getValue(), "\"Hacker\"", source);
memberValuePair = (MemberValuePair) values.get(2);
checkSourceRange(memberValuePair, "age=32", source);
checkSourceRange(memberValuePair.getName(), "age", source);
checkSourceRange(memberValuePair.getValue(), "32", source);
modifier = (ASTNode) modifiers.get(1);
checkSourceRange(modifier, "public", source);
typeDeclaration = (AbstractTypeDeclaration) types.get(0);
assertEquals("wrong type", ASTNode.ANNOTATION_TYPE_DECLARATION, typeDeclaration.getNodeType());
AnnotationTypeDeclaration annotationTypeDeclaration = (AnnotationTypeDeclaration) typeDeclaration;
List bodyDeclarations = annotationTypeDeclaration.bodyDeclarations();
assertEquals("Wrong size", 3, bodyDeclarations.size());
BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0);
assertEquals("wrong type", ASTNode.ANNOTATION_TYPE_MEMBER_DECLARATION, bodyDeclaration.getNodeType());
AnnotationTypeMemberDeclaration annotationTypeMemberDeclaration = (AnnotationTypeMemberDeclaration) bodyDeclaration;
IMethodBinding methodBinding = annotationTypeMemberDeclaration.resolveBinding();
assertNotNull("No binding", methodBinding);
checkSourceRange(annotationTypeMemberDeclaration, "String first() default \"Joe\";", source);
Expression expression = annotationTypeMemberDeclaration.getDefault();
checkSourceRange(expression, "\"Joe\"", source);
bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(2);
assertEquals("wrong type", ASTNode.ANNOTATION_TYPE_MEMBER_DECLARATION, bodyDeclaration.getNodeType());
annotationTypeMemberDeclaration = (AnnotationTypeMemberDeclaration) bodyDeclaration;
checkSourceRange(annotationTypeMemberDeclaration, "int age();", source);
expression = annotationTypeMemberDeclaration.getDefault();
assertNull("Got a default", expression);
}
public void test0006() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0006", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runConversion(AST.JLS3, sourceUnit, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
final String expectedOutput = "Package annotations must be in file package-info.java";
assertProblemsSize(compilationUnit, 1, expectedOutput);
PackageDeclaration packageDeclaration = compilationUnit.getPackage();
assertNotNull("No package declaration", packageDeclaration);
checkSourceRange(packageDeclaration, "@Retention package test0006;", source);
List annotations = packageDeclaration.annotations();
assertEquals("Wrong size", 1, annotations.size());
Annotation annotation = (Annotation) annotations.get(0);
checkSourceRange(annotation, "@Retention", source);
assertEquals("Not a marker annotation", annotation.getNodeType(), ASTNode.MARKER_ANNOTATION);
MarkerAnnotation markerAnnotation = (MarkerAnnotation) annotation;
checkSourceRange(markerAnnotation.getTypeName(), "Retention", source);
}
public void test0007() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0007", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runConversion(AST.JLS3, sourceUnit, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
List imports = compilationUnit.imports();
assertEquals("Wrong size", 2, imports.size());
ImportDeclaration importDeclaration = (ImportDeclaration) imports.get(0);
checkSourceRange(importDeclaration, "import java.util.*;", source);
assertFalse("is static", importDeclaration.isStatic());
importDeclaration = (ImportDeclaration) imports.get(1);
checkSourceRange(importDeclaration, "import static java.io.File.*;", source);
assertTrue("not static", importDeclaration.isStatic());
}
/** @deprecated using deprecated code */
public void test0008() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0008", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runConversion(AST.JLS2, sourceUnit, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
List imports = compilationUnit.imports();
assertEquals("Wrong size", 2, imports.size());
ImportDeclaration importDeclaration = (ImportDeclaration) imports.get(1);
assertTrue("Not malformed", isMalformed(importDeclaration));
}
public void test0009() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0009", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runConversion(AST.JLS3, sourceUnit, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0, 0);
assertTrue("Not a foreach statement", node.getNodeType() == ASTNode.ENHANCED_FOR_STATEMENT);
EnhancedForStatement enhancedForStatement = (EnhancedForStatement) node;
checkSourceRange(enhancedForStatement, "for (String s : args) {System.out.println(s);}", source);
SingleVariableDeclaration singleVariableDeclaration = enhancedForStatement.getParameter();
checkSourceRange(singleVariableDeclaration, "String s", source);
Type type = singleVariableDeclaration.getType();
checkSourceRange(type, "String", source);
SimpleName simpleName = singleVariableDeclaration.getName();
assertEquals("Wrong name", "s", simpleName.getIdentifier());
checkSourceRange(simpleName, "s", source);
Expression expression = enhancedForStatement.getExpression();
checkSourceRange(expression, "args", source);
Statement body = enhancedForStatement.getBody();
checkSourceRange(body, "{System.out.println(s);}", source);
}
public void test0010() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0010", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runConversion(AST.JLS3, sourceUnit, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 1, 0, 0);
assertTrue("Not a foreach statement", node.getNodeType() == ASTNode.ENHANCED_FOR_STATEMENT);
EnhancedForStatement enhancedForStatement = (EnhancedForStatement) node;
checkSourceRange(enhancedForStatement, "for (@Foo final String s : args) {System.out.println(s);}", source);
SingleVariableDeclaration singleVariableDeclaration = enhancedForStatement.getParameter();
checkSourceRange(singleVariableDeclaration, "@Foo final String s", source);
SimpleName simpleName = singleVariableDeclaration.getName();
List modifiers = singleVariableDeclaration.modifiers();
assertEquals("Wrong number of modifiers", 2, modifiers.size());
IExtendedModifier modifier = (IExtendedModifier) modifiers.get(0);
checkSourceRange((ASTNode) modifier, "@Foo", source);
modifier = (IExtendedModifier) modifiers.get(1);
checkSourceRange((ASTNode) modifier, "final", source);
Type type = singleVariableDeclaration.getType();
checkSourceRange(type, "String", source);
assertEquals("Wrong name", "s", simpleName.getIdentifier());
checkSourceRange(simpleName, "s", source);
Expression expression = enhancedForStatement.getExpression();
checkSourceRange(expression, "args", source);
Statement body = enhancedForStatement.getBody();
checkSourceRange(body, "{System.out.println(s);}", source);
}
public void test0011() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0011", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runConversion(AST.JLS3, sourceUnit, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 1, 0, 0);
assertTrue("Not a foreach statement", node.getNodeType() == ASTNode.ENHANCED_FOR_STATEMENT);
EnhancedForStatement enhancedForStatement = (EnhancedForStatement) node;
checkSourceRange(enhancedForStatement, "for (@Foo final String s[] : args) {System.out.println(s);}", source);
SingleVariableDeclaration singleVariableDeclaration = enhancedForStatement.getParameter();
checkSourceRange(singleVariableDeclaration, "@Foo final String s[]", source);
SimpleName simpleName = singleVariableDeclaration.getName();
List modifiers = singleVariableDeclaration.modifiers();
assertEquals("Wrong number of modifiers", 2, modifiers.size());
IExtendedModifier modifier = (IExtendedModifier) modifiers.get(0);
checkSourceRange((ASTNode) modifier, "@Foo", source);
modifier = (IExtendedModifier) modifiers.get(1);
checkSourceRange((ASTNode) modifier, "final", source);
assertEquals("Wrong dimension", 1, singleVariableDeclaration.getExtraDimensions());
Type type = singleVariableDeclaration.getType();
checkSourceRange(type, "String", source);
assertEquals("Wrong name", "s", simpleName.getIdentifier());
checkSourceRange(simpleName, "s", source);
Expression expression = enhancedForStatement.getExpression();
checkSourceRange(expression, "args", source);
Statement body = enhancedForStatement.getBody();
checkSourceRange(body, "{System.out.println(s);}", source);
}
public void test0012() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0012", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runConversion(AST.JLS3, sourceUnit, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 1, 0);
assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION);
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List parameters = methodDeclaration.parameters();
assertEquals("wrong size", 1, parameters.size());
SingleVariableDeclaration parameter = (SingleVariableDeclaration) parameters.get(0);
checkSourceRange(parameter, "@Foo final String[][]... args", source);
List modifiers = parameter.modifiers();
assertEquals("Wrong number of modifiers", 2, modifiers.size());
ASTNode modifier = (ASTNode) modifiers.get(0);
checkSourceRange(modifier, "@Foo", source);
modifier = (ASTNode) modifiers.get(1);
checkSourceRange(modifier, "final", source);
assertEquals("Wrong name", "args", parameter.getName().getIdentifier());
assertTrue("Not a variable argument", parameter.isVarargs());
}
public void test0013() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0013", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertTrue("Not a type declaration", node.getNodeType() == ASTNode.TYPE_DECLARATION);
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
SimpleName name = typeDeclaration.getName();
assertEquals("Wrong name", "Convertible", name.getIdentifier());
checkSourceRange(name, "Convertible", source);
List typeParameters = typeDeclaration.typeParameters();
assertEquals("Wrong size", 1, typeParameters.size());
TypeParameter typeParameter = (TypeParameter) typeParameters.get(0);
checkSourceRange(typeParameter, "T", source);
checkSourceRange(typeParameter.getName(), "T", source);
node = getASTNode(compilationUnit, 1);
assertTrue("Not a type declaration", node.getNodeType() == ASTNode.TYPE_DECLARATION);
typeDeclaration = (TypeDeclaration) node;
name = typeDeclaration.getName();
assertEquals("Wrong name", "X", name.getIdentifier());
checkSourceRange(name, "X", source);
typeParameters = typeDeclaration.typeParameters();
assertEquals("Wrong size", 2, typeParameters.size());
typeParameter = (TypeParameter) typeParameters.get(0);
checkSourceRange(typeParameter.getName(), "A", source);
checkSourceRange(typeParameter, "A extends Convertible<B>", source);
typeParameter = (TypeParameter) typeParameters.get(1);
checkSourceRange(typeParameter.getName(), "B", source);
checkSourceRange(typeParameter, "B extends Convertible<A>", source);
List typeBounds = typeParameter.typeBounds();
assertEquals("Wrong size", 1, typeBounds.size());
Type typeBound = (Type) typeBounds.get(0);
checkSourceRange(typeBound, "Convertible<A>", source);
assertEquals("wrong type", ASTNode.PARAMETERIZED_TYPE, typeBound.getNodeType());
ParameterizedType parameterizedType = (ParameterizedType) typeBound;
List typeArguments = parameterizedType.typeArguments();
assertEquals("Wrong size", 1, typeArguments.size());
Type typeArgument = (Type) typeArguments.get(0);
checkSourceRange(typeArgument, "A", source);
}
public void test0014() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0014", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 1);
assertTrue("Not a type declaration", node.getNodeType() == ASTNode.TYPE_DECLARATION);
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
SimpleName name = typeDeclaration.getName();
assertEquals("Wrong name", "X", name.getIdentifier());
checkSourceRange(name, "X", source);
List typeParameters = typeDeclaration.typeParameters();
assertEquals("Wrong size", 1, typeParameters.size());
TypeParameter typeParameter = (TypeParameter) typeParameters.get(0);
checkSourceRange(typeParameter.getName(), "A", source);
checkSourceRange(typeParameter, "A extends Convertible<Convertible<A>>", source);
List typeBounds = typeParameter.typeBounds();
assertEquals("Wrong size", 1, typeBounds.size());
Type typeBound = (Type) typeBounds.get(0);
checkSourceRange(typeBound, "Convertible<Convertible<A>>", source);
assertEquals("wrong type", ASTNode.PARAMETERIZED_TYPE, typeBound.getNodeType());
ParameterizedType parameterizedType = (ParameterizedType) typeBound;
List typeArguments = parameterizedType.typeArguments();
assertEquals("Wrong size", 1, typeArguments.size());
Type typeArgument = (Type) typeArguments.get(0);
checkSourceRange(typeArgument, "Convertible<A>", source);
assertEquals("wrong type", ASTNode.PARAMETERIZED_TYPE, typeArgument.getNodeType());
parameterizedType = (ParameterizedType) typeArgument;
typeArguments = parameterizedType.typeArguments();
assertEquals("Wrong size", 1, typeArguments.size());
typeArgument = (Type) typeArguments.get(0);
checkSourceRange(typeArgument, "A", source);
}
public void test0015() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0015", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertTrue("Not a type declaration", node.getNodeType() == ASTNode.TYPE_DECLARATION);
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
SimpleName name = typeDeclaration.getName();
assertEquals("Wrong name", "X", name.getIdentifier());
checkSourceRange(name, "X", source);
List typeParameters = typeDeclaration.typeParameters();
assertEquals("Wrong size", 1, typeParameters.size());
TypeParameter typeParameter = (TypeParameter) typeParameters.get(0);
checkSourceRange(typeParameter.getName(), "A", source);
checkSourceRange(typeParameter, "A extends Object & java.io.Serializable & Comparable", source);
List typeBounds = typeParameter.typeBounds();
assertEquals("Wrong size", 3, typeBounds.size());
Type typeBound = (Type) typeBounds.get(0);
checkSourceRange(typeBound, "Object", source);
typeBound = (Type) typeBounds.get(1);
checkSourceRange(typeBound, "java.io.Serializable", source);
typeBound = (Type) typeBounds.get(2);
checkSourceRange(typeBound, "Comparable", source);
}
public void test0016() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0016", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 5);
assertEquals("Wrong first character", '<', source[node.getStartPosition()]);
}
public void test0017() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0017", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 1, 0, 0);
assertTrue("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 initializer = fragment.getInitializer();
assertNotNull("No initializer", initializer);
ITypeBinding binding = initializer.resolveTypeBinding();
assertNotNull("No binding", binding);
Type type = statement.getType();
assertTrue("Not a parameterized type", type.getNodeType() == ASTNode.PARAMETERIZED_TYPE);
ParameterizedType parameterizedType = (ParameterizedType) type;
List typeArguments = parameterizedType.typeArguments();
assertEquals("wrong size", 1, typeArguments.size());
Type typeArgument = (Type) typeArguments.get(0);
checkSourceRange(typeArgument, "Integer", source);
Type innerType = parameterizedType.getType();
assertTrue("Not a qualified type", innerType.getNodeType() == ASTNode.QUALIFIED_TYPE);
QualifiedType qualifiedType = (QualifiedType) innerType;
checkSourceRange(qualifiedType.getName(), "B", source);
Type qualifier = qualifiedType.getQualifier();
checkSourceRange(qualifier, "test0017.A<String>", source);
assertTrue("Not a parameterized type", qualifier.getNodeType() == ASTNode.PARAMETERIZED_TYPE);
ParameterizedType parameterizedType2 = (ParameterizedType) qualifier;
typeArguments = parameterizedType2.typeArguments();
assertEquals("wrong size", 1, typeArguments.size());
typeArgument = (Type) typeArguments.get(0);
checkSourceRange(typeArgument, "String", source);
innerType = parameterizedType2.getType();
assertTrue("Not a simple type", innerType.getNodeType() == ASTNode.SIMPLE_TYPE);
SimpleType simpleType = (SimpleType) innerType;
checkSourceRange(simpleType, "test0017.A", source);
Name name = simpleType.getName();
assertTrue("Not a qualified name", name.getNodeType() == ASTNode.QUALIFIED_NAME);
QualifiedName qualifiedName = (QualifiedName) name;
checkSourceRange(qualifiedName.getQualifier(), "test0017", source);
checkSourceRange(qualifiedName.getName(), "A", source);
}
public void test0018() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0018", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 1, 0, 0);
assertTrue("Not a variable declaration statement", node.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT);
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
Type type = statement.getType();
assertTrue("Not a parameterized type", type.getNodeType() == ASTNode.PARAMETERIZED_TYPE);
ParameterizedType parameterizedType = (ParameterizedType) type;
List typeArguments = parameterizedType.typeArguments();
assertEquals("wrong size", 1, typeArguments.size());
Type typeArgument = (Type) typeArguments.get(0);
checkSourceRange(typeArgument, "Float", source);
Type innerType = parameterizedType.getType();
assertTrue("Not a qualified type", innerType.getNodeType() == ASTNode.QUALIFIED_TYPE);
QualifiedType qualifiedType = (QualifiedType) innerType;
checkSourceRange(qualifiedType.getName(), "C", source);
Type qualifier = qualifiedType.getQualifier();
checkSourceRange(qualifier, "test0018.A<String>.B", source);
assertTrue("Not a qualified type", qualifier.getNodeType() == ASTNode.QUALIFIED_TYPE);
qualifiedType = (QualifiedType) qualifier;
checkSourceRange(qualifiedType.getName(), "B", source);
qualifier = qualifiedType.getQualifier();
checkSourceRange(qualifier, "test0018.A<String>", source);
assertTrue("Not a parameterized type", qualifier.getNodeType() == ASTNode.PARAMETERIZED_TYPE);
ParameterizedType parameterizedType2 = (ParameterizedType) qualifier;
typeArguments = parameterizedType2.typeArguments();
assertEquals("wrong size", 1, typeArguments.size());
typeArgument = (Type) typeArguments.get(0);
checkSourceRange(typeArgument, "String", source);
innerType = parameterizedType2.getType();
assertTrue("Not a simple type", innerType.getNodeType() == ASTNode.SIMPLE_TYPE);
SimpleType simpleType = (SimpleType) innerType;
checkSourceRange(simpleType, "test0018.A", source);
Name name = simpleType.getName();
assertTrue("Not a qualified name", name.getNodeType() == ASTNode.QUALIFIED_NAME);
QualifiedName qualifiedName = (QualifiedName) name;
checkSourceRange(qualifiedName.getQualifier(), "test0018", source);
checkSourceRange(qualifiedName.getName(), "A", source);
}
public void test0019() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0019", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 1, 0, 0);
assertTrue("Not a variable declaration statement", node.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT);
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
Type type = statement.getType();
assertTrue("Not a qualified type", type.getNodeType() == ASTNode.QUALIFIED_TYPE);
QualifiedType qualifiedType = (QualifiedType) type;
checkSourceRange(qualifiedType.getName(), "C", source);
Type qualifier = qualifiedType.getQualifier();
checkSourceRange(qualifier, "test0019.A<String>.B<Integer>", source);
assertTrue("Not a parameterized type", qualifier.getNodeType() == ASTNode.PARAMETERIZED_TYPE);
ParameterizedType parameterizedType = (ParameterizedType) qualifier;
List typeArguments = parameterizedType.typeArguments();
assertEquals("wrong size", 1, typeArguments.size());
Type typeArgument = (Type) typeArguments.get(0);
checkSourceRange(typeArgument, "Integer", source);
Type innerType = parameterizedType.getType();
assertTrue("Not a qualified type", innerType.getNodeType() == ASTNode.QUALIFIED_TYPE);
qualifiedType = (QualifiedType) innerType;
checkSourceRange(qualifiedType.getName(), "B", source);
qualifier = qualifiedType.getQualifier();
checkSourceRange(qualifier, "test0019.A<String>", source);
assertTrue("Not a parameterized type", qualifier.getNodeType() == ASTNode.PARAMETERIZED_TYPE);
ParameterizedType parameterizedType2 = (ParameterizedType) qualifier;
typeArguments = parameterizedType2.typeArguments();
assertEquals("wrong size", 1, typeArguments.size());
typeArgument = (Type) typeArguments.get(0);
checkSourceRange(typeArgument, "String", source);
innerType = parameterizedType2.getType();
assertTrue("Not a simple type", innerType.getNodeType() == ASTNode.SIMPLE_TYPE);
SimpleType simpleType = (SimpleType) innerType;
checkSourceRange(simpleType, "test0019.A", source);
Name name = simpleType.getName();
assertTrue("Not a qualified name", name.getNodeType() == ASTNode.QUALIFIED_NAME);
QualifiedName qualifiedName = (QualifiedName) name;
checkSourceRange(qualifiedName.getQualifier(), "test0019", source);
checkSourceRange(qualifiedName.getName(), "A", source);
}
public void test0020() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0020", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION);
MethodDeclaration declaration = (MethodDeclaration) node;
List parameters = declaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration singleVariableDeclaration = (SingleVariableDeclaration) parameters.get(0);
Type type = singleVariableDeclaration.getType();
assertTrue("Not a parameterized type", type.getNodeType() == ASTNode.PARAMETERIZED_TYPE);
ParameterizedType parameterizedType = (ParameterizedType) type;
List typeArguments = parameterizedType.typeArguments();
assertEquals("Wrong size", 1, typeArguments.size());
Type typeArgument = (Type) typeArguments.get(0);
checkSourceRange(typeArgument, "?", source);
}
public void test0021() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0021", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION);
MethodDeclaration declaration = (MethodDeclaration) node;
List parameters = declaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration singleVariableDeclaration = (SingleVariableDeclaration) parameters.get(0);
Type type = singleVariableDeclaration.getType();
assertTrue("Not a parameterized type", type.getNodeType() == ASTNode.PARAMETERIZED_TYPE);
ParameterizedType parameterizedType = (ParameterizedType) type;
List typeArguments = parameterizedType.typeArguments();
assertEquals("Wrong size", 1, typeArguments.size());
Type typeArgument = (Type) typeArguments.get(0);
checkSourceRange(typeArgument, "? extends E", source);
assertTrue("Not a wildcard type", typeArgument.getNodeType() == ASTNode.WILDCARD_TYPE);
WildcardType wildcardType = (WildcardType) typeArgument;
Type bound = wildcardType.getBound();
checkSourceRange(bound, "E", source);
assertTrue("Not an upper bound", wildcardType.isUpperBound());
}
public void test0022() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0022", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertTrue("Not a method declaration", node.getNodeType() == ASTNode.METHOD_DECLARATION);
MethodDeclaration declaration = (MethodDeclaration) node;
List parameters = declaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration singleVariableDeclaration = (SingleVariableDeclaration) parameters.get(0);
Type type = singleVariableDeclaration.getType();
assertTrue("Not a parameterized type", type.getNodeType() == ASTNode.PARAMETERIZED_TYPE);
ParameterizedType parameterizedType = (ParameterizedType) type;
List typeArguments = parameterizedType.typeArguments();
assertEquals("Wrong size", 1, typeArguments.size());
Type typeArgument = (Type) typeArguments.get(0);
checkSourceRange(typeArgument, "? super E", source);
assertTrue("Not a wildcard type", typeArgument.getNodeType() == ASTNode.WILDCARD_TYPE);
WildcardType wildcardType = (WildcardType) typeArgument;
Type bound = wildcardType.getBound();
checkSourceRange(bound, "E", source);
assertFalse("Is an upper bound", wildcardType.isUpperBound());
}
public void test0023() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0023", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 5);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
assertEquals("Wrong name", "zip", methodDeclaration.getName().getIdentifier());
List typeParameters = methodDeclaration.typeParameters();
assertNotNull("No type parameters", typeParameters);
assertEquals("Wrong size", 1, typeParameters.size());
TypeParameter typeParameter = (TypeParameter) typeParameters.get(0);
checkSourceRange(typeParameter, "T", source);
}
public void test0024() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0024", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 1, 0);
assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
VariableDeclarationStatement declarationStatement = (VariableDeclarationStatement) node;
List fragments = declarationStatement.fragments();
assertEquals("wrong size", 1, fragments.size());
VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0);
Expression expression = fragment.getInitializer();
assertEquals("Not a class instance creation", ASTNode.CLASS_INSTANCE_CREATION, expression.getNodeType());
ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) expression;
List typeArguments = classInstanceCreation.typeArguments();
assertEquals("wrong size", 1, typeArguments.size());
Type type = (Type) typeArguments.get(0);
checkSourceRange(type, "String", source);
}
public void test0025() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0025", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
char[] source = sourceUnit.getSource().toCharArray();
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Not a constructor invocation", ASTNode.CONSTRUCTOR_INVOCATION, node.getNodeType());
ConstructorInvocation constructorInvocation = (ConstructorInvocation) node;
List typeArguments = constructorInvocation.typeArguments();
assertEquals("wrong size", 1, typeArguments.size());
Type type = (Type) typeArguments.get(0);
checkSourceRange(type, "E", source);
}
public void test0026() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0026", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
char[] source = sourceUnit.getSource().toCharArray();
ASTNode node = getASTNode(compilationUnit, 0);
assertEquals("Not an enum declaration", ASTNode.ENUM_DECLARATION, node.getNodeType());
EnumDeclaration enumDeclaration = (EnumDeclaration) node;
ITypeBinding typeBinding2 = enumDeclaration.resolveBinding();
assertNotNull("No binding", typeBinding2);
List modifiers = enumDeclaration.modifiers();
assertEquals("Wrong number of modifiers", 1, modifiers.size());
IExtendedModifier extendedModifier = (IExtendedModifier) modifiers.get(0);
assertTrue("Not a modifier", extendedModifier instanceof Modifier);
Modifier modifier = (Modifier) extendedModifier;
checkSourceRange(modifier, "public", source);
assertEquals("wrong name", "X", enumDeclaration.getName().getIdentifier());
List enumConstants = enumDeclaration.enumConstants();
assertEquals("wrong size", 4, enumConstants.size());
List bodyDeclarations = enumDeclaration.bodyDeclarations();
assertEquals("wrong size", 2, bodyDeclarations.size());
EnumConstantDeclaration enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(0);
IMethodBinding methodBinding = enumConstantDeclaration.resolveConstructorBinding();
assertNotNull("No binding", methodBinding);
assertTrue("Not a constructor", methodBinding.isConstructor());
checkSourceRange(enumConstantDeclaration.getName(), "PLUS", source);
checkSourceRange(enumConstantDeclaration, "PLUS {\n" +
" @Override\n" +
" double eval(double x, double y) { return x + y; }\n" +
" }", source);
assertEquals("wrong size", 0, enumConstantDeclaration.arguments().size());
AnonymousClassDeclaration anonymousClassDeclaration = enumConstantDeclaration.getAnonymousClassDeclaration();
assertNotNull("No anonymous class", anonymousClassDeclaration);
checkSourceRange(anonymousClassDeclaration, "{\n" +
" @Override\n" +
" double eval(double x, double y) { return x + y; }\n" +
" }", source);
ITypeBinding typeBinding = anonymousClassDeclaration.resolveBinding();
assertNotNull("No binding", typeBinding);
assertTrue("Not a enum type", typeBinding.isEnum());
bodyDeclarations = anonymousClassDeclaration.bodyDeclarations();
assertEquals("wrong size", 1, bodyDeclarations.size());
BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, bodyDeclaration.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) bodyDeclaration;
checkSourceRange(methodDeclaration.getName(), "eval", source);
checkSourceRange(methodDeclaration, "@Override\n double eval(double x, double y) { return x + y; }", source);
assertEquals("wrong size", 0, enumConstantDeclaration.arguments().size());
enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(1);
methodBinding = enumConstantDeclaration.resolveConstructorBinding();
assertNotNull("No binding", methodBinding);
assertTrue("Not a constructor", methodBinding.isConstructor());
checkSourceRange(enumConstantDeclaration.getName(), "MINUS", source);
checkSourceRange(enumConstantDeclaration, "MINUS {\n" +
" @Override\n" +
" double eval(double x, double y) { return x - y; }\n" +
" }", source);
anonymousClassDeclaration = enumConstantDeclaration.getAnonymousClassDeclaration();
typeBinding = anonymousClassDeclaration.resolveBinding();
assertNotNull("No binding", typeBinding);
assertTrue("Not a enum type", typeBinding.isEnum());
assertNotNull("No anonymous class", anonymousClassDeclaration);
checkSourceRange(anonymousClassDeclaration, "{\n" +
" @Override\n" +
" double eval(double x, double y) { return x - y; }\n" +
" }", source);
bodyDeclarations = anonymousClassDeclaration.bodyDeclarations();
assertEquals("wrong size", 1, bodyDeclarations.size());
bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, bodyDeclaration.getNodeType());
methodDeclaration = (MethodDeclaration) bodyDeclaration;
checkSourceRange(methodDeclaration.getName(), "eval", source);
checkSourceRange(methodDeclaration, "@Override\n double eval(double x, double y) { return x - y; }", source);
assertEquals("wrong size", 0, enumConstantDeclaration.arguments().size());
enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(2);
methodBinding = enumConstantDeclaration.resolveConstructorBinding();
assertNotNull("No binding", methodBinding);
assertTrue("Not a constructor", methodBinding.isConstructor());
checkSourceRange(enumConstantDeclaration.getName(), "TIMES", source);
checkSourceRange(enumConstantDeclaration, "TIMES {\n" +
" @Override\n" +
" double eval(double x, double y) { return x * y; }\n" +
" }", source);
anonymousClassDeclaration = enumConstantDeclaration.getAnonymousClassDeclaration();
assertNotNull("No anonymous class", anonymousClassDeclaration);
checkSourceRange(anonymousClassDeclaration, "{\n" +
" @Override\n" +
" double eval(double x, double y) { return x * y; }\n" +
" }", source);
typeBinding = anonymousClassDeclaration.resolveBinding();
assertNotNull("No binding", typeBinding);
assertTrue("Not a enum type", typeBinding.isEnum());
bodyDeclarations = anonymousClassDeclaration.bodyDeclarations();
assertEquals("wrong size", 1, bodyDeclarations.size());
bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, bodyDeclaration.getNodeType());
methodDeclaration = (MethodDeclaration) bodyDeclaration;
checkSourceRange(methodDeclaration.getName(), "eval", source);
checkSourceRange(methodDeclaration, "@Override\n double eval(double x, double y) { return x * y; }", source);
assertEquals("wrong size", 0, enumConstantDeclaration.arguments().size());
enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(3);
methodBinding = enumConstantDeclaration.resolveConstructorBinding();
assertNotNull("No binding", methodBinding);
assertTrue("Not a constructor", methodBinding.isConstructor());
checkSourceRange(enumConstantDeclaration.getName(), "DIVIDED_BY", source);
checkSourceRange(enumConstantDeclaration, "DIVIDED_BY {\n" +
" @Override\n" +
" double eval(double x, double y) { return x / y; }\n" +
" }", source);
anonymousClassDeclaration = enumConstantDeclaration.getAnonymousClassDeclaration();
assertNotNull("No anonymous class", anonymousClassDeclaration);
checkSourceRange(anonymousClassDeclaration, "{\n" +
" @Override\n" +
" double eval(double x, double y) { return x / y; }\n" +
" }", source);
typeBinding = anonymousClassDeclaration.resolveBinding();
assertNotNull("No binding", typeBinding);
assertTrue("Not a enum type", typeBinding.isEnum());
bodyDeclarations = anonymousClassDeclaration.bodyDeclarations();
assertEquals("wrong size", 1, bodyDeclarations.size());
bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, bodyDeclaration.getNodeType());
methodDeclaration = (MethodDeclaration) bodyDeclaration;
checkSourceRange(methodDeclaration.getName(), "eval", source);
checkSourceRange(methodDeclaration, "@Override\n double eval(double x, double y) { return x / y; }", source);
assertEquals("wrong size", 0, enumConstantDeclaration.arguments().size());
}
public void test0027() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0027", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
char[] source = sourceUnit.getSource().toCharArray();
assertEquals("Not an enum declaration", ASTNode.ENUM_DECLARATION, node.getNodeType());
EnumDeclaration enumDeclaration = (EnumDeclaration) node;
List modifiers = enumDeclaration.modifiers();
assertEquals("Wrong number of modifiers", 1, modifiers.size());
IExtendedModifier extendedModifier = (IExtendedModifier) modifiers.get(0);
assertTrue("Not a modifier", extendedModifier instanceof Modifier);
Modifier modifier = (Modifier) extendedModifier;
checkSourceRange(modifier, "public", source);
assertEquals("wrong name", "X", enumDeclaration.getName().getIdentifier());
List enumConstants = enumDeclaration.enumConstants();
assertEquals("wrong size", 4, enumConstants.size());
EnumConstantDeclaration enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(0);
IMethodBinding methodBinding = enumConstantDeclaration.resolveConstructorBinding();
assertNotNull("No binding", methodBinding);
assertTrue("Not a constructor", methodBinding.isConstructor());
checkSourceRange(enumConstantDeclaration.getName(), "PENNY", source);
checkSourceRange(enumConstantDeclaration, "PENNY(1)", source);
List arguments = enumConstantDeclaration.arguments();
assertEquals("wrong size", 1, arguments.size());
Expression argument = (Expression) arguments.get(0);
checkSourceRange(argument, "1", source);
assertEquals("not an number literal", ASTNode.NUMBER_LITERAL, argument.getNodeType());
IVariableBinding binding = enumConstantDeclaration.resolveVariable();
assertNotNull("No binding", binding);
assertEquals("Wrong name", "PENNY", binding.getName());
ASTNode node2 = compilationUnit.findDeclaringNode(binding);
assertTrue("Different node", node2 == enumConstantDeclaration);
enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(1);
methodBinding = enumConstantDeclaration.resolveConstructorBinding();
assertNotNull("No binding", methodBinding);
assertTrue("Not a constructor", methodBinding.isConstructor());
checkSourceRange(enumConstantDeclaration.getName(), "NICKEL", source);
checkSourceRange(enumConstantDeclaration, "NICKEL(5)", source);
arguments = enumConstantDeclaration.arguments();
assertEquals("wrong size", 1, arguments.size());
argument = (Expression) arguments.get(0);
checkSourceRange(argument, "5", source);
assertEquals("not an number literal", ASTNode.NUMBER_LITERAL, argument.getNodeType());
binding = enumConstantDeclaration.resolveVariable();
assertNotNull("No binding", binding);
assertEquals("Wrong name", "NICKEL", binding.getName());
enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(2);
methodBinding = enumConstantDeclaration.resolveConstructorBinding();
assertNotNull("No binding", methodBinding);
assertTrue("Not a constructor", methodBinding.isConstructor());
checkSourceRange(enumConstantDeclaration.getName(), "DIME", source);
checkSourceRange(enumConstantDeclaration, "DIME(10)", source);
arguments = enumConstantDeclaration.arguments();
assertEquals("wrong size", 1, arguments.size());
argument = (Expression) arguments.get(0);
checkSourceRange(argument, "10", source);
assertEquals("not an number literal", ASTNode.NUMBER_LITERAL, argument.getNodeType());
binding = enumConstantDeclaration.resolveVariable();
assertNotNull("No binding", binding);
assertEquals("Wrong name", "DIME", binding.getName());
enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(3);
methodBinding = enumConstantDeclaration.resolveConstructorBinding();
assertNotNull("No binding", methodBinding);
checkSourceRange(enumConstantDeclaration.getName(), "QUARTER", source);
checkSourceRange(enumConstantDeclaration, "QUARTER(25)", source);
arguments = enumConstantDeclaration.arguments();
assertEquals("wrong size", 1, arguments.size());
argument = (Expression) arguments.get(0);
checkSourceRange(argument, "25", source);
assertEquals("not an number literal", ASTNode.NUMBER_LITERAL, argument.getNodeType());
binding = enumConstantDeclaration.resolveVariable();
assertNotNull("No binding", binding);
assertEquals("Wrong name", "QUARTER", binding.getName());
}
public void test0028() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0028", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
char[] source = sourceUnit.getSource().toCharArray();
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
checkSourceRange(methodDeclaration.getName(), "foo", source);
checkSourceRange(methodDeclaration, "void foo(String[] args) {\n" +
" if (args.length < 2) {\n" +
" System.out.println(\"Usage: X <double> <double>\");\n" +
" return;\n" +
" }\n" +
" double x = Double.parseDouble(args[0]);\n" +
" double y = Double.parseDouble(args[1]);\n" +
"\n" +
" for (X op : X.values())\n" +
" System.out.println(x + \" \" + op + \" \" + y + \" = \" + op.eval(x, y));\n" +
" }", source);
node = getASTNode(compilationUnit, 0, 1);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
methodDeclaration = (MethodDeclaration) node;
checkSourceRange(methodDeclaration.getName(), "bar", source);
checkSourceRange(methodDeclaration, "abstract double bar(double x, double y);", source);
}
public void test0029() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0029", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=67790
*/
public void test0030() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0030", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Not a constructor invocation", ASTNode.CONSTRUCTOR_INVOCATION, node.getNodeType());
checkSourceRange(node, "<T>this();", source);
}
public void test0031() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0031", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
}
public void test0032() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0032", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 1);
assertEquals("Not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
List superInterfaces = typeDeclaration.superInterfaceTypes();
assertEquals("wrong size", 1, superInterfaces.size());
Type type = (Type) superInterfaces.get(0);
assertEquals("wrong type", ASTNode.PARAMETERIZED_TYPE, type.getNodeType());
ParameterizedType parameterizedType = (ParameterizedType) type;
Type type2 = parameterizedType.getType();
checkSourceRange(type2, "C", source);
}
public void test0033() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0033", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
}
public void test0034() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0034", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=70292
*/
public void test0035() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0035", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=67790
*/
public void test0036() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0036", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType());
ExpressionStatement expressionStatement = (ExpressionStatement) node;
checkSourceRange(expressionStatement, "this.<T>foo();", source);
Expression expression = expressionStatement.getExpression();
assertEquals("Not a method invocation", ASTNode.METHOD_INVOCATION, expression.getNodeType());
MethodInvocation methodInvocation = (MethodInvocation) expression;
checkSourceRange(methodInvocation, "this.<T>foo()", source);
List typeArguments = methodInvocation.typeArguments();
assertEquals("Wrong size", 1, typeArguments.size());
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=68838
*/
public void test0037() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0037", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertEquals("Not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
List typeParameters = typeDeclaration.typeParameters();
assertEquals("Wrong size", 2, typeParameters.size());
TypeParameter typeParameter = (TypeParameter) typeParameters.get(0);
IBinding binding = typeParameter.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", IBinding.TYPE, binding.getKind());
ITypeBinding typeBinding = (ITypeBinding) binding;
assertEquals("Wrong name", "T", typeBinding.getName());
assertTrue("Not a type variable", typeBinding.isTypeVariable());
assertEquals("Wrong key", "Ltest0037/X;:TT;", typeBinding.getKey());
SimpleName simpleName = typeParameter.getName();
assertEquals("Wrong name", "T", simpleName.getIdentifier());
IBinding binding2 = simpleName.resolveBinding();
assertNotNull("No binding", binding2);
assertEquals("Wrong type", IBinding.TYPE, binding2.getKind());
ITypeBinding typeBinding2 = (ITypeBinding) binding2;
assertEquals("Wrong name", "T", typeBinding2.getName());
ITypeBinding typeBinding3 = simpleName.resolveTypeBinding();
assertNotNull("No binding", typeBinding3);
assertEquals("Wrong type", IBinding.TYPE, typeBinding3.getKind());
assertEquals("Wrong name", "T", typeBinding3.getName());
typeParameter = (TypeParameter) typeParameters.get(1);
binding = typeParameter.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", IBinding.TYPE, binding.getKind());
typeBinding = (ITypeBinding) binding;
assertEquals("Wrong name", "U", typeBinding.getName());
assertTrue("Not a type variable", typeBinding.isTypeVariable());
assertEquals("Wrong key", "Ltest0037/X;:TU;", typeBinding.getKey());
simpleName = typeParameter.getName();
assertEquals("Wrong name", "U", simpleName.getIdentifier());
binding2 = simpleName.resolveBinding();
assertNotNull("No binding", binding2);
assertEquals("Wrong type", IBinding.TYPE, binding2.getKind());
typeBinding2 = (ITypeBinding) binding2;
assertEquals("Wrong name", "U", typeBinding2.getName());
typeBinding3 = simpleName.resolveTypeBinding();
assertNotNull("No binding", typeBinding3);
assertEquals("Wrong type", IBinding.TYPE, typeBinding3.getKind());
assertEquals("Wrong name", "U", typeBinding3.getName());
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=69066
*/
public void test0038() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0038", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 1, 0);
assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
Type type = statement.getType();
assertTrue("Not a parameterized type", type.isParameterizedType());
ParameterizedType parameterizedType = (ParameterizedType) type;
List typeArguments = parameterizedType.typeArguments();
assertEquals("Wrong size", 1, typeArguments.size());
Type typeArgument = (Type) typeArguments.get(0);
checkSourceRange(typeArgument, "T", source);
ITypeBinding typeBinding = typeArgument.resolveBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong name", "T", typeBinding.getName());
ITypeBinding[] typeParameters = typeBinding.getTypeParameters();
assertEquals("Wrong size", 0, typeParameters.length);
assertEquals("Wrong isArray", false, typeBinding.isArray());
assertEquals("Wrong isAnnotation", false, typeBinding.isAnnotation());
assertEquals("Wrong isAnonymous", false, typeBinding.isAnonymous());
assertEquals("Wrong isClass", false, typeBinding.isClass());
assertEquals("Wrong isEnum", false, typeBinding.isEnum());
assertEquals("Wrong isInterface", false, typeBinding.isInterface());
assertEquals("Wrong isGenericType", false, typeBinding.isGenericType());
assertEquals("Wrong isLocal", false, typeBinding.isLocal());
assertEquals("Wrong isMember", false, typeBinding.isMember());
assertEquals("Wrong isNested", false, typeBinding.isNested());
assertEquals("Wrong isNullType", false, typeBinding.isNullType());
assertEquals("Wrong isParameterizedType", false, typeBinding.isParameterizedType());
assertEquals("Wrong isPrimitive", false, typeBinding.isPrimitive());
assertEquals("Wrong isRawType", false, typeBinding.isRawType());
assertEquals("Wrong isTopLevel", false, typeBinding.isTopLevel());
assertEquals("Wrong isUpperbound", false, typeBinding.isUpperbound());
assertEquals("Wrong isTypeVariable", true, typeBinding.isTypeVariable());
assertEquals("Wrong isWildcardType", false, typeBinding.isWildcardType());
ITypeBinding typeBinding2 = type.resolveBinding();
assertEquals("Wrong name", "X", typeBinding2.getName());
assertEquals("Wrong isArray", false, typeBinding2.isArray());
assertEquals("Wrong isAnnotation", false, typeBinding2.isAnnotation());
assertEquals("Wrong isAnonymous", false, typeBinding2.isAnonymous());
assertEquals("Wrong isClass", true, typeBinding2.isClass());
assertEquals("Wrong isEnum", false, typeBinding2.isEnum());
assertEquals("Wrong isInterface", false, typeBinding2.isInterface());
assertEquals("Wrong isGenericType", true, typeBinding2.isGenericType());
assertEquals("Wrong isLocal", false, typeBinding2.isLocal());
assertEquals("Wrong isMember", false, typeBinding2.isMember());
assertEquals("Wrong isNested", false, typeBinding2.isNested());
assertEquals("Wrong isNullType", false, typeBinding2.isNullType());
assertEquals("Wrong isParameterizedType", false, typeBinding2.isParameterizedType());
assertEquals("Wrong isPrimitive", false, typeBinding2.isPrimitive());
assertEquals("Wrong isRawType", false, typeBinding2.isRawType());
assertEquals("Wrong isTopLevel", true, typeBinding2.isTopLevel());
assertEquals("Wrong isUpperbound", false, typeBinding2.isUpperbound());
assertEquals("Wrong isTypeVariable", false, typeBinding2.isTypeVariable());
assertEquals("Wrong isWildcardType", false, typeBinding2.isWildcardType());
typeParameters = typeBinding2.getTypeParameters();
assertEquals("Wrong size", 1, typeParameters.length);
assertEquals("Wrong name", "T", typeParameters[0].getName());
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=72233
*/
public void test0039() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0039", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=72248
*/
public void test0040() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0040", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List typeParameters = methodDeclaration.typeParameters();
assertEquals("wrong size", 1, typeParameters.size());
TypeParameter parameter = (TypeParameter) typeParameters.get(0);
IBinding binding = parameter.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("wrong type", IBinding.TYPE, binding.getKind());
assertEquals("wrong key", "Ltest0040/X;.foo<T:Ljava/lang/Object;>()TT;:TT;", binding.getKey());
Type returnType = methodDeclaration.getReturnType2();
IBinding binding2 = returnType.resolveBinding();
assertNotNull("No binding", binding2);
assertEquals("wrong type", IBinding.TYPE, binding2.getKind());
assertEquals("wrong key", "Ltest0040/X;.foo<T:Ljava/lang/Object;>()TT;:TT;", binding2.getKey());
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=72477
*/
public void test0041() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0041", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=73048
*/
public void test0042() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0042", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List typeParameters = methodDeclaration.typeParameters();
assertEquals("wrong size", 1, typeParameters.size());
TypeParameter parameter = (TypeParameter) typeParameters.get(0);
IBinding binding = parameter.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("wrong type", IBinding.TYPE, binding.getKind());
assertEquals("wrong key", "Ltest0042/X;.foo<T:Ljava/lang/Object;>()[TT;:TT;", binding.getKey());
Type returnType = methodDeclaration.getReturnType2();
IBinding binding2 = returnType.resolveBinding();
assertNotNull("No binding", binding2);
assertEquals("wrong type", IBinding.TYPE, binding2.getKind());
assertEquals("wrong key", "[Ltest0042/X;.foo<T:Ljava/lang/Object;>()[TT;:TT;", binding2.getKey());
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=72882
*/
public void test0043() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0043", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertEquals("Not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
List typeParameters = typeDeclaration.typeParameters();
assertEquals("Wrong size", 1, typeParameters.size());
TypeParameter typeParameter = (TypeParameter) typeParameters.get(0);
IBinding binding = typeParameter.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", IBinding.TYPE, binding.getKind());
ITypeBinding typeBinding = (ITypeBinding) binding;
assertEquals("Wrong qualified name", "T", typeBinding.getQualifiedName());
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=72891
*/
public void test0044() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0044", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List typeParameters = methodDeclaration.typeParameters();
assertEquals("wrong size", 1, typeParameters.size());
TypeParameter parameter = (TypeParameter) typeParameters.get(0);
IBinding binding = parameter.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("wrong type", IBinding.TYPE, binding.getKind());
assertEquals("wrong key", "Ltest0044/X;.foo<Z:Ljava/lang/Object;>(TZ;)V:TZ;", binding.getKey());
IMethodBinding methodBinding = methodDeclaration.resolveBinding();
assertNotNull("no binding", methodBinding);
assertEquals("Wrong isConstructor", false, methodBinding.isConstructor());
assertEquals("Wrong isDefaultConstructor", false, methodBinding.isDefaultConstructor());
assertEquals("Wrong isDeprecated", false, methodBinding.isDeprecated());
assertEquals("Wrong isGenericMethod", true, methodBinding.isGenericMethod());
assertEquals("Wrong isParameterizedMethod", false, methodBinding.isParameterizedMethod());
assertEquals("Wrong isRawMethod", false, methodBinding.isRawMethod());
assertEquals("Wrong isSynthetic", false, methodBinding.isSynthetic());
assertEquals("Wrong isVarargs", false, methodBinding.isVarargs());
ITypeBinding[] typeParametersBindings = methodBinding.getTypeParameters();
assertNotNull("No type parameters", typeParametersBindings);
assertEquals("Wrong size", 1, typeParametersBindings.length);
ITypeBinding typeBinding = typeParametersBindings[0];
assertTrue("Not a type variable", typeBinding.isTypeVariable());
assertEquals("Wrong fully qualified name", "Z", typeBinding.getQualifiedName());
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=72891
*/
public void test0045() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0045", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 1, 0, 1);
assertEquals("Not a expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType());
ExpressionStatement expressionStatement = (ExpressionStatement) node;
Expression expression = expressionStatement.getExpression();
assertEquals("Not a expression statement", ASTNode.METHOD_INVOCATION, expression.getNodeType());
MethodInvocation methodInvocation = (MethodInvocation) expression;
IMethodBinding methodBinding = methodInvocation.resolveMethodBinding();
assertTrue("Not parameterized", methodBinding.isParameterizedMethod());
ITypeBinding[] typeArguments = methodBinding.getTypeArguments();
assertNotNull("No type arguments", typeArguments);
assertEquals("Wrong size", 1, typeArguments.length);
assertEquals("Wrong qualified name", "java.lang.String", typeArguments[0].getQualifiedName());
IMethodBinding genericMethod = methodBinding.getMethodDeclaration();
assertNotNull("No generic method", genericMethod);
assertFalse("Not a parameterized method", genericMethod.isParameterizedMethod());
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=72889
*/
public void test0046() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0046", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 1);
assertEquals("Not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
Type superclassType = typeDeclaration.getSuperclassType();
ITypeBinding typeBinding = superclassType.resolveBinding();
assertNotNull("No type binding", typeBinding);
String key1 = typeBinding.getKey();
node = getASTNode(compilationUnit, 1, 0);
assertEquals("Not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType());
FieldDeclaration fieldDeclaration = (FieldDeclaration) node;
Type type = fieldDeclaration.getType();
typeBinding = type.resolveBinding();
assertNotNull("No type binding", typeBinding);
String key2 = typeBinding.getKey();
assertFalse("Same keys", key1.equals(key2));
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=72859
*/
public void test0047() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0047", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=73561
*/
public void test0048() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0048", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertEquals("Not an enum declaration", ASTNode.ENUM_DECLARATION, node.getNodeType());
EnumDeclaration enumDeclaration = (EnumDeclaration) node;
List enumConstants = enumDeclaration.enumConstants();
assertEquals("wrong size", 2, enumConstants.size());
EnumConstantDeclaration enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(0);
IMethodBinding methodBinding = enumConstantDeclaration.resolveConstructorBinding();
assertNotNull("No binding", methodBinding);
assertTrue("Not a constructor", methodBinding.isConstructor());
checkSourceRange(enumConstantDeclaration, "GREEN(0, 1)", source);
checkSourceRange(enumConstantDeclaration.getName(), "GREEN", source);
enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(1);
methodBinding = enumConstantDeclaration.resolveConstructorBinding();
assertNotNull("No binding", methodBinding);
assertTrue("Not a constructor", methodBinding.isConstructor());
checkSourceRange(enumConstantDeclaration.getName(), "RED", source);
checkSourceRange(enumConstantDeclaration, "RED()", source);
}
/**
* Test for https://bugs.eclipse.org/bugs/show_bug.cgi?id=73561
*/
public void test0049() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0049", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertEquals("Not an enum declaration", ASTNode.ENUM_DECLARATION, node.getNodeType());
EnumDeclaration enumDeclaration = (EnumDeclaration) node;
List enumConstants = enumDeclaration.enumConstants();
assertEquals("wrong size", 2, enumConstants.size());
EnumConstantDeclaration enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(0);
IMethodBinding methodBinding = enumConstantDeclaration.resolveConstructorBinding();
assertNotNull("No binding", methodBinding);
assertTrue("Not a constructor", methodBinding.isConstructor());
checkSourceRange(enumConstantDeclaration, "GREEN(0, 1)", source);
checkSourceRange(enumConstantDeclaration.getName(), "GREEN", source);
enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(1);
methodBinding = enumConstantDeclaration.resolveConstructorBinding();
assertNotNull("No binding", methodBinding);
assertTrue("Not a constructor", methodBinding.isConstructor());
checkSourceRange(enumConstantDeclaration.getName(), "RED", source);
checkSourceRange(enumConstantDeclaration, "RED", source);
}
/**
* Ellipsis
*/
public void test0050() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0050", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
final String expectedOutput = "Extended dimensions are illegal for a variable argument";
assertProblemsSize(compilationUnit, 1, expectedOutput);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List parameters = methodDeclaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration singleVariableDeclaration = (SingleVariableDeclaration) parameters.get(0);
assertTrue("Not a varargs", singleVariableDeclaration.isVarargs());
final Type type = singleVariableDeclaration.getType();
checkSourceRange(type, "String[]", source);
assertTrue("not an array type", type.isArrayType());
ArrayType arrayType = (ArrayType) type;
checkSourceRange(arrayType.getComponentType(), "String", source);
assertEquals("Wrong extra dimensions", 1, singleVariableDeclaration.getExtraDimensions());
}
/**
* Ellipsis
*/
public void test0051() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0051", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
IMethodBinding methodBinding = methodDeclaration.resolveBinding();
assertTrue("Not a varargs", methodBinding.isVarargs());
List parameters = methodDeclaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration singleVariableDeclaration = (SingleVariableDeclaration) parameters.get(0);
assertTrue("Not a varargs", singleVariableDeclaration.isVarargs());
final Type type = singleVariableDeclaration.getType();
checkSourceRange(type, "String[]", source);
assertTrue("not an array type", type.isArrayType());
ArrayType arrayType = (ArrayType) type;
checkSourceRange(arrayType.getComponentType(), "String", source);
assertEquals("Wrong extra dimensions", 0, singleVariableDeclaration.getExtraDimensions());
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=76103
*/
public void test0052() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0052", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=76100
*/
public void test0053() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0053", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertEquals("Not an annotation type declaration", ASTNode.ANNOTATION_TYPE_DECLARATION, node.getNodeType());
AnnotationTypeDeclaration annotationTypeDeclaration = (AnnotationTypeDeclaration) node;
assertNotNull("No javadoc", annotationTypeDeclaration.getJavadoc());
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=76100
*/
public void test0054() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0054", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertEquals("Not an annotation type declaration", ASTNode.ENUM_DECLARATION, node.getNodeType());
EnumDeclaration enumDeclaration = (EnumDeclaration) node;
assertNotNull("No javadoc", enumDeclaration.getJavadoc());
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=76100
*/
public void test0055() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0055", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertEquals("Not an annotation type declaration", ASTNode.ANNOTATION_TYPE_DECLARATION, node.getNodeType());
AnnotationTypeDeclaration annotationTypeDeclaration = (AnnotationTypeDeclaration) node;
assertNotNull("No javadoc", annotationTypeDeclaration.getJavadoc());
}
/**
*
*/
public void test0056() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0056", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
final String expectedOutput = "Zork1 cannot be resolved to a type";
assertProblemsSize(compilationUnit, 1, expectedOutput);
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=77175
*/
public void test0057() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0057", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertEquals("Not an enum declaration", ASTNode.ENUM_DECLARATION, node.getNodeType());
EnumDeclaration enumDeclaration = (EnumDeclaration) node;
ITypeBinding typeBinding = enumDeclaration.resolveBinding();
assertNotNull("No binding", typeBinding);
assertTrue("Not an enum type", typeBinding.isEnum());
assertTrue("Not a top level type", typeBinding.isTopLevel());
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=77249
*/
public void test0058() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0058", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, false, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertEquals("Not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
assertTrue("Not public type declaration", Modifier.isPublic(typeDeclaration.getModifiers()));
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=77772
*/
public void test0059() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0059", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
}
/*
* Ensures that the type parameters of a method are included in its binding key.
* (regression test for 73970 [1.5][dom] overloaded parameterized methods have same method binding key)
*/
public void test0060() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
ASTNode node = buildAST(
"package p;\n" +
"/*start*/public class X {\n" +
" <T> void foo(T t) {\n" +
" }\n" +
" <T extends X> void foo(T t) {\n" +
" }\n" +
" <T extends Class> void foo(T t) {\n" +
" }\n" +
" <T extends Exception & Runnable> void foo(T t) {\n" +
" }\n" +
"}/*end*/",
this.workingCopy);
MethodDeclaration[] methods = ((TypeDeclaration) node).getMethods();
int length = methods.length;
String[] keys = new String[length];
for (int i = 0; i < length; i++)
keys[i] = methods[i].resolveBinding().getKey();
assertBindingKeysEqual(
"Lp/X;.foo<T:Ljava/lang/Object;>(TT;)V\n" +
"Lp/X;.foo<T:Lp/X;>(TT;)V\n" +
"Lp/X;.foo<T:Ljava/lang/Class;>(TT;)V\n" +
"Lp/X;.foo<T:Ljava/lang/Exception;:Ljava/lang/Runnable;>(TT;)V",
keys);
}
/*
* Ensures that the type parameters of a generic type are included in its binding key.
* (regression test for 77808 [1.5][dom] type bindings for raw List and List<E> have same key)
*/
public void test0061() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
ASTNode node = buildAST(
"package p;\n" +
"/*start*/public class X<T> {\n" +
"}/*end*/",
this.workingCopy);
IBinding binding = ((TypeDeclaration) node).resolveBinding();
assertBindingKeyEquals(
"Lp/X<TT;>;",
binding.getKey());
}
/*
* Ensures that the type arguments of a parameterized type are included in its binding key.
*/
public void test0062() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
ASTNode node = buildAST(
"package p;\n" +
"public class X<T> {\n" +
" /*start*/X<Class>/*end*/ f;\n" +
"}",
this.workingCopy);
IBinding binding = ((Type) node).resolveBinding();
assertBindingKeyEquals(
"Lp/X<Ljava/lang/Class<>;>;",
binding.getKey());
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=78183
*/
public void test0063() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0063", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertEquals("Wrong node", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
ITypeBinding typeBinding = typeDeclaration.resolveBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong qualified name", "test0063.X", typeBinding.getQualifiedName());
node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Wrong node", ASTNode.RETURN_STATEMENT, node.getNodeType());
ReturnStatement returnStatement = (ReturnStatement) node;
Expression expression = returnStatement.getExpression();
typeBinding = expression.resolveTypeBinding();
assertTrue("Not parameterized", typeBinding.isParameterizedType());
assertEquals("Wrong qualified name", "test0063.X<java.lang.String>", typeBinding.getQualifiedName());
node = getASTNode(compilationUnit, 0, 1);
assertEquals("Wrong node", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List parameters = methodDeclaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration declaration = (SingleVariableDeclaration) parameters.get(0);
Type type = declaration.getType();
typeBinding = type.resolveBinding();
assertEquals("Wrong qualified name", "java.util.List<? extends test0063.X>", typeBinding.getQualifiedName());
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=78183
*/
public void test0064() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0064", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertEquals("Wrong node", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
ITypeBinding typeBinding = typeDeclaration.resolveBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong qualified name", "test0064.X", typeBinding.getQualifiedName());
node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Wrong node", ASTNode.RETURN_STATEMENT, node.getNodeType());
ReturnStatement returnStatement = (ReturnStatement) node;
Expression expression = returnStatement.getExpression();
typeBinding = expression.resolveTypeBinding();
assertTrue("Not parameterized", typeBinding.isParameterizedType());
assertEquals("Wrong qualified name", "test0064.X<java.lang.String,java.lang.Integer>", typeBinding.getQualifiedName());
node = getASTNode(compilationUnit, 0, 1);
assertEquals("Wrong node", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List parameters = methodDeclaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration declaration = (SingleVariableDeclaration) parameters.get(0);
Type type = declaration.getType();
typeBinding = type.resolveBinding();
assertEquals("Wrong qualified name", "java.util.List<? extends test0064.X>", typeBinding.getQualifiedName());
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=78183
*/
public void test0065() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0065", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertEquals("Wrong node", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
ITypeBinding typeBinding = typeDeclaration.resolveBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong qualified name", "test0065.X", typeBinding.getQualifiedName());
ITypeBinding genericType = typeBinding.getTypeDeclaration();
assertEquals("Wrong qualified name", "test0065.X", genericType.getQualifiedName());
node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Wrong node", ASTNode.RETURN_STATEMENT, node.getNodeType());
ReturnStatement returnStatement = (ReturnStatement) node;
Expression expression = returnStatement.getExpression();
typeBinding = expression.resolveTypeBinding();
assertTrue("Not parameterized", typeBinding.isParameterizedType());
assertEquals("Wrong qualified name", "test0065.X<java.lang.String,java.util.List>", typeBinding.getQualifiedName());
node = getASTNode(compilationUnit, 0, 1);
assertEquals("Wrong node", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List parameters = methodDeclaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration declaration = (SingleVariableDeclaration) parameters.get(0);
Type type = declaration.getType();
typeBinding = type.resolveBinding();
assertEquals("Wrong qualified name", "java.util.List<? extends test0065.X>", typeBinding.getQualifiedName());
}
/*
* Ensures that a raw type doesn't include the type parameters in its binding key.
* (regression test for 77808 [1.5][dom] type bindings for raw List and List<E> have same key)
*/
public void test0066() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
ASTNode node = buildAST(
"package p;\n" +
"public class X<T> {\n" +
" /*start*/X/*end*/ field;" +
"}",
this.workingCopy);
IBinding binding = ((Type) node).resolveBinding();
assertBindingKeyEquals(
"Lp/X<>;",
binding.getKey());
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=78649
*/
public void test0067() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0067", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Wrong node", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List parameters = methodDeclaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration singleVariableDeclaration = (SingleVariableDeclaration) parameters.get(0);
Type type = singleVariableDeclaration.getType();
assertTrue("Not a parameterized type", type.isParameterizedType());
ParameterizedType parameterizedType = (ParameterizedType) type;
List typeArguments = parameterizedType.typeArguments();
assertEquals("Wrong size", 1, typeArguments.size());
Type type2 = (Type) typeArguments.get(0);
assertTrue("Not a wildcard type", type2.isWildcardType());
WildcardType wildcardType = (WildcardType) type2;
assertTrue("Not an upperbound type", wildcardType.isUpperBound());
ITypeBinding typeBinding = wildcardType.resolveBinding();
assertTrue("Not an upperbound type binding", typeBinding.isUpperbound());
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=78649
*/
public void test0068() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0068", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Wrong node", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List parameters = methodDeclaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration singleVariableDeclaration = (SingleVariableDeclaration) parameters.get(0);
Type type = singleVariableDeclaration.getType();
assertTrue("Not a parameterized type", type.isParameterizedType());
ParameterizedType parameterizedType = (ParameterizedType) type;
List typeArguments = parameterizedType.typeArguments();
assertEquals("Wrong size", 1, typeArguments.size());
Type type2 = (Type) typeArguments.get(0);
assertTrue("Not a wildcard type", type2.isWildcardType());
WildcardType wildcardType = (WildcardType) type2;
assertFalse("An upperbound type", wildcardType.isUpperBound());
ITypeBinding typeBinding = wildcardType.resolveBinding();
assertFalse("An upperbound type binding", typeBinding.isUpperbound());
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=78934
*/
public void test0069() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0069", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 1, 0, 0);
assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
Type type = statement.getType();
assertTrue("Not a parameterized type", type.isParameterizedType());
ParameterizedType parameterizedType = (ParameterizedType) type;
assertNotNull("No binding", parameterizedType.resolveBinding());
Type type2 = parameterizedType.getType();
assertTrue("Not a qualified type", type2.isQualifiedType());
QualifiedType qualifiedType = (QualifiedType) type2;
ITypeBinding typeBinding = qualifiedType.resolveBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong name 1", "test0069.Outer<java.lang.String>.Inner<java.lang.Integer>", typeBinding.getQualifiedName());
SimpleName simpleName = qualifiedType.getName();
IBinding binding = simpleName.resolveBinding();
assertNotNull("No binding", simpleName.resolveBinding());
assertEquals("Wrong name 2", "test0069.Outer<java.lang.String>.Inner<java.lang.Integer>", typeBinding.getQualifiedName());
Type type3 = qualifiedType.getQualifier();
assertTrue("Not a parameterized type", type3.isParameterizedType());
ParameterizedType parameterizedType2 = (ParameterizedType) type3;
typeBinding = parameterizedType2.resolveBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong name 3", "test0069.Outer<java.lang.String>", typeBinding.getQualifiedName());
Type type4 = parameterizedType2.getType();
assertTrue("Not a simple type", type4.isSimpleType());
SimpleType simpleType = (SimpleType) type4;
assertNotNull("No binding", simpleType.resolveBinding());
Name name = simpleType.getName();
assertTrue("Not a qualified name", name.isQualifiedName());
QualifiedName qualifiedName = (QualifiedName) name;
assertNotNull("No binding", qualifiedName.resolveBinding());
Name name2 = qualifiedName.getQualifier();
assertTrue("Not a simpleName", name2.isSimpleName());
SimpleName simpleName2 = (SimpleName) name2;
binding = simpleName2.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("wrong type", IBinding.PACKAGE, binding.getKind());
SimpleName simpleName3 = qualifiedName.getName();
assertNotNull("No binding", simpleName3.resolveBinding());
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=78934
*/
public void test0070() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0070", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 1, 0, 0);
assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
Type type = statement.getType();
assertTrue("Not a parameterized type", type.isParameterizedType());
ParameterizedType parameterizedType = (ParameterizedType) type;
assertNotNull("No binding", parameterizedType.resolveBinding());
Type type2 = parameterizedType.getType();
assertTrue("Not a qualified type", type2.isQualifiedType());
QualifiedType qualifiedType = (QualifiedType) type2;
ITypeBinding typeBinding = qualifiedType.resolveBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong name 1", "test0070.Outer<java.lang.String>.Inner<java.lang.Number>", typeBinding.getQualifiedName());
SimpleName simpleName = qualifiedType.getName();
typeBinding = simpleName.resolveTypeBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong name 2", "test0070.Outer<java.lang.String>.Inner<java.lang.Number>", typeBinding.getQualifiedName());
Type type3 = qualifiedType.getQualifier();
assertTrue("Not a parameterized type", type3.isParameterizedType());
ParameterizedType parameterizedType2 = (ParameterizedType) type3;
typeBinding = parameterizedType2.resolveBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong name 3", "test0070.Outer<java.lang.String>", typeBinding.getQualifiedName());
Type type4 = parameterizedType2.getType();
assertTrue("Not a simple type", type4.isSimpleType());
SimpleType simpleType = (SimpleType) type4;
typeBinding = simpleType.resolveBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong name 3", "test0070.Outer<java.lang.String>", typeBinding.getQualifiedName());
Name name = simpleType.getName();
assertTrue("Not a simpleName", name.isSimpleName());
SimpleName simpleName2 = (SimpleName) name;
typeBinding = simpleName2.resolveTypeBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong name 3", "test0070.Outer", typeBinding.getQualifiedName());
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=78930
*/
public void test0071() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0071", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List typeParameters = methodDeclaration.typeParameters();
assertEquals("wrong size", 1, typeParameters.size());
IMethodBinding methodBinding = methodDeclaration.resolveBinding();
ITypeBinding[] typeBindings = methodBinding.getTypeParameters();
assertEquals("wrong size", 1, typeBindings.length);
ITypeBinding typeBinding = typeBindings[0];
IJavaElement javaElement = typeBinding.getJavaElement();
assertNotNull("No java element", javaElement);
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=77645
*/
public void test0072() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15", "src", "test0072", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runConversion(AST.JLS3, 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() {
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.SingleVariableDeclaration)
*/
public boolean visit(SingleVariableDeclaration node) {
IVariableBinding binding = node.resolveBinding();
assertNotNull("No method", binding.getDeclaringMethod());
return false;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.VariableDeclarationFragment)
*/
public boolean visit(VariableDeclarationFragment node) {
IVariableBinding binding = node.resolveBinding();
ASTNode parent = node.getParent();
if (parent != null && binding != null) {
final IMethodBinding declaringMethod = binding.getDeclaringMethod();
final String variableBindingName = binding.getName();
switch(parent.getNodeType()) {
case ASTNode.FIELD_DECLARATION :
assertNull("Got a method", declaringMethod);
break;
default :
if (variableBindingName.equals("var1")
|| variableBindingName.equals("var2")) {
assertNull("Got a method", declaringMethod);
} else {
assertNotNull("No method", declaringMethod);
String methodName = declaringMethod.getName();
if (variableBindingName.equals("var4")) {
assertEquals("Wrong method", "foo", methodName);
} else if (variableBindingName.equals("var5")) {
assertEquals("Wrong method", "foo2", methodName);
} else if (variableBindingName.equals("var7")) {
assertEquals("Wrong method", "foo3", methodName);
} else if (variableBindingName.equals("var8")) {
assertEquals("Wrong method", "X", methodName);
} else if (variableBindingName.equals("var9")) {
assertEquals("Wrong method", "bar3", methodName);
} else if (variableBindingName.equals("var10")) {
assertEquals("Wrong method", "bar3", methodName);
} else if (variableBindingName.equals("var11")) {
assertEquals("Wrong method", "bar3", methodName);
} else if (variableBindingName.equals("var12")) {
assertEquals("Wrong method", "X", methodName);
}
}
}
}
return false;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.FieldAccess)
*/
public boolean visit(FieldAccess node) {
IVariableBinding binding = node.resolveFieldBinding();
assertNull("No method", binding.getDeclaringMethod());
return false;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#endVisit(org.eclipse.jdt.core.dom.SuperFieldAccess)
*/
public boolean visit(SuperFieldAccess node) {
IVariableBinding binding = node.resolveFieldBinding();
assertNull("No method", binding.getDeclaringMethod());
return false;
}
});
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=77806
*/
public void test0073() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0073", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
Type type = methodDeclaration.getReturnType2();
assertTrue("Not a parameterized type", type.isParameterizedType());
assertNotNull("No binding", type.resolveBinding());
ParameterizedType parameterizedType = (ParameterizedType) type;
ITypeBinding binding = parameterizedType.resolveBinding();
assertNotNull("No binding", binding);
Type type2 = parameterizedType.getType();
assertTrue("Not a simple type", type2.isSimpleType());
ITypeBinding binding2 = type2.resolveBinding();
assertNotNull("No binding", binding2);
SimpleType simpleType = (SimpleType) type2;
Name name = simpleType.getName();
assertTrue("Not a simpleName", name.isSimpleName());
SimpleName simpleName = (SimpleName) name;
ITypeBinding binding3 = simpleName.resolveTypeBinding();
assertNotNull("No binding", binding3);
assertTrue("Different binding", binding3.isEqualTo(binding));
assertTrue("Different binding", binding2.isEqualTo(binding));
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=78934
*/
public void test0074() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0074", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
Type type = methodDeclaration.getReturnType2();
assertTrue("Not a parameterized type", type.isParameterizedType());
assertNotNull("No binding", type.resolveBinding());
ParameterizedType parameterizedType = (ParameterizedType) type;
Type type2 = parameterizedType.getType();
assertTrue("Not a simple type", type2.isSimpleType());
final ITypeBinding binding = type2.resolveBinding();
assertNotNull("No binding", binding);
SimpleType simpleType = (SimpleType) type2;
Name name = simpleType.getName();
assertTrue("Not a qualified name", name.isQualifiedName());
QualifiedName qualifiedName = (QualifiedName) name;
SimpleName simpleName = qualifiedName.getName();
ITypeBinding binding2 = simpleName.resolveTypeBinding();
assertNotNull("No binding", binding2);
assertTrue("Different binding", binding2.isEqualTo(binding));
assertEquals("wrong name", "java.util.List<java.lang.String>", binding2.getQualifiedName());
Name name2 = qualifiedName.getQualifier();
assertTrue("Not a qualified name", name2.isQualifiedName());
QualifiedName qualifiedName2 = (QualifiedName) name2;
IBinding binding3 = qualifiedName2.resolveBinding();
assertNotNull("No binding", binding3);
assertEquals("wrong kind", IBinding.PACKAGE, binding3.getKind());
assertEquals("wrong name2", "java.util", binding3.getName());
simpleName = qualifiedName2.getName();
binding3 = simpleName.resolveBinding();
assertNotNull("No binding", binding3);
assertEquals("wrong kind", IBinding.PACKAGE, binding3.getKind());
assertEquals("wrong name2", "java.util", binding3.getName());
name2 = qualifiedName2.getQualifier();
assertTrue("Not a simple name", name2.isSimpleName());
simpleName = (SimpleName) name2;
binding3 = simpleName.resolveBinding();
assertNotNull("No binding", binding3);
assertEquals("wrong kind", IBinding.PACKAGE, binding3.getKind());
assertEquals("wrong name2", "java", binding3.getName());
}
/*
* http://bugs.eclipse.org/bugs/show_bug.cgi?id=79271
*/
public void test0075() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
ASTNode node = buildAST(
"package p;\n" +
"import java.util.ArrayList;\n" +
"public class X {\n" +
" /*start*/ArrayList<Integer>/*end*/ field;" +
"}",
this.workingCopy);
ITypeBinding binding = ((Type) node).resolveBinding();
ITypeBinding genericType = binding.getTypeDeclaration();
assertFalse("Equals", binding.isEqualTo(genericType));
}
/*
* http://bugs.eclipse.org/bugs/show_bug.cgi?id=79362
*/
public void test0076() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0076", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
String expectedOutput = "Type mismatch: cannot convert from Map[] to Map<String,Double>[][]";
assertProblemsSize(compilationUnit, 1, expectedOutput);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Wrong type", ASTNode.FIELD_DECLARATION, node.getNodeType());
FieldDeclaration fieldDeclaration = (FieldDeclaration) node;
Type type = fieldDeclaration.getType();
checkSourceRange(type, "Map<String, Double>[][]", source);
assertEquals("wrong type", ASTNode.ARRAY_TYPE, type.getNodeType());
ArrayType arrayType = (ArrayType) type;
type = arrayType.getComponentType();
checkSourceRange(type, "Map<String, Double>[]", source);
assertEquals("wrong type", ASTNode.ARRAY_TYPE, type.getNodeType());
arrayType = (ArrayType) type;
type = arrayType.getComponentType();
checkSourceRange(type, "Map<String, Double>", source);
}
/*
* http://bugs.eclipse.org/bugs/show_bug.cgi?id=79362
*/
public void test0077() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0077", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
char[] source = sourceUnit.getSource().toCharArray();
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
String expectedOutput = "Type mismatch: cannot convert from Map[] to Map<String,Double>[][]";
assertProblemsSize(compilationUnit, 1, expectedOutput);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Wrong type", ASTNode.FIELD_DECLARATION, node.getNodeType());
FieldDeclaration fieldDeclaration = (FieldDeclaration) node;
Type type = fieldDeclaration.getType();
checkSourceRange(type, "java.util.Map<String, Double>[][]", source);
assertEquals("wrong type", ASTNode.ARRAY_TYPE, type.getNodeType());
ArrayType arrayType = (ArrayType) type;
type = arrayType.getComponentType();
checkSourceRange(type, "java.util.Map<String, Double>[]", source);
assertEquals("wrong type", ASTNode.ARRAY_TYPE, type.getNodeType());
arrayType = (ArrayType) type;
type = arrayType.getComponentType();
checkSourceRange(type, "java.util.Map<String, Double>", source);
}
/*
* http://bugs.eclipse.org/bugs/show_bug.cgi?id=79460
*/
public void test0078() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
ASTNode node = buildAST(
"package p;\n" +
"public class X<T> {\n" +
" String foo(int i) { return /*start*/Integer.toString(i)/*end*/;}" +
"}",
this.workingCopy);
IMethodBinding methodBinding = ((MethodInvocation) node).resolveMethodBinding();
assertFalse("Is a raw method", methodBinding.isRawMethod());
assertFalse("Is a parameterized method", methodBinding.isParameterizedMethod());
assertFalse("Is a generic method", methodBinding.isGenericMethod());
}
/*
* http://bugs.eclipse.org/bugs/show_bug.cgi?id=79460
*/
public void test0079() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
ASTNode node = buildAST(
"package p;\n" +
"public class X {\n" +
" \n" +
" /*start*/<T extends A> T foo(T t) {\n" +
" return t;\n" +
" }/*end*/\n" +
" public static void main(String[] args) {\n" +
" new X().bar();\n" +
" }\n" +
" void bar() {\n" +
" B b = foo(new B());\n" +
" }\n" +
"}\n" +
"\n" +
"class A {}\n" +
"class B extends A {}\n",
this.workingCopy);
IMethodBinding methodBinding = ((MethodDeclaration) node).resolveBinding();
assertFalse("Is a raw method", methodBinding.isRawMethod());
assertFalse("Is a parameterized method", methodBinding.isParameterizedMethod());
assertTrue("Not a generic method", methodBinding.isGenericMethod());
}
/*
* http://bugs.eclipse.org/bugs/show_bug.cgi?id=79460
*/
public void test0080() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
ASTNode node = buildAST(
"package p;\n" +
"public class X {\n" +
" \n" +
" <T extends A> T foo(T t) {\n" +
" return t;\n" +
" }\n" +
" public static void main(String[] args) {\n" +
" new X().bar();\n" +
" }\n" +
" void bar() {\n" +
" B b = /*start*/foo(new B())/*end*/;\n" +
" }\n" +
"}\n" +
"\n" +
"class A {}\n" +
"class B extends A {}\n",
this.workingCopy);
IMethodBinding methodBinding = ((MethodInvocation) node).resolveMethodBinding();
assertFalse("Is a raw method", methodBinding.isRawMethod());
assertTrue("Not a parameterized method", methodBinding.isParameterizedMethod());
assertFalse("Is a generic method", methodBinding.isGenericMethod());
}
/*
* http://bugs.eclipse.org/bugs/show_bug.cgi?id=79460
*/
public void test0081() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0081", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
String expectedOutput = "Type safety: The method foo(Object) belongs to the raw type Y. References to generic type Y<T> should be parameterized";
assertProblemsSize(compilationUnit, 1, expectedOutput);
ASTNode node = getASTNode(compilationUnit, 1, 0, 0);
assertEquals("Not a method declaration", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
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 method invocation", ASTNode.METHOD_INVOCATION, expression.getNodeType());
MethodInvocation methodInvocation = (MethodInvocation) expression;
IMethodBinding methodBinding = methodInvocation.resolveMethodBinding();
assertEquals("Wrong name", "foo", methodBinding.getName());
assertTrue("Not a raw method", methodBinding.isRawMethod());
assertFalse("Is a parameterized method", methodBinding.isParameterizedMethod());
assertFalse("Is a generic method", methodBinding.isGenericMethod());
assertFalse("Doesn't override itself", methodBinding.overrides(methodBinding));
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=78183
*/
public void test0082() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0082", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertEquals("Not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
ITypeBinding typeBinding = typeDeclaration.resolveBinding();
assertEquals("Wrong name", "Gen", typeBinding.getName());
assertEquals("Wrong name", "test0082.Gen", typeBinding.getQualifiedName());
assertTrue("Not a class", typeBinding.isClass());
assertTrue("Not a generic type", typeBinding.isGenericType());
assertTrue("Not a top level", typeBinding.isTopLevel());
node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a member type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType());
typeDeclaration = (TypeDeclaration) node;
typeBinding = typeDeclaration.resolveBinding();
assertEquals("Wrong name", "Inn", typeBinding.getName());
assertEquals("Wrong name", "test0082.Gen.Inn", typeBinding.getQualifiedName());
assertTrue("Not a class", typeBinding.isClass());
assertTrue("Not a member", typeBinding.isMember());
assertTrue("Not a nested class", typeBinding.isNested());
node = getASTNode(compilationUnit, 0, 1);
assertEquals("Not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType());
FieldDeclaration fieldDeclaration = (FieldDeclaration) node;
typeBinding = fieldDeclaration.getType().resolveBinding();
assertEquals("Wrong name", "Gen<String>", typeBinding.getName());
assertEquals("Wrong name", "test0082.Gen<java.lang.String>", typeBinding.getQualifiedName());
assertTrue("Not a class", typeBinding.isClass());
assertTrue("Not a parameterized type", typeBinding.isParameterizedType());
assertTrue("Not a toplevel", typeBinding.isTopLevel());
node = getASTNode(compilationUnit, 0, 2);
assertEquals("Not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType());
fieldDeclaration = (FieldDeclaration) node;
typeBinding = fieldDeclaration.getType().resolveBinding();
assertEquals("Wrong name", "Inn", typeBinding.getName());
assertEquals("Wrong name", "test0082.Gen<java.lang.String>.Inn", typeBinding.getQualifiedName());
assertTrue("Not a class", typeBinding.isClass());
assertTrue("Not a member", typeBinding.isMember());
assertTrue("Not a nested class", typeBinding.isNested());
assertFalse("Is parameterized", typeBinding.isParameterizedType());
node = getASTNode(compilationUnit, 0, 3);
assertEquals("Not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType());
fieldDeclaration = (FieldDeclaration) node;
typeBinding = fieldDeclaration.getType().resolveBinding();
assertEquals("Wrong name", "Gen", typeBinding.getName());
assertEquals("Wrong name", "test0082.Gen", typeBinding.getQualifiedName());
assertTrue("Not a class", typeBinding.isClass());
assertTrue("Not a raw type", typeBinding.isRawType());
assertTrue("Not a toplevel", typeBinding.isTopLevel());
node = getASTNode(compilationUnit, 0, 4);
assertEquals("Not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType());
fieldDeclaration = (FieldDeclaration) node;
typeBinding = fieldDeclaration.getType().resolveBinding();
assertEquals("Wrong name", "Inn", typeBinding.getName());
assertEquals("Wrong name", "test0082.Gen.Inn", typeBinding.getQualifiedName());
assertTrue("Not a class", typeBinding.isClass());
assertTrue("Not a member", typeBinding.isMember());
assertTrue("Not a nested type", typeBinding.isNested());
assertFalse("Is parameterized", typeBinding.isParameterizedType());
}
/*
* http://bugs.eclipse.org/bugs/show_bug.cgi?id=79544
*/
public void test0083() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0083", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType());
FieldDeclaration fieldDeclaration = (FieldDeclaration) node;
ITypeBinding typeBinding = fieldDeclaration.getType().resolveBinding();
node = getASTNode(compilationUnit, 0, 1);
assertEquals("Not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType());
fieldDeclaration = (FieldDeclaration) node;
ITypeBinding typeBinding2 = fieldDeclaration.getType().resolveBinding();
node = getASTNode(compilationUnit, 0, 2);
assertEquals("Not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType());
fieldDeclaration = (FieldDeclaration) node;
ITypeBinding typeBinding3 = fieldDeclaration.getType().resolveBinding();
node = getASTNode(compilationUnit, 0, 3);
assertEquals("Not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType());
fieldDeclaration = (FieldDeclaration) node;
ITypeBinding typeBinding4 = fieldDeclaration.getType().resolveBinding();
assertFalse("Binding are equals", typeBinding.isEqualTo(typeBinding2));
assertFalse("Binding are equals", typeBinding.isEqualTo(typeBinding3));
assertFalse("Binding are equals", typeBinding.isEqualTo(typeBinding4));
assertFalse("Binding are equals", typeBinding2.isEqualTo(typeBinding3));
assertFalse("Binding are equals", typeBinding2.isEqualTo(typeBinding4));
assertFalse("Binding are equals", typeBinding3.isEqualTo(typeBinding4));
}
/*
* http://bugs.eclipse.org/bugs/show_bug.cgi?id=79612
*/
public void test0084() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0084", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType());
FieldDeclaration fieldDeclaration = (FieldDeclaration) node;
ITypeBinding typeBinding = fieldDeclaration.getType().resolveBinding();
node = getASTNode(compilationUnit, 0, 1);
assertEquals("Not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType());
fieldDeclaration = (FieldDeclaration) node;
ITypeBinding typeBinding2 = fieldDeclaration.getType().resolveBinding();
assertFalse("Binding are equals", typeBinding.isEqualTo(typeBinding2));
}
/*
* http://bugs.eclipse.org/bugs/show_bug.cgi?id=79609
*/
public void test0085() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0085", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List typeParameters = methodDeclaration.typeParameters();
assertEquals("wrong size", 1, typeParameters.size());
TypeParameter typeParameter = (TypeParameter) typeParameters.get(0);
IBinding binding = typeParameter.resolveBinding();
assertEquals("wrong type", IBinding.TYPE, binding.getKind());
ITypeBinding typeBinding = (ITypeBinding) binding;
node = getASTNode(compilationUnit, 0, 1);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
methodDeclaration = (MethodDeclaration) node;
typeParameters = methodDeclaration.typeParameters();
assertEquals("wrong size", 1, typeParameters.size());
typeParameter = (TypeParameter) typeParameters.get(0);
binding = typeParameter.resolveBinding();
assertEquals("wrong type", IBinding.TYPE, binding.getKind());
ITypeBinding typeBinding2 = (ITypeBinding) binding;
assertFalse("Binding are equals", typeBinding.isEqualTo(typeBinding2));
}
/*
* http://bugs.eclipse.org/bugs/show_bug.cgi?id=79512
*/
public void test0086() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
ASTNode node = buildAST(
"package p;\n" +
"public class X {\n" +
" \n" +
"public Object foo() {\n" +
" return /*start*/X.class/*end*/;\n" +
" }" +
"}\n" +
"\n" +
"class A {}\n" +
"class B extends A {}\n",
this.workingCopy);
TypeLiteral typeLiteral = (TypeLiteral) node;
ITypeBinding typeBinding = typeLiteral.resolveTypeBinding();
assertEquals("Wrong name", "java.lang.Class<p.X>", typeBinding.getQualifiedName());
assertEquals("Wrong name", "Class<X>", typeBinding.getName());
}
/*
* http://bugs.eclipse.org/bugs/show_bug.cgi?id=79775
*/
public void test0087() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
buildAST(
"package p;\n" +
"public class X<T1> {\n" +
" public <M1> X() {\n" +
" }\n" +
" class Y<T2> {\n" +
" public <M2> Y() {\n" +
" }\n" +
" }\n" +
" void foo() {\n" +
" new <Object>X<Object>().new <Object>Y<Object>();\n" +
" }\n" +
"}\n",
this.workingCopy);
}
/*
* http://bugs.eclipse.org/bugs/show_bug.cgi?id=79690
*/
public void test0088() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0088", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Wrong type", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
Type type = statement.getType();
ITypeBinding typeBinding = type.resolveBinding();
assertEquals("Wrong name", "E", typeBinding.getName());
assertTrue("Not a type variable", typeBinding.isTypeVariable());
ASTNode node2 = compilationUnit.findDeclaringNode(typeBinding);
assertNotNull("No declaring node", node2);
ASTNode node3 = compilationUnit.findDeclaringNode(typeBinding.getKey());
assertNotNull("No declaring node", node3);
assertTrue("Nodes don't match", node2.subtreeMatch(new ASTMatcher(), node3));
node = getASTNode(compilationUnit, 0, 0);
assertEquals("Wrong type", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List typeParameters = methodDeclaration.typeParameters();
assertEquals("Wrong size", 1, typeParameters.size());
TypeParameter typeParameter = (TypeParameter) typeParameters.get(0);
assertTrue("Nodes don't match", typeParameter.subtreeMatch(new ASTMatcher(), node3));
assertTrue("Nodes don't match", typeParameter.subtreeMatch(new ASTMatcher(), node2));
}
/*
* Ensures that a parameterized method binding (with a wildcard parameter) doesn't throw a NPE when computing its binding key.
* (regression test for 79967 NPE in WildcardBinding.signature with Mark Occurrences in Collections.class)
*/
public void test0089() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
ASTNode node = buildAST(
"package p;\n" +
"public class X<T> {\n" +
" void foo() {\n" +
" }\n" +
" void bar(X<?> x) {\n" +
" /*start*/x.foo()/*end*/;\n"+
" }\n" +
"}",
this.workingCopy);
IBinding binding = ((MethodInvocation) node).resolveMethodBinding();
assertBindingKeyEquals(
"Lp/X<!Lp/X;*75;>;.foo()V",
binding.getKey());
}
/*
* http://bugs.eclipse.org/bugs/show_bug.cgi?id=80021
*/
public void test0090() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
ASTNode result = buildAST(
"package p;\n" +
"public class X {\n" +
" public void foo() {}\n" +
" public void bar(X x, int f) {\n" +
" x.foo();\n" +
" }\n" +
"}",
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, result.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
compilationUnit.accept(new ASTVisitor() {
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.SingleVariableDeclaration)
*/
public boolean visit(SingleVariableDeclaration node) {
IVariableBinding binding = node.resolveBinding();
assertNotNull("No binding", binding);
IJavaElement javaElement = binding.getJavaElement();
assertNotNull("No java element", javaElement);
return false;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.VariableDeclarationFragment)
*/
public boolean visit(VariableDeclarationFragment node) {
IVariableBinding binding = node.resolveBinding();
assertNotNull("No binding", binding);
IJavaElement javaElement = binding.getJavaElement();
assertNotNull("No java element", javaElement);
return false;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.FieldAccess)
*/
public boolean visit(FieldAccess node) {
IVariableBinding binding = node.resolveFieldBinding();
assertNotNull("No binding", binding);
IJavaElement javaElement = binding.getJavaElement();
assertNotNull("No java element", javaElement);
return false;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#endVisit(org.eclipse.jdt.core.dom.SuperFieldAccess)
*/
public boolean visit(SuperFieldAccess node) {
IVariableBinding binding = node.resolveFieldBinding();
assertNotNull("No binding", binding);
IJavaElement javaElement = binding.getJavaElement();
assertNotNull("No java element", javaElement);
return false;
}
});
}
/*
* Check bindings for annotation type declaration
*/
public void test0091() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
ASTNode node = buildAST(
"package p;\n" +
"@interface X {\n" +
" int id() default 0;\n" +
"}",
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
node = getASTNode(compilationUnit, 0);
assertEquals("Not an annotation type declaration", ASTNode.ANNOTATION_TYPE_DECLARATION, node.getNodeType());
AnnotationTypeDeclaration annotationTypeDeclaration = (AnnotationTypeDeclaration) node;
ITypeBinding binding = annotationTypeDeclaration.resolveBinding();
assertNotNull("No binding", binding);
assertTrue("Not an annotation", binding.isAnnotation());
assertEquals("Wrong name", "X", binding.getName());
node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not an annotation type member declaration", ASTNode.ANNOTATION_TYPE_MEMBER_DECLARATION, node.getNodeType());
AnnotationTypeMemberDeclaration memberDeclaration = (AnnotationTypeMemberDeclaration) node;
IMethodBinding methodBinding = memberDeclaration.resolveBinding();
assertNotNull("No binding", methodBinding);
assertEquals("Wrong name", "id", methodBinding.getName());
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=80960
*/
public void test0092() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
ASTNode node = buildAST(
"import java.util.*;\n" +
"public class X {\n" +
" public enum Rank { DEUCE, THREE, FOUR, FIVE, SIX,\n" +
" SEVEN, EIGHT, NINE, TEN, JACK, QUEEN, KING, ACE }\n" +
"\n" +
" //public enum Suit { CLUBS, DIAMONDS, HEARTS, SPADES }\n" +
" public enum Suit{\n" +
"\n" +
" private X(int rank, int suit) { \n" +
" }\n" +
" \n" +
" private static final List<X> protoDeck = new ArrayList<X>();\n" +
" \n" +
" public static ArrayList<X> newDeck() {\n" +
" return new ArrayList<X>(protoDeck); // Return copy of prototype deck\n" +
" }\n" +
"}",
this.workingCopy,
false);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=81023
*/
public void test0093() throws JavaModelException {
String contents =
"public class Test {\n" +
" public <U> Test(U u) {\n" +
" }\n" +
"\n" +
" void bar() {\n" +
" new <String> Test(null) {};\n" +
" }\n" +
"}";
this.workingCopy = getWorkingCopy("/Converter15/src/Test.java", true/*resolve*/);
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
node = getASTNode(compilationUnit, 0, 1, 0);
assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType());
ExpressionStatement statement = (ExpressionStatement) node;
Expression expression = statement.getExpression();
checkSourceRange(expression, "new <String> Test(null) {}", contents.toCharArray());
ITypeBinding typeBinding = expression.resolveTypeBinding();
IJavaElement element = typeBinding.getJavaElement();
assertNotNull("No java element", element);
}
public void test0094() throws JavaModelException {
String contents =
"import java.lang.annotation.Target;\n" +
"import java.lang.annotation.Retention;\n" +
"\n" +
"@Retention(RetentionPolicy.SOURCE)\n" +
"@Target(ElementType.METHOD)\n" +
"@interface ThrowAwayMethod {\n" +
"\n" +
" /**\n" +
" * Comment for <code>test</code>\n" +
" */\n" +
" protected final Test test;\n" +
"\n" +
" /**\n" +
" * @param test\n" +
" */\n" +
" ThrowAwayMethod(Test test) {\n" +
" this.test= test;\n" +
" }\n" +
"}";
this.workingCopy = getWorkingCopy("/Converter15/src/ThrowAwayMethod.java", true/*resolve*/);
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
}
/*
* Ensures that resolving a generic method with a non existing parameter type doesn't throw a NPE when computing its binding key.
* (regression test for 81134 [dom] [5.0] NPE when creating AST
*/
public void test0095() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
ASTNode node = buildAST(
"public class X {\n" +
" /*start*/<T> void foo(NonExisting arg) {\n" +
" }/*end*/\n" +
"}",
this.workingCopy,
false);
IBinding binding = ((MethodDeclaration) node).resolveBinding();
assertEquals(
null,
binding);
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=82140
*/
public void test0096() throws JavaModelException {
String contents =
"public @interface An1 {\n" +
" String value();\n" +
" String item() default \"Hello\";\n" +
"\n" +
"}\n" +
"\n" +
"@An1(value=\"X\") class A {\n" +
" \n" +
"}";
this.workingCopy = getWorkingCopy("/Converter15/src/An1.java", true/*resolve*/);
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
node = getASTNode(compilationUnit, 1);
assertEquals("Not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
assertEquals("Wrong name", "A", typeDeclaration.getName().getIdentifier());
List modifiers = typeDeclaration.modifiers();
assertEquals("Wrong size", 1, modifiers.size());
IExtendedModifier modifier = (IExtendedModifier) modifiers.get(0);
assertTrue("Not an annotation", modifier instanceof Annotation);
checkSourceRange((Annotation) modifier, "@An1(value=\"X\")", contents.toCharArray());
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=82140
*/
public void test0097() throws JavaModelException {
String contents =
"@interface An1 {}\n" +
"@interface An2 {}\n" +
"@interface An3 {}\n" +
"@An2 class X {\n" +
" @An1 Object o;\n" +
" @An3 void foo() {\n" +
" \n" +
" }\n" +
"}";
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 3);
assertEquals("Not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
List modifiers = typeDeclaration.modifiers();
assertEquals("Wrong size", 1, modifiers.size());
IExtendedModifier modifier = (IExtendedModifier) modifiers.get(0);
assertTrue("Not an annotation", modifier instanceof Annotation);
checkSourceRange((Annotation) modifier, "@An2", contents.toCharArray());
node = getASTNode(compilationUnit, 3, 0);
assertEquals("Not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType());
FieldDeclaration fieldDeclaration = (FieldDeclaration) node;
modifiers = fieldDeclaration.modifiers();
assertEquals("Wrong size", 1, modifiers.size());
modifier = (IExtendedModifier) modifiers.get(0);
assertTrue("Not an annotation", modifier instanceof Annotation);
checkSourceRange((Annotation) modifier, "@An1", contents.toCharArray());
node = getASTNode(compilationUnit, 3, 1);
assertEquals("Not a field declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
modifiers = methodDeclaration.modifiers();
assertEquals("Wrong size", 1, modifiers.size());
modifier = (IExtendedModifier) modifiers.get(0);
assertTrue("Not an annotation", modifier instanceof Annotation);
checkSourceRange((Annotation) modifier, "@An3", contents.toCharArray());
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=82140
*/
public void test0098() throws JavaModelException {
String contents =
"class X {\n" +
"}";
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0);
assertEquals("Not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
List modifiers = typeDeclaration.modifiers();
assertEquals("Wrong size", 0, modifiers.size());
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=82141
*/
public void test0099() throws JavaModelException {
String contents =
"public class X {\n" +
" @Override @Annot(value=\"Hello\") public String toString() {\n" +
" return super.toString();\n" +
" }\n" +
" @Annot(\"Hello\") void bar() {\n" +
" }\n" +
" @interface Annot {\n" +
" String value();\n" +
" }\n" +
"}";
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List modifiers = methodDeclaration.modifiers();
assertEquals("Wrong size", 3, modifiers.size());
IExtendedModifier modifier = (IExtendedModifier) modifiers.get(0);
assertTrue("Wrong type", modifier instanceof Annotation);
Annotation annotation = (Annotation) modifier;
ITypeBinding binding = annotation.resolveTypeBinding();
assertNotNull("No binding", binding);
modifier = (IExtendedModifier) modifiers.get(1);
assertTrue("Wrong type", modifier instanceof Annotation);
annotation = (Annotation) modifier;
binding = annotation.resolveTypeBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", ASTNode.NORMAL_ANNOTATION, annotation.getNodeType());
NormalAnnotation normalAnnotation = (NormalAnnotation) annotation;
List values = normalAnnotation.values();
assertEquals("wrong size", 1, values.size());
MemberValuePair valuePair = (MemberValuePair) values.get(0);
SimpleName name = valuePair.getName();
IBinding binding2 = name.resolveBinding();
assertNotNull("No binding", binding2);
ITypeBinding typeBinding = name.resolveTypeBinding();
assertNotNull("No binding", typeBinding);
node = getASTNode(compilationUnit, 0, 1);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
methodDeclaration = (MethodDeclaration) node;
modifiers = methodDeclaration.modifiers();
assertEquals("Wrong size", 1, modifiers.size());
modifier = (IExtendedModifier) modifiers.get(0);
assertTrue("Wrong type", modifier instanceof Annotation);
annotation = (Annotation) modifier;
binding = annotation.resolveTypeBinding();
assertNotNull("No binding", binding);
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=82216
*/
public void test0100() throws JavaModelException {
String contents =
"public enum E {\n" +
" A, B, C;\n" +
" public static final E D = B;\n" +
" public static final String F = \"Hello\";\n" +
"}";
this.workingCopy = getWorkingCopy("/Converter15/src/E.java", true/*resolve*/);
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0);
assertEquals("Not an enum declaration", ASTNode.ENUM_DECLARATION, node.getNodeType());
EnumDeclaration enumDeclaration = (EnumDeclaration) node;
List enumConstants = enumDeclaration.enumConstants();
assertEquals("wrong size", 3, enumConstants.size());
EnumConstantDeclaration enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(0);
IMethodBinding methodBinding = enumConstantDeclaration.resolveConstructorBinding();
assertNotNull("No binding", methodBinding);
assertTrue("Not a constructor", methodBinding.isConstructor());
IVariableBinding variableBinding = enumConstantDeclaration.resolveVariable();
assertNotNull("no binding", variableBinding);
assertNull("is constant", variableBinding.getConstantValue());
assertTrue("Not an enum constant", variableBinding.isEnumConstant());
node = getASTNode(compilationUnit, 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);
assertEquals("wrong name", "D", fragment.getName().getIdentifier());
variableBinding = fragment.resolveBinding();
assertNotNull("no binding", variableBinding);
assertFalse("An enum constant", variableBinding.isEnumConstant());
node = getASTNode(compilationUnit, 0, 1);
assertEquals("Not a field declaration", ASTNode.FIELD_DECLARATION, node.getNodeType());
fieldDeclaration = (FieldDeclaration) node;
fragments = fieldDeclaration.fragments();
assertEquals("Wrong size", 1, fragments.size());
fragment = (VariableDeclarationFragment) fragments.get(0);
assertEquals("wrong name", "F", fragment.getName().getIdentifier());
variableBinding = fragment.resolveBinding();
assertNotNull("no binding", variableBinding);
assertNotNull("is constant", variableBinding.getConstantValue());
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=68823
*/
public void test0101() throws JavaModelException {
String contents =
"public class X{\n" +
" public void foo() {\n" +
" assert (true): (\"hello\");\n" +
" }\n" +
"}";
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Not an assert statement", ASTNode.ASSERT_STATEMENT, node.getNodeType());
AssertStatement assertStatement = (AssertStatement) node;
final char[] source = contents.toCharArray();
checkSourceRange(assertStatement.getExpression(), "(true)", source);
checkSourceRange(assertStatement.getMessage(), "(\"hello\")", source);
checkSourceRange(assertStatement, "assert (true): (\"hello\");", source);
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=82670
*/
public void test0102() throws JavaModelException {
String contents =
"import java.util.HashMap;\n" +
"\n" +
"public class X {\n" +
" Object o= new HashMap<?, ?>[0];\n" +
"}";
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 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);
checkSourceRange(fragment, "o= new HashMap<?, ?>[0]", contents.toCharArray());
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=82985
*/
public void test0103() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0103", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
List imports = compilationUnit.imports();
assertEquals("Wrong size", 2, imports.size());
ImportDeclaration importDeclaration = (ImportDeclaration) imports.get(0);
IBinding binding = importDeclaration.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", IBinding.VARIABLE, binding.getKind());
Name name = importDeclaration.getName();
binding = name.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", IBinding.VARIABLE, binding.getKind());
assertEquals("Not a qualified name", ASTNode.QUALIFIED_NAME, name.getNodeType());
QualifiedName qualifiedName = (QualifiedName) name;
SimpleName simpleName = qualifiedName.getName();
binding = simpleName.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", IBinding.VARIABLE, binding.getKind());
Name name2 = qualifiedName.getQualifier();
binding = name2.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", IBinding.TYPE, binding.getKind());
assertEquals("Not a qualified name", ASTNode.QUALIFIED_NAME, name2.getNodeType());
qualifiedName = (QualifiedName) name2;
simpleName = qualifiedName.getName();
binding = simpleName.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", IBinding.TYPE, binding.getKind());
Name name3 = qualifiedName.getQualifier();
binding = name3.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", IBinding.PACKAGE, binding.getKind());
assertEquals("Not a simple name", ASTNode.SIMPLE_NAME, name3.getNodeType());
importDeclaration = (ImportDeclaration) imports.get(1);
binding = importDeclaration.resolveBinding();
assertNotNull("No binding", binding);
assertFalse("Not a single name import", importDeclaration.isOnDemand());
name = importDeclaration.getName();
binding = name.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", IBinding.METHOD, binding.getKind());
assertEquals("Not a qualified name", ASTNode.QUALIFIED_NAME, name.getNodeType());
qualifiedName = (QualifiedName) name;
simpleName = qualifiedName.getName();
binding = simpleName.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", IBinding.METHOD, binding.getKind());
name2 = qualifiedName.getQualifier();
binding = name2.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", IBinding.TYPE, binding.getKind());
assertEquals("Not a qualified name", ASTNode.QUALIFIED_NAME, name2.getNodeType());
qualifiedName = (QualifiedName) name2;
simpleName = qualifiedName.getName();
binding = simpleName.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", IBinding.TYPE, binding.getKind());
name2 = qualifiedName.getQualifier();
binding = name2.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong type", IBinding.PACKAGE, binding.getKind());
assertEquals("Not a simple name", ASTNode.SIMPLE_NAME, name2.getNodeType());
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=82985
*/
public void test0104() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0104", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
List imports = compilationUnit.imports();
assertEquals("Wrong size", 1, imports.size());
ImportDeclaration importDeclaration = (ImportDeclaration) imports.get(0);
IBinding binding = importDeclaration.resolveBinding();
assertNotNull("No binding", binding);
int kind = binding.getKind();
assertTrue("Wrong type", kind == IBinding.VARIABLE || kind == IBinding.METHOD);
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=83011
*/
public void test0105() throws JavaModelException {
String contents =
"@interface Ann {}\n" +
"\n" +
"@Ann public class X {}\n";
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 1);
assertEquals("Not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
List modifiers = typeDeclaration.modifiers();
assertEquals("Wrong size", 2, modifiers.size());
IExtendedModifier extendedModifier = (IExtendedModifier) modifiers.get(0);
assertTrue("Not a marker annotation", extendedModifier instanceof MarkerAnnotation);
MarkerAnnotation markerAnnotation = (MarkerAnnotation) extendedModifier;
ITypeBinding binding = markerAnnotation.resolveTypeBinding();
assertNotNull("No binding", binding);
Name name = markerAnnotation.getTypeName();
binding = name.resolveTypeBinding();
assertNotNull("No binding", binding);
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=83011
*/
public void test0106() throws JavaModelException {
String contents =
"package p;\n" +
"@interface Ann {}\n" +
"\n" +
"@p.Ann public class X {}\n";
this.workingCopy = getWorkingCopy("/Converter15/src/p/X.java", true/*resolve*/);
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 1);
assertEquals("Not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
List modifiers = typeDeclaration.modifiers();
assertEquals("Wrong size", 2, modifiers.size());
IExtendedModifier extendedModifier = (IExtendedModifier) modifiers.get(0);
assertTrue("Not a marker annotation", extendedModifier instanceof MarkerAnnotation);
MarkerAnnotation markerAnnotation = (MarkerAnnotation) extendedModifier;
ITypeBinding typeBinding = markerAnnotation.resolveTypeBinding();
assertNotNull("No binding", typeBinding);
Name name = markerAnnotation.getTypeName();
typeBinding = name.resolveTypeBinding();
assertNotNull("No binding", typeBinding);
IBinding binding = name.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong kind of binding", IBinding.TYPE, binding.getKind());
assertEquals("Not a qualified name", ASTNode.QUALIFIED_NAME, name.getNodeType());
QualifiedName qualifiedName = (QualifiedName) name;
SimpleName simpleName = qualifiedName.getName();
binding = simpleName.resolveBinding();
assertNotNull("No binding", binding);
name = qualifiedName.getQualifier();
binding = name.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("Wrong kind of binding", IBinding.PACKAGE, binding.getKind());
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=83013
*/
public void test0107() throws JavaModelException {
String contents =
"@interface A {\n" +
" String value() default \"\";\n" +
"}\n" +
"@interface Main {\n" +
" A child() default @A(\"Void\");\n" +
"}\n" +
"@Main(child=@A(\"\")) @A class X {}\n";
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 2);
assertEquals("Not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType());
checkSourceRange(node, "@Main(child=@A(\"\")) @A class X {}", contents.toCharArray());
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=83228
*/
public void _test0108() throws JavaModelException {
String contents =
"class X<E> {\n" +
" enum Numbers {\n" +
" ONE {\n" +
" Numbers getSquare() {\n" +
" return ONE;\n" +
" }\n" +
" };\n" +
" abstract Numbers getSquare();\n" +
" }\n" +
"}\n";
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0);
EnumDeclaration enumDeclaration = (EnumDeclaration) node;
SimpleName simpleName = enumDeclaration.getName();
ITypeBinding typeBinding = simpleName.resolveTypeBinding();
List enumConstants = enumDeclaration.enumConstants();
assertEquals("Wrong size", 1, enumConstants.size());
EnumConstantDeclaration constantDeclaration = (EnumConstantDeclaration) enumConstants.get(0);
AnonymousClassDeclaration anonymousClassDeclaration = constantDeclaration.getAnonymousClassDeclaration();
assertNotNull("No anonymous", anonymousClassDeclaration);
List bodyDeclarations = anonymousClassDeclaration.bodyDeclarations();
assertEquals("Wrong size", 1, bodyDeclarations.size());
BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, bodyDeclaration.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) bodyDeclaration;
Type type = methodDeclaration.getReturnType2();
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) name;
ITypeBinding typeBinding2 = simpleName.resolveTypeBinding();
assertTrue("Not identical", typeBinding == typeBinding2);
assertTrue("Not equals", typeBinding.isEqualTo(typeBinding2));
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=883297
*/
public void test0109() throws JavaModelException {
String contents =
"@Annot(value=\"Hello\", count=-1)\n" +
"@interface Annot {\n" +
" String value();\n" +
" int count();\n" +
"}";
this.workingCopy = getWorkingCopy("/Converter15/src/Annot.java", true/*resolve*/);
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0);
AnnotationTypeDeclaration annotationTypeDeclaration = (AnnotationTypeDeclaration) node;
ITypeBinding typeBinding = annotationTypeDeclaration.resolveBinding();
assertNotNull("No type binding", typeBinding);
IMethodBinding[] methods = typeBinding.getDeclaredMethods();
assertEquals("Wrong size", 2, methods.length);
}
/*
* Ensures that the type declaration of a top level type binding is correct.
*/
public void test0110() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
TypeDeclaration type = (TypeDeclaration) buildAST(
"/*start*/public class X {\n" +
"}/*end*/",
this.workingCopy);
ITypeBinding binding = type.resolveBinding().getTypeDeclaration();
assertBindingEquals(
"LX;",
binding);
}
/*
* Ensures that the type declaration of a generic type binding is correct.
*/
public void test0111() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
TypeDeclaration type = (TypeDeclaration) buildAST(
"/*start*/public class X<E> {\n" +
"}/*end*/",
this.workingCopy);
ITypeBinding binding = type.resolveBinding().getTypeDeclaration();
assertBindingEquals(
"LX<TE;>;",
binding);
}
/*
* Ensures that the type declaration of a parameterized type binding is correct.
*/
public void test0112() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
Type type = (Type) buildAST(
"public class X<E> {\n" +
" /*start*/X<String>/*end*/ field;\n" +
"}",
this.workingCopy);
ITypeBinding binding = type.resolveBinding().getTypeDeclaration();
assertBindingEquals(
"LX<TE;>;",
binding);
}
/*
* Ensures that the type declaration of a raw type binding is correct.
*/
public void test0113() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
Type type = (Type) buildAST(
"public class X<E> {\n" +
" /*start*/X/*end*/ field;\n" +
"}",
this.workingCopy);
ITypeBinding binding = type.resolveBinding().getTypeDeclaration();
assertBindingEquals(
"LX<TE;>;",
binding);
}
/*
* Ensures that the type declaration of a wildcard type binding is correct.
*/
public void test0114() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
Type type = (Type) buildAST(
"public class X<E> {\n" +
" X</*start*/? extends String/*end*/> field;\n" +
"}",
this.workingCopy);
ITypeBinding binding = type.resolveBinding().getTypeDeclaration();
assertBindingEquals(
"LX;+Ljava/lang/String;",
binding);
}
/*
* Ensures that the type declaration of a type variable binding is correct.
*/
public void test0115() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
TypeParameter type = (TypeParameter) buildAST(
"public class X</*start*/E/*end*/> {\n" +
"}",
this.workingCopy);
ITypeBinding binding = type.resolveBinding().getTypeDeclaration();
assertBindingEquals(
"LX;:TE;",
binding);
}
/*
* Ensures that the erasure of a top level type binding is correct.
*/
public void test0116() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
TypeDeclaration type = (TypeDeclaration) buildAST(
"/*start*/public class X {\n" +
"}/*end*/",
this.workingCopy);
ITypeBinding binding = type.resolveBinding().getErasure();
assertBindingEquals(
"LX;",
binding);
}
/*
* Ensures that the erasure of a generic type binding is correct.
*/
public void test0117() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
TypeDeclaration type = (TypeDeclaration) buildAST(
"/*start*/public class X<E> {\n" +
"}/*end*/",
this.workingCopy);
ITypeBinding binding = type.resolveBinding().getErasure();
assertBindingEquals(
"LX<TE;>;",
binding);
}
/*
* Ensures that the erasure of a parameterized type binding is correct.
*/
public void test0118() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
Type type = (Type) buildAST(
"public class X<E> {\n" +
" /*start*/X<String>/*end*/ field;\n" +
"}",
this.workingCopy);
ITypeBinding binding = type.resolveBinding().getErasure();
assertBindingEquals(
"LX<TE;>;",
binding);
}
/*
* Ensures that the erasure of a raw type binding is correct.
*/
public void test0119() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
Type type = (Type) buildAST(
"public class X<E> {\n" +
" /*start*/X/*end*/ field;\n" +
"}",
this.workingCopy);
ITypeBinding binding = type.resolveBinding().getErasure();
assertBindingEquals(
"LX<TE;>;",
binding);
}
/*
* Ensures that the erasure of a wildcard type binding is correct.
*/
public void test0120() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
Type type = (Type) buildAST(
"public class X<E> {\n" +
" X</*start*/? extends String/*end*/> field;\n" +
"}",
this.workingCopy);
ITypeBinding binding = type.resolveBinding().getErasure();
assertBindingEquals(
"Ljava/lang/String;",
binding);
}
/*
* Ensures that the erasure of a type variable binding is correct.
*/
public void test0121() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
TypeParameter type = (TypeParameter) buildAST(
"public class X</*start*/E/*end*/> {\n" +
"}",
this.workingCopy);
ITypeBinding binding = type.resolveBinding().getErasure();
assertBindingEquals(
"Ljava/lang/Object;",
binding);
}
/*
* Ensures that the declaration of a non generic method binding is correct.
*/
public void test0122() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
MethodDeclaration method = (MethodDeclaration) buildAST(
"public class X {\n" +
" /*start*/void foo() {\n" +
" }/*end*/\n" +
"}",
this.workingCopy);
IMethodBinding binding = method.resolveBinding().getMethodDeclaration();
assertBindingEquals(
"LX;.foo()V",
binding);
}
/*
* Ensures that the declaration of a generic method binding is correct.
*/
public void test0123() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
MethodDeclaration method = (MethodDeclaration) buildAST(
"public class X {\n" +
" /*start*/<E> void foo() {\n" +
" }/*end*/\n" +
"}",
this.workingCopy);
IMethodBinding binding = method.resolveBinding().getMethodDeclaration();
assertBindingEquals(
"LX;.foo<E:Ljava/lang/Object;>()V",
binding);
}
/*
* Ensures that the declaration of a parameterized method binding is correct.
*/
public void test0124() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
MethodInvocation method = (MethodInvocation) buildAST(
"public class X {\n" +
" <E> void foo() {\n" +
" }\n" +
" void bar() {\n" +
" /*start*/this.<String>foo()/*end*/;\n" +
" }\n" +
"}",
this.workingCopy);
IMethodBinding binding = method.resolveMethodBinding().getMethodDeclaration();
assertBindingEquals(
"LX;.foo<E:Ljava/lang/Object;>()V",
binding);
}
/*
* Ensures that the declaration of a raw method binding is correct.
*/
public void test0125() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
MethodInvocation method = (MethodInvocation) buildAST(
"public class X {\n" +
" <E> void foo() {\n" +
" }\n" +
" void bar() {\n" +
" /*start*/this.foo()/*end*/;\n" +
" }\n" +
"}",
this.workingCopy);
IMethodBinding binding = method.resolveMethodBinding().getMethodDeclaration();
assertBindingEquals(
"LX;.foo<E:Ljava/lang/Object;>()V",
binding);
}
/*
* Ensures that the key for a parameterized type binding with an extends wildcard bounded to a type variable
* is correct.
*/
public void test0126() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
Type type = (Type) buildAST(
"public class X<E> {\n" +
" /*start*/Class<? extends E>/*end*/ field;\n" +
"}",
this.workingCopy);
ITypeBinding binding = type.resolveBinding();
assertBindingEquals(
"Ljava/lang/Class<Ljava/lang/Class;+LX;:TE;>;",
binding);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=83817
public void test0127() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
ASTNode node = buildAST(
"class X<T> {\n" +
" public void method(Number num) {}\n" +
"}\n" +
"\n" +
"class Z {\n" +
" void test() {\n" +
" new X<String>().method(0);\n" +
" new X<Integer>().method(1);\n" +
" }\n" +
"}",
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 1, 0, 0);
assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType());
ExpressionStatement statement = (ExpressionStatement) node;
Expression expression = statement.getExpression();
assertEquals("Not a method invocation", ASTNode.METHOD_INVOCATION, expression.getNodeType());
MethodInvocation methodInvocation = (MethodInvocation) expression;
IMethodBinding methodBinding = methodInvocation.resolveMethodBinding();
node = getASTNode(compilationUnit, 1, 0, 1);
assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType());
statement = (ExpressionStatement) node;
expression = statement.getExpression();
assertEquals("Not a method invocation", ASTNode.METHOD_INVOCATION, expression.getNodeType());
methodInvocation = (MethodInvocation) expression;
IMethodBinding methodBinding2 = methodInvocation.resolveMethodBinding();
assertFalse("Keys are equals", methodBinding.getKey().equals(methodBinding2.getKey()));
assertFalse("bindings are equals", methodBinding.isEqualTo(methodBinding2));
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=84064
public void test0128() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
final String contents =
"class X {\n" +
" static X x;\n" +
"\n" +
" static class G extends E {\n" +
" public G() {\n" +
" x.<String> super();\n" +
" }\n" +
" }\n" +
"\n" +
" class E {\n" +
" public <T> E() {\n" +
" }\n" +
" }\n" +
"}";
final char[] source = contents.toCharArray();
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 1, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
assertTrue("Not a constructor", methodDeclaration.isConstructor());
Block body = methodDeclaration.getBody();
assertNotNull("No body", body);
List statements = body.statements();
assertEquals("Wrong size", 1, statements.size());
Statement statement = (Statement) statements.get(0);
assertEquals("Not a super constructor invocation", ASTNode.SUPER_CONSTRUCTOR_INVOCATION, statement.getNodeType());
SuperConstructorInvocation constructorInvocation = (SuperConstructorInvocation) statement;
checkSourceRange(constructorInvocation, "x.<String> super();", source);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=84064
public void test0129() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
final String contents =
"class X {\n" +
" static X x;\n" +
" static class G extends E {\n" +
" public <T> G() {\n" +
" x.<String> this();\n" +
" }\n" +
" }\n" +
" static class E {\n" +
" public <T> E() {\n" +
" }\n" +
" }\n" +
"}";
final char[] source = contents.toCharArray();
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
String expectedProblem = "Illegal enclosing instance specification for type X.G";
assertProblemsSize(compilationUnit, 1, expectedProblem);
node = getASTNode(compilationUnit, 0, 1, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
assertTrue("Not a constructor", methodDeclaration.isConstructor());
Block body = methodDeclaration.getBody();
assertNotNull("No body", body);
List statements = body.statements();
assertEquals("Wrong size", 1, statements.size());
Statement statement = (Statement) statements.get(0);
assertEquals("Not a constructor invocation", ASTNode.CONSTRUCTOR_INVOCATION, statement.getNodeType());
ConstructorInvocation constructorInvocation = (ConstructorInvocation) statement;
checkSourceRange(constructorInvocation, "x.<String> this();", source);
assertTrue("Node is not malformed", isMalformed(constructorInvocation));
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=78934
public void test0130() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
final String contents =
"class Outer<A> {\n" +
" class Inner {\n" +
" class InnerInner<C> {\n" +
" }\n" +
" }\n" +
"}\n" +
"\n" +
"public class X {\n" +
" void foo() {\n" +
" Outer<String>.Inner.InnerInner<Integer> in = new Outer<String>().new Inner(). new InnerInner<Integer>();\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 1, 0, 0);
assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
Type type = statement.getType();
assertTrue("Not a parameterized type", type.isParameterizedType());
ParameterizedType parameterizedType = (ParameterizedType) type;
ITypeBinding typeBinding = parameterizedType.resolveBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong qualified name 1", "Outer<java.lang.String>.Inner.InnerInner<java.lang.Integer>", typeBinding.getQualifiedName());
type = parameterizedType.getType();
assertTrue("Not a qualified type", type.isQualifiedType());
QualifiedType qualifiedType = (QualifiedType) type;
typeBinding = qualifiedType.resolveBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong qualified name 2", "Outer<java.lang.String>.Inner.InnerInner<java.lang.Integer>", typeBinding.getQualifiedName());
SimpleName simpleName = qualifiedType.getName();
typeBinding = simpleName.resolveTypeBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong qualified name 3", "Outer<java.lang.String>.Inner.InnerInner<java.lang.Integer>", typeBinding.getQualifiedName());
type = qualifiedType.getQualifier();
assertTrue("Not a qualified type", type.isQualifiedType());
qualifiedType = (QualifiedType) type;
typeBinding = qualifiedType.resolveBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong qualified name 4", "Outer<java.lang.String>.Inner", typeBinding.getQualifiedName());
simpleName = qualifiedType.getName();
typeBinding = simpleName.resolveTypeBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong qualified name 5", "Outer.Inner", typeBinding.getQualifiedName());
type = qualifiedType.getQualifier();
assertTrue("Not a parameterized type", type.isParameterizedType());
parameterizedType = (ParameterizedType) type;
typeBinding = parameterizedType.resolveBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong qualified name 6", "Outer<java.lang.String>", typeBinding.getQualifiedName());
type = parameterizedType.getType();
assertTrue("Not a simple type", type.isSimpleType());
SimpleType simpleType = (SimpleType) type;
typeBinding = simpleType.resolveBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong qualified name 7", "Outer<java.lang.String>", typeBinding.getQualifiedName());
Name name = simpleType.getName();
assertTrue("Not a simple name", name.isSimpleName());
simpleName = (SimpleName) name;
typeBinding = simpleName.resolveTypeBinding();
assertNotNull("No binding", typeBinding);
assertEquals("Wrong qualified name 8", "Outer", typeBinding.getQualifiedName());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=84140
public void test0131() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" public void bar(String... args){\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List parameters = methodDeclaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration singleVariableDeclaration = (SingleVariableDeclaration) parameters.get(0);
assertTrue("Not a var args", singleVariableDeclaration.isVarargs());
Type type = singleVariableDeclaration.getType();
checkSourceRange(type, "String", contents);
assertTrue("Not a simple type", type.isSimpleType());
checkSourceRange(type, "String", contents);
ITypeBinding typeBinding = type.resolveBinding();
assertNotNull("No binding", typeBinding);
assertFalse("An array", typeBinding.isArray());
IMethodBinding methodBinding = methodDeclaration.resolveBinding();
ITypeBinding[] parameterTypes = methodBinding.getParameterTypes();
ITypeBinding parameterType = parameterTypes[0];
assertTrue("Not an array binding", parameterType.isArray());
assertEquals("wrong dimension", 1, parameterType.getDimensions());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=84140
public void test0132() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" public void bar(String[]... args[]){\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 1, "Extended dimensions are illegal for a variable argument");
node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List parameters = methodDeclaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration singleVariableDeclaration = (SingleVariableDeclaration) parameters.get(0);
assertTrue("Not a var args", singleVariableDeclaration.isVarargs());
assertTrue("Not a malformed node", isMalformed(singleVariableDeclaration));
Type type = singleVariableDeclaration.getType();
checkSourceRange(type, "String[]", contents);
assertTrue("Not an array type", type.isArrayType());
ITypeBinding typeBinding = type.resolveBinding();
assertNotNull("No binding", typeBinding);
assertTrue("Not an array", typeBinding.isArray());
assertEquals("wrong dimensions", 1, typeBinding.getDimensions());
ArrayType arrayType = (ArrayType) type;
assertEquals("Wrong dimension", 1, arrayType.getDimensions());
type = arrayType.getComponentType();
assertTrue("Not a simple type", type.isSimpleType());
checkSourceRange(type, "String", contents);
assertEquals("Wrong extra dimension", 1, singleVariableDeclaration.getExtraDimensions());
IMethodBinding methodBinding = methodDeclaration.resolveBinding();
ITypeBinding[] parameterTypes = methodBinding.getParameterTypes();
ITypeBinding parameterType = parameterTypes[0];
assertTrue("Not an array binding", parameterType.isArray());
assertEquals("wrong dimension", 3, parameterType.getDimensions());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=84181
public void test0133() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"import java.util.Vector;\n" +
"\n" +
"public class X {\n" +
" void k() {\n" +
" Vector v2 = /*start*/new Vector()/*end*/;\n" +
" Vector v3 = new Vector();\n" +
"\n" +
" v3.add(\"fff\");\n" +
" v2.add(v3);\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
assertNotNull("No node", node);
assertEquals("Not a class instance creation unit", ASTNode.CLASS_INSTANCE_CREATION, node.getNodeType());
ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) node;
ITypeBinding typeBinding = classInstanceCreation.resolveTypeBinding();
assertEquals("wrong qualified name", "java.util.Vector", typeBinding.getQualifiedName());
assertTrue("Not a raw type", typeBinding.isRawType());
assertFalse("From source", typeBinding.isFromSource());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=84181
public void test0134() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"import java.util.Vector;\n" +
"\n" +
"public class X {\n" +
" void k() {\n" +
" Vector v2 = /*start*/new Vector<String>()/*end*/;\n" +
"\n" +
" v2.add(\"\");\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
assertNotNull("No node", node);
assertEquals("Not a class instance creation unit", ASTNode.CLASS_INSTANCE_CREATION, node.getNodeType());
ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) node;
ITypeBinding typeBinding = classInstanceCreation.resolveTypeBinding();
assertEquals("wrong qualified name", "java.util.Vector<java.lang.String>", typeBinding.getQualifiedName());
assertTrue("Not a parameterized type", typeBinding.isParameterizedType());
assertFalse("From source", typeBinding.isFromSource());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=78934
public void test0135() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"class X {\n" +
" public static X instance= new X();\n" +
"\n" +
" int s;\n" +
"\n" +
" int f() {\n" +
" System.out.println(X.instance.s + 1);\n" +
" return 1;\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
compilationUnit.accept(new ASTVisitor() {
public boolean visit(QualifiedName qualifiedName) {
ITypeBinding typeBinding = qualifiedName.resolveTypeBinding();
assertNotNull("No binding", typeBinding);
return true;
}
});
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=78934
public void test0136() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"class X {\n" +
" public static X instance= new X();\n" +
" public X instance2 = new X();\n" +
" int s;\n" +
" int f() {\n" +
" System.out.println(X.instance.instance2.s + 1);\n" +
" return 1;\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
compilationUnit.accept(new ASTVisitor() {
public boolean visit(QualifiedName qualifiedName) {
ITypeBinding typeBinding = qualifiedName.resolveTypeBinding();
assertNotNull("No binding", typeBinding);
return true;
}
});
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=79696
*/
public void test0137() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0137", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Wrong node", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
Type type = statement.getType();
assertTrue("Not a parameterized type", type.isParameterizedType());
ParameterizedType parameterizedType = (ParameterizedType) type;
type = parameterizedType.getType();
assertTrue("Not a parameterized type", type.isSimpleType());
SimpleType simpleType = (SimpleType) type;
Name name = simpleType.getName();
assertTrue("Not a qualified name", name.isQualifiedName());
QualifiedName qualifiedName = (QualifiedName) name;
name = qualifiedName.getQualifier();
assertTrue("Not a simple name", name.isSimpleName());
ITypeBinding typeBinding = name.resolveTypeBinding();
assertEquals("Wrong name", "test0137.Source", typeBinding.getQualifiedName());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=81544
public void test0138() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
final String contents =
"class X {\n" +
" java.util.List<URL> method(java.util.List<URL> list) {\n" +
" java.util.List<URL> url= new java.util.List<URL>();\n" +
" return url;\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 4,
"URL cannot be resolved to a type\n" +
"URL cannot be resolved to a type\n" +
"URL cannot be resolved to a type\n" +
"URL cannot be resolved to a type");
compilationUnit.accept(new ASTVisitor() {
public boolean visit(ParameterizedType type) {
checkSourceRange(type, "java.util.List<URL>", contents);
ITypeBinding typeBinding = type.resolveBinding();
assertNotNull("No binding", typeBinding);
return true;
}
});
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=84358
*/
public void test0139() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0139", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 1, "The type test0139a.C is not visible");
ASTNode node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Wrong node", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
Type type = statement.getType();
assertTrue("Not a parameterized type", type.isParameterizedType());
ParameterizedType parameterizedType = (ParameterizedType) type;
type = parameterizedType.getType();
assertTrue("Not a parameterized type", type.isSimpleType());
SimpleType simpleType = (SimpleType) type;
Name name = simpleType.getName();
assertTrue("Not a qualified name", name.isQualifiedName());
QualifiedName qualifiedName = (QualifiedName) name;
IBinding binding = qualifiedName.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("wrong type", IBinding.TYPE, binding.getKind());
ITypeBinding typeBinding = (ITypeBinding) binding;
assertEquals("wrong qualified name", "test0139a.C", typeBinding.getQualifiedName());
SimpleName simpleName = qualifiedName.getName();
binding = simpleName.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("wrong type", IBinding.TYPE, binding.getKind());
typeBinding = (ITypeBinding) binding;
assertEquals("wrong qualified name", "test0139a.C", typeBinding.getQualifiedName());
name = qualifiedName.getQualifier();
assertEquals("Not a simpleName", ASTNode.SIMPLE_NAME, name.getNodeType());
binding = name.resolveBinding();
assertNotNull("No binding", binding);
assertEquals("wrong type", IBinding.PACKAGE, binding.getKind());
IPackageBinding packageBinding = (IPackageBinding) binding;
assertEquals("wrong name", "test0139a", packageBinding.getName());
}
/**
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=85115
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=85215
*/
public void test0140() throws JavaModelException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0140", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 0);
assertNotNull("No node", node);
assertEquals("Not an enum declaration", ASTNode.ENUM_DECLARATION, node.getNodeType());
EnumDeclaration enumDeclaration = (EnumDeclaration) node;
List modifiers = enumDeclaration.modifiers();
assertEquals("Wrong size", 2, modifiers.size());
IExtendedModifier modifier = (IExtendedModifier) modifiers.get(0);
assertTrue("Wrong type", modifier instanceof MarkerAnnotation);
MarkerAnnotation markerAnnotation = (MarkerAnnotation) modifier;
ITypeBinding typeBinding = markerAnnotation.resolveTypeBinding();
assertTrue("Not an annotation", typeBinding.isAnnotation());
assertTrue("Not a top level type", typeBinding.isTopLevel());
sourceUnit = getCompilationUnit("Converter15" , "src", "test0140", "Annot.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
result = runJLS3Conversion(sourceUnit, true, false);
assertNotNull(result);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0);
assertNotNull("No node", node);
assertEquals("Not an annotation declaration", ASTNode.ANNOTATION_TYPE_DECLARATION, node.getNodeType());
AnnotationTypeDeclaration annotationTypeDeclaration = (AnnotationTypeDeclaration) node;
modifiers = annotationTypeDeclaration.modifiers();
assertEquals("Wrong size", 1, modifiers.size());
typeBinding = annotationTypeDeclaration.resolveBinding();
int modifierValue = typeBinding.getModifiers();
assertEquals("Type is not public", Modifier.PUBLIC, modifierValue);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=83100
public void test0141() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
final String contents =
"public class X<T> {\n" +
" int x;\n" +
" public static void main(String[] args) {\n" +
" System.out.println(new X<String>().x);\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 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();
node = getASTNode(compilationUnit, 0, 1, 0);
assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType());
ExpressionStatement statement = (ExpressionStatement) node;
Expression expression = statement.getExpression();
assertEquals("Not a method invocation", ASTNode.METHOD_INVOCATION, expression.getNodeType());
MethodInvocation methodInvocation = (MethodInvocation) expression;
List arguments = methodInvocation.arguments();
assertEquals("Wrong size", 1, arguments.size());
Expression expression2 = (Expression) arguments.get(0);
assertEquals("Not a field access", ASTNode.FIELD_ACCESS, expression2.getNodeType());
FieldAccess fieldAccess = (FieldAccess) expression2;
IVariableBinding variableBinding2 = fieldAccess.resolveFieldBinding();
assertFalse("Bindings are not equals", variableBinding.isEqualTo(variableBinding2));
IVariableBinding variableBinding3 = variableBinding2.getVariableDeclaration();
assertTrue("Bindings are equals", variableBinding.isEqualTo(variableBinding3));
node = compilationUnit.findDeclaringNode(variableBinding2);
assertNotNull("No declaring node", node);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=83100
public void test0142() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
final String contents =
"public class X<T> {\n" +
" public static void main(String[] args) {\n" +
" int x = 0;\n" +
" System.out.println(x);\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
List fragments = statement.fragments();
assertEquals("Wrong size", 1, fragments.size());
VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0);
assertEquals("Wrong name", "x", fragment.getName().getIdentifier());
IVariableBinding variableBinding = fragment.resolveBinding();
IVariableBinding variableBinding2 = variableBinding.getVariableDeclaration();
assertTrue("Bindings are equals", variableBinding.isEqualTo(variableBinding2));
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=84140
public void test0143() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" public void bar(String[]... args){\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List parameters = methodDeclaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration singleVariableDeclaration = (SingleVariableDeclaration) parameters.get(0);
assertTrue("Not a var args", singleVariableDeclaration.isVarargs());
Type type = singleVariableDeclaration.getType();
checkSourceRange(type, "String[]", contents);
assertTrue("Not an array type", type.isArrayType());
ITypeBinding typeBinding = type.resolveBinding();
assertNotNull("No binding", typeBinding);
assertTrue("Not an array", typeBinding.isArray());
assertEquals("wrong dimensions", 1, typeBinding.getDimensions());
ArrayType arrayType = (ArrayType) type;
assertEquals("Wrong dimension", 1, arrayType.getDimensions());
type = arrayType.getComponentType();
assertTrue("Not a simple type", type.isSimpleType());
checkSourceRange(type, "String", contents);
assertEquals("Wrong extra dimension", 0, singleVariableDeclaration.getExtraDimensions());
IMethodBinding methodBinding = methodDeclaration.resolveBinding();
ITypeBinding[] parameterTypes = methodBinding.getParameterTypes();
ITypeBinding parameterType = parameterTypes[0];
assertTrue("Not an array binding", parameterType.isArray());
assertEquals("wrong dimension", 2, parameterType.getDimensions());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87171
public void test0144() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X<T> {\n" +
" void foo(T t) {\n" +
" System.out.println(t);\n" +
" }\n" +
"}\n" +
"\n" +
"class Use {\n" +
" public static void main(String[] args) {\n" +
" X<String> i= null;\n" +
" i.foo(\"Eclipse\");\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 1, 0, 1);
assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType());
ExpressionStatement statement = (ExpressionStatement) node;
Expression expression = statement.getExpression();
assertEquals("Not a method invocation", ASTNode.METHOD_INVOCATION, expression.getNodeType());
MethodInvocation methodInvocation = (MethodInvocation) expression;
IMethodBinding methodBinding = methodInvocation.resolveMethodBinding();
node = compilationUnit.findDeclaringNode(methodBinding);
assertNotNull("No declaring node", node);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87350
public void test0145() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public enum X {\n" +
" RED, GREEN(), BLUE(17), PINK(1) {/*anon*};\n" +
" Color() {}\n" +
" Color(int i) {}\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
String expectedErrors = "The constructor X(int) is undefined\n" +
"The constructor X(int) is undefined\n" +
"Unexpected end of comment";
assertProblemsSize(compilationUnit, 3, expectedErrors);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87481
public void test0146() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"import java.util.Iterator;\n" +
"public class X {\n" +
" void doit() {\n" +
" Iterator iter= (Iterator) null;\n" +
" System.out.println(iter);\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
List fragments = statement.fragments();
assertEquals("Wrong size", 1, fragments.size());
VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0);
Expression expression = fragment.getInitializer();
assertNotNull("No initializer", expression);
assertEquals("Not a cast expression", ASTNode.CAST_EXPRESSION, expression.getNodeType());
CastExpression castExpression = (CastExpression) expression;
Type type = castExpression.getType();
ITypeBinding typeBinding = type.resolveBinding();
assertEquals("Wrong type", "java.util.Iterator", typeBinding.getQualifiedName());
assertTrue("Not a raw type", typeBinding.isRawType());
assertFalse("Is a generic type", typeBinding.isGenericType());
assertFalse("Is a parameterized type", typeBinding.isParameterizedType());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87498
public void test0147() throws CoreException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0147", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87350
public void test0148() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public enum X {\n" +
" RED, GREEN(), BLUE(17), PINK(1) {/*anon*};\n" +
" Color() {}\n" +
" Color(int i) {}\n";
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
String expectedErrors = "The constructor X(int) is undefined\n" +
"The constructor X(int) is undefined\n" +
"Unexpected end of comment";
assertProblemsSize(compilationUnit, 3, expectedErrors);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88252
public void test0149() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
" interface Jpf {\n" +
" @interface Action {\n" +
" ValidatableProperty[] validatableProperties();\n" +
" }\n" +
" \n" +
" @interface ValidatableProperty {\n" +
" String propertyName();\n" +
" ValidationLocaleRules[] localeRules();\n" +
" }\n" +
" \n" +
" @interface ValidationLocaleRules {\n" +
" ValidateMinLength validateMinLength();\n" +
" }\n" +
" \n" +
" @interface ValidateMinLength {\n" +
" String chars();\n" +
" }\n" +
"}\n" +
" \n" +
" public class X {\n" +
" \n" +
" @Jpf.Action(\n" +
" validatableProperties={@Jpf.ValidatableProperty(propertyName=\"fooField\",\n" +
" localeRules={@Jpf.ValidationLocaleRules(\n" +
" validateMinLength=@Jpf.ValidateMinLength(chars=\"12\")\n" +
" )}\n" +
" )}\n" +
" )\n" +
" public String actionForValidationRuleTest() {\n" +
" return null;\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 1, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List modifiers = methodDeclaration.modifiers();
assertEquals("Wrong size", 2, modifiers.size());
IExtendedModifier modifier = (IExtendedModifier) modifiers.get(0);
assertTrue("Not a normal annotation", modifier instanceof NormalAnnotation);
NormalAnnotation annotation = (NormalAnnotation) modifier;
List values = annotation.values();
assertEquals("wrong size", 1, values.size());
MemberValuePair memberValuePair = (MemberValuePair) values.get(0);
Expression expression = memberValuePair.getValue();
assertEquals("Not an array initializer", ASTNode.ARRAY_INITIALIZER, expression.getNodeType());
ArrayInitializer arrayInitializer = (ArrayInitializer) expression;
List expressions = arrayInitializer.expressions();
assertEquals("wrong size", 1, expressions.size());
Expression expression2 = (Expression) expressions.get(0);
assertEquals("Not a normal annotation", ASTNode.NORMAL_ANNOTATION, expression2.getNodeType());
NormalAnnotation annotation2 = (NormalAnnotation) expression2;
values = annotation2.values();
assertEquals("wrong size", 2, values.size());
MemberValuePair memberValuePair2 = (MemberValuePair) values.get(1);
Expression expression3 = memberValuePair2.getValue();
assertEquals("Not an array initializer", ASTNode.ARRAY_INITIALIZER, expression3.getNodeType());
arrayInitializer = (ArrayInitializer) expression3;
expressions = arrayInitializer.expressions();
assertEquals("wrong size", 1, expressions.size());
Expression expression4 = (Expression) expressions.get(0);
assertEquals("Not a normal annotation", ASTNode.NORMAL_ANNOTATION, expression4.getNodeType());
NormalAnnotation annotation3 = (NormalAnnotation) expression4;
values = annotation3.values();
assertEquals("wrong size", 1, values.size());
MemberValuePair memberValuePair3 = (MemberValuePair) values.get(0);
Expression expression5 = memberValuePair3.getValue();
assertEquals("Not a normal annotation", ASTNode.NORMAL_ANNOTATION, expression5.getNodeType());
NormalAnnotation annotation4 = (NormalAnnotation) expression5;
checkSourceRange(annotation4, "@Jpf.ValidateMinLength(chars=\"12\")", contents);
checkSourceRange(memberValuePair3, "validateMinLength=@Jpf.ValidateMinLength(chars=\"12\")", contents);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88224
public void test0150() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" void foo() {\n" +
" class Local {\n" +
" static enum E {\n" +
" C, B;\n" +
" }\n" +
" }\n" +
" }\n" +
" void bar() {\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
final String expectedErrors = "The member enum E cannot be local";
assertProblemsSize(compilationUnit, 1, expectedErrors);
node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Not a type declaration statement", ASTNode.TYPE_DECLARATION_STATEMENT, node.getNodeType());
TypeDeclarationStatement typeDeclarationStatement = (TypeDeclarationStatement) node;
AbstractTypeDeclaration typeDeclaration = typeDeclarationStatement.getDeclaration();
List bodyDeclarations = typeDeclaration.bodyDeclarations();
assertEquals("Wrong size", 1, bodyDeclarations.size());
BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(0);
assertEquals("Not an enum declaration", ASTNode.ENUM_DECLARATION, bodyDeclaration.getNodeType());
EnumDeclaration enumDeclaration = (EnumDeclaration) bodyDeclaration;
List enumConstants = enumDeclaration.enumConstants();
assertEquals("Wrong size", 2, enumConstants.size());
EnumConstantDeclaration enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(0);
checkSourceRange(enumConstantDeclaration, "C", contents);
enumConstantDeclaration = (EnumConstantDeclaration) enumConstants.get(1);
checkSourceRange(enumConstantDeclaration, "B", contents);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88548
public void test0151() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public enum X {\n" +
" RED, GREEN(), BLUE(17);\n" +
" X() {}\n" +
" X(int i) {}\n" +
" public static void main(String[] args) {\n" +
" for (X x : X.values()) {\n" +
" switch(x) {\n" +
" case RED :\n" +
" System.out.println(\"ROUGE\");\n" +
" break;\n" +
" case GREEN :\n" +
" System.out.println(\"VERT\");\n" +
" break;\n" +
" case BLUE :\n" +
" System.out.println(\"BLEU\");\n" +
" break;\n" +
" }\n" +
" }\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0);
assertEquals("Not an enum declaration", ASTNode.ENUM_DECLARATION, node.getNodeType());
EnumDeclaration enumDeclaration = (EnumDeclaration) node;
List bodyDeclarations = enumDeclaration.bodyDeclarations();
assertEquals("Wrong size", 3, bodyDeclarations.size());
BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(2);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, bodyDeclaration.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) bodyDeclaration;
Block block = methodDeclaration.getBody();
assertNotNull("No body", block);
List statements = block.statements();
assertEquals("Wrong size", 1, statements.size());
Statement statement = (Statement) statements.get(0);
assertEquals("Not an enhanced for statement", ASTNode.ENHANCED_FOR_STATEMENT, statement.getNodeType());
EnhancedForStatement forStatement = (EnhancedForStatement) statement;
Statement statement2 = forStatement.getBody();
assertEquals("Not a block", ASTNode.BLOCK, statement2.getNodeType());
Block block2 = (Block) statement2;
statements = block2.statements();
assertEquals("Wrong size", 1, statements.size());
statement = (Statement) statements.get(0);
assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, statement.getNodeType());
SwitchStatement switchStatement = (SwitchStatement) statement;
statements = switchStatement.statements();
assertEquals("Wrong size", 9, statements.size());
statement = (Statement) statements.get(0);
assertEquals("Not a switch case statement", ASTNode.SWITCH_CASE, statement.getNodeType());
SwitchCase switchCase = (SwitchCase) statement;
Expression expression = switchCase.getExpression();
assertNull("Got a constant", expression.resolveConstantExpressionValue());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88548
public void test0152() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" public static final int CONST1 = 1;\n" +
" public static final int CONST2 = 2;\n" +
" public static void main(String[] args) {\n" +
" int[] intTab = new int[] {2, 3};\n" +
" for (int i : intTab) {\n" +
" switch(i) {\n" +
" case CONST1 :\n" +
" System.out.println(\"1\");\n" +
" break;\n" +
" case CONST2 :\n" +
" System.out.println(\"2\");\n" +
" break;\n" +
" default :\n" +
" System.out.println(\"default\");\n" +
" break;\n" +
" }\n" +
" }\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0);
assertEquals("Not a type declaration", ASTNode.TYPE_DECLARATION, node.getNodeType());
TypeDeclaration typeDeclaration = (TypeDeclaration) node;
List bodyDeclarations = typeDeclaration.bodyDeclarations();
assertEquals("Wrong size", 3, bodyDeclarations.size());
BodyDeclaration bodyDeclaration = (BodyDeclaration) bodyDeclarations.get(2);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, bodyDeclaration.getNodeType());
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 an enhanced for statement", ASTNode.ENHANCED_FOR_STATEMENT, statement.getNodeType());
EnhancedForStatement forStatement = (EnhancedForStatement) statement;
Statement statement2 = forStatement.getBody();
assertEquals("Not a block", ASTNode.BLOCK, statement2.getNodeType());
Block block2 = (Block) statement2;
statements = block2.statements();
assertEquals("Wrong size", 1, statements.size());
statement = (Statement) statements.get(0);
assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, statement.getNodeType());
SwitchStatement switchStatement = (SwitchStatement) statement;
statements = switchStatement.statements();
assertEquals("Wrong size", 9, statements.size());
statement = (Statement) statements.get(0);
assertEquals("Not a switch case statement", ASTNode.SWITCH_CASE, statement.getNodeType());
SwitchCase switchCase = (SwitchCase) statement;
Expression expression = switchCase.getExpression();
Object constant = expression.resolveConstantExpressionValue();
assertNotNull("No constant", constant);
assertEquals("Wrong value", "1", String.valueOf(constant));
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88841
public void test0153() throws CoreException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0153", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87173
public void test0154() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" public static void main(String[] s) {\n" +
" test(/*start*/1/*end*/);\n" +
" }\n" +
" public static void test(Integer i) {}\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a number literal", ASTNode.NUMBER_LITERAL, node.getNodeType());
NumberLiteral literal = (NumberLiteral) node;
assertTrue("Not boxed", literal.resolveBoxing());
assertFalse("Is unboxed", literal.resolveUnboxing());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87173
public void test0155() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" public static int bar() {return 1;}\n" +
" public static void main(String[] s) {\n" +
" test(/*start*/bar()/*end*/);\n" +
" }\n" +
" public static void test(Integer i) {}\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a method invocation", ASTNode.METHOD_INVOCATION, node.getNodeType());
MethodInvocation methodInvocation = (MethodInvocation) node;
assertTrue("Not boxed", methodInvocation.resolveBoxing());
assertFalse("Is unboxed", methodInvocation.resolveUnboxing());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87173
public void test0156() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" public static void main(String[] s) {\n" +
" test(/*start*/new Integer(1)/*end*/);\n" +
" }\n" +
" public static void test(int i) {}\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a class instance creation", ASTNode.CLASS_INSTANCE_CREATION, node.getNodeType());
ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) node;
assertFalse("Is boxed", classInstanceCreation.resolveBoxing());
assertTrue("Not unboxed", classInstanceCreation.resolveUnboxing());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88548
public void test0157() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" public static void main(String[] s) {\n" +
" test(/*start*/null/*end*/);\n" +
" }\n" +
" public static void test(Object o) {}\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a null literal", ASTNode.NULL_LITERAL, node.getNodeType());
NullLiteral nullLiteral = (NullLiteral) node;
assertNull("Got a constant", nullLiteral.resolveConstantExpressionValue());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88548
public void test0158() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" private static final String CONST = \"Hello World\";\n" +
" public static void main(String[] s) {\n" +
" System.out.println(/*start*/CONST/*end*/);\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a simple name", ASTNode.SIMPLE_NAME, node.getNodeType());
SimpleName name = (SimpleName) node;
assertNotNull("No constant", name.resolveConstantExpressionValue());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87173
public void test0159() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" public static void main(String[] s) {\n" +
" test(/*start*/new Integer(1)/*end*/);\n" +
" }\n" +
" public static void test(Integer i) {}\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a class instance creation", ASTNode.CLASS_INSTANCE_CREATION, node.getNodeType());
ClassInstanceCreation classInstanceCreation = (ClassInstanceCreation) node;
assertFalse("Is boxed", classInstanceCreation.resolveBoxing());
assertFalse("Is unboxed", classInstanceCreation.resolveUnboxing());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87173
public void test0160() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" public static void main(String[] s) {\n" +
" Y.test(1, new Integer(2), -3);\n" +
" }\n" +
"}\n" +
"class Y {\n" +
" public static void test(int ... i) {}\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType());
ExpressionStatement expressionStatement = (ExpressionStatement) node;
Expression expression = expressionStatement.getExpression();
assertEquals("Not method invocation", ASTNode.METHOD_INVOCATION, expression.getNodeType());
MethodInvocation methodInvocation = (MethodInvocation) expression;
List arguments = methodInvocation.arguments();
assertEquals("Wrong size", 3, arguments.size());
Expression argument = (Expression) arguments.get(0);
assertFalse("Is boxed", argument.resolveBoxing());
assertFalse("Is unboxed", argument.resolveUnboxing());
argument = (Expression) arguments.get(1);
assertFalse("Is boxed", argument.resolveBoxing());
assertTrue("Not unboxed", argument.resolveUnboxing());
argument = (Expression) arguments.get(2);
assertFalse("Is boxed", argument.resolveBoxing());
assertFalse("Is unboxed", argument.resolveUnboxing());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87173
public void test0161() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" public static void main(String[] s) {\n" +
" new Y().test(new Integer(1), 1);\n" +
" new Y().test(1, new Integer(1));\n" +
" }\n" +
"}\n" +
"class Y {\n" +
" void test(Integer i, int j) { System.out.print(1); }\n" +
" void test(int i, Integer j) { System.out.print(2); }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType());
ExpressionStatement expressionStatement = (ExpressionStatement) node;
Expression expression = expressionStatement.getExpression();
assertEquals("Not method invocation", ASTNode.METHOD_INVOCATION, expression.getNodeType());
MethodInvocation methodInvocation = (MethodInvocation) expression;
List arguments = methodInvocation.arguments();
assertEquals("Wrong size", 2, arguments.size());
Expression argument = (Expression) arguments.get(0);
assertFalse("Is boxed", argument.resolveBoxing());
assertFalse("Is unboxed", argument.resolveUnboxing());
argument = (Expression) arguments.get(1);
assertFalse("Is boxed", argument.resolveBoxing());
assertFalse("Is unboxed", argument.resolveUnboxing());
getASTNode(compilationUnit, 0, 0, 1);
assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType());
expressionStatement = (ExpressionStatement) node;
expression = expressionStatement.getExpression();
assertEquals("Not method invocation", ASTNode.METHOD_INVOCATION, expression.getNodeType());
methodInvocation = (MethodInvocation) expression;
arguments = methodInvocation.arguments();
assertEquals("Wrong size", 2, arguments.size());
argument = (Expression) arguments.get(0);
assertFalse("Is boxed", argument.resolveBoxing());
assertFalse("Is unboxed", argument.resolveUnboxing());
argument = (Expression) arguments.get(1);
assertFalse("Is boxed", argument.resolveBoxing());
assertFalse("Is unboxed", argument.resolveUnboxing());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87173
public void test0162() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" public static void main(String[] s) {\n" +
" int i = Y.test();\n" +
" System.out.print(i);\n" +
" }\n" +
"}\n" +
"class Y {\n" +
" public static Byte test() { return new Byte((byte) 1); }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
List fragments = statement.fragments();
assertEquals("Wrong size", 1, fragments.size());
VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0);
Expression expression = fragment.getInitializer();
assertFalse("Is boxed", expression.resolveBoxing());
assertTrue("Not unboxed", expression.resolveUnboxing());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=86580
public void test0163() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X<T>{\n" +
" void f(T t){}\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List parameters = methodDeclaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration singleVariableDeclaration = (SingleVariableDeclaration) parameters.get(0);
Type type = singleVariableDeclaration.getType();
ITypeBinding typeBinding = type.resolveBinding();
assertTrue("Not a type variable", typeBinding.isTypeVariable());
final ITypeBinding declaringClass = typeBinding.getDeclaringClass();
assertNotNull("No declaring class", declaringClass);
assertTrue("Not a generic class", declaringClass.isGenericType());
assertEquals("Wrong name", "X", declaringClass.getName());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=86580
public void test0164() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"class X {\n" +
" <U> void foo(U u) {}\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List parameters = methodDeclaration.parameters();
assertEquals("Wrong size", 1, parameters.size());
SingleVariableDeclaration singleVariableDeclaration = (SingleVariableDeclaration) parameters.get(0);
Type type = singleVariableDeclaration.getType();
ITypeBinding typeBinding = type.resolveBinding();
assertTrue("Not a type variable", typeBinding.isTypeVariable());
final IMethodBinding methodBinding = typeBinding.getDeclaringMethod();
assertNotNull("No declaring method", methodBinding);
assertEquals("Wrong name", "foo", methodBinding.getName());
assertTrue("Not a generic method", methodBinding.isGenericMethod());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=86580
public void test0165() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"class X {\n" +
" <U> void foo(U u) {\n" +
" class C {}\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Not a type declaration statement", ASTNode.TYPE_DECLARATION_STATEMENT, node.getNodeType());
TypeDeclarationStatement statement = (TypeDeclarationStatement) node;
AbstractTypeDeclaration typeDeclaration = statement.getDeclaration();
ITypeBinding typeBinding = typeDeclaration.resolveBinding();
assertNotNull("No binding", typeBinding);
assertTrue("Not a local type", typeBinding.isLocal());
ITypeBinding declaringClass = typeBinding.getDeclaringClass();
assertNotNull("No declaring class", declaringClass);
IMethodBinding declaringMethod = typeBinding.getDeclaringMethod();
assertNotNull("No declaring method", declaringMethod);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=86580
public void test0166() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"class X {\n" +
" {\n" +
" class C {}\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Not a type declaration statement", ASTNode.TYPE_DECLARATION_STATEMENT, node.getNodeType());
TypeDeclarationStatement statement = (TypeDeclarationStatement) node;
AbstractTypeDeclaration typeDeclaration = statement.getDeclaration();
ITypeBinding typeBinding = typeDeclaration.resolveBinding();
assertNotNull("No binding", typeBinding);
assertTrue("Not a local type", typeBinding.isLocal());
ITypeBinding declaringClass = typeBinding.getDeclaringClass();
assertNotNull("No declaring class", declaringClass);
IMethodBinding declaringMethod = typeBinding.getDeclaringMethod();
assertNull("No declaring method", declaringMethod);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88841
public void test0167() throws CoreException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0167", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
ASTNode node = getASTNode(compilationUnit, 1, 0);
assertEquals("Not a method declaration", ASTNode.METHOD_DECLARATION, node.getNodeType());
MethodDeclaration methodDeclaration = (MethodDeclaration) node;
List parameters = methodDeclaration.parameters();
assertEquals("wrong size", 4, parameters.size());
SingleVariableDeclaration param = (SingleVariableDeclaration)parameters.get(3);
Type t = param.getType();
String typeName = ((SimpleType)t).getName().getFullyQualifiedName();
IType[] types = sourceUnit.getTypes();
assertEquals("wrong size", 2, types.length);
IType mainType = types[1];
String[][] typeMatches = mainType.resolveType( typeName );
assertNotNull(typeMatches);
assertEquals("wrong size", 1, typeMatches.length);
String[] typesNames = typeMatches[0];
assertEquals("wrong size", 2, typesNames.length);
assertEquals("Wrong part 1", "java.lang", typesNames[0]);
assertEquals("Wrong part 2", "Object", typesNames[1]);
}
public void test0168() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
final String contents =
"import java.util.List;\n" +
"public class X {\n" +
" void f() {\n" +
" List<?> list = null;\n" +
" System.out.println(list);\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 0);
node = getASTNode(compilationUnit, 0, 0, 1);
assertEquals("Not an expression statement", ASTNode.EXPRESSION_STATEMENT, node.getNodeType());
ExpressionStatement statement = (ExpressionStatement) node;
Expression expression = statement.getExpression();
assertEquals("Not a method invocation", ASTNode.METHOD_INVOCATION, expression.getNodeType());
MethodInvocation methodInvocation = (MethodInvocation) expression;
List arguments = methodInvocation.arguments();
assertEquals("Wrong size", 1, arguments.size());
Expression argument = (Expression) arguments.get(0);
ITypeBinding typeBinding = argument.resolveTypeBinding();
assertNotNull("No type binding", typeBinding);
assertTrue("Not a parameterized binding", typeBinding.isParameterizedType());
ITypeBinding[] typeArguments = typeBinding.getTypeArguments();
assertEquals("Wrong size", 1, typeArguments.length);
assertTrue("Not a capture binding", typeArguments[0].isCapture());
assertNotNull("No wildcard", typeArguments[0].getWildcard());
}
public void test0169() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" static class BB<T, S> { }\n" +
" static class BD<T> extends BB<T, T> { }\n" +
" void f() {\n" +
" BB<? extends Number, ? super Integer> bb = null;\n" +
" Object o = (BD<Number>) bb;\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
assertProblemsSize(compilationUnit, 1, "Type safety: The cast from X.BB<capture-of ? extends Number,capture-of ? super Integer> to X.BD<Number> is actually checking against the erased type X.BD");
node = getASTNode(compilationUnit, 0, 2, 1);
assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
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 a cast expression", ASTNode.CAST_EXPRESSION, expression.getNodeType());
CastExpression castExpression = (CastExpression) expression;
Expression expression2 = castExpression.getExpression();
ITypeBinding typeBinding = expression2.resolveTypeBinding();
assertTrue("Not a parameterized type", typeBinding.isParameterizedType());
ITypeBinding[] typeArguments = typeBinding.getTypeArguments();
assertEquals("Wrong size", 2, typeArguments.length);
ITypeBinding typeBinding2 = typeArguments[0];
assertTrue("Not a capture binding", typeBinding2.isCapture());
ITypeBinding wildcardBinding = typeBinding2.getWildcard();
assertNotNull("No wildcard binding", wildcardBinding);
assertTrue("Not a wildcard", wildcardBinding.isWildcardType());
}
public void test0170() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
" static class BB<T, S> { }\n" +
" static class BD<T> extends BB<T, T> { }\n" +
" static BB<? extends Number, ? super Integer> bb = null;\n" +
" public static void main(String[] args) {\n" +
" System.out.println(/*start*/X.bb/*end*/);\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
assertNotNull("No node", node);
assertEquals("Not a qualified name", ASTNode.QUALIFIED_NAME, node.getNodeType());
QualifiedName qualifiedName = (QualifiedName) node;
ITypeBinding typeBinding = qualifiedName.resolveTypeBinding();
assertTrue("Not a parameterized type", typeBinding.isParameterizedType());
ITypeBinding[] typeArguments = typeBinding.getTypeArguments();
assertEquals("Wrong size", 2, typeArguments.length);
ITypeBinding typeBinding2 = typeArguments[0];
assertTrue("Not a capture binding", typeBinding2.isCapture());
ITypeBinding wildcardBinding = typeBinding2.getWildcard();
assertNotNull("No wildcard binding", wildcardBinding);
assertTrue("Not a wildcard", wildcardBinding.isWildcardType());
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=92361
*/
public void test0171() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X {\n" +
"\n" +
" java.util.List<? extends Runnable> list;\n" +
" Object o= /*start*/list/*end*/;\n" +
"}\n";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a simple name", ASTNode.SIMPLE_NAME, node.getNodeType());
ITypeBinding type = ((SimpleName)node).resolveTypeBinding();
assertNull("Unexpected element", type.getTypeArguments()[0].getJavaElement());
}
/*
* Ensures that 2 different capture bindings are not "isEqualTo(...)".
* (regression test for bug 92888 ITypeBinding#isEqualTo(..) is wrong for capture bindings)
*/
public void test0172() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X<T> {\n" +
" private static X<? super Number> num() {\n" +
" return null;\n" +
" }\n" +
" void add(T t) {\n" +
" }\n" +
" void foo() {\n" +
" Number n= null;\n" +
" /*start1*/num().add(null)/*end1*/;\n" +
" /*start2*/num().add(n)/*end2*/;\n" +
" }\n" +
"}\n";
IBinding[] bindings = resolveBindings(contents, this.workingCopy);
assertTrue("2 different capture bindings should not be equals", !bindings[0].isEqualTo(bindings[1]));
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=93093
*/
public void test0173() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"import java.util.Vector;\n" +
"\n" +
"public class X {\n" +
" void test1() {\n" +
" Vector<? extends Number[]> v = null;\n" +
" /*start*/v.get(0)/*end*/;\n" +
" }\n" +
"}\n";
ASTNode node = buildAST(
contents,
this.workingCopy);
ITypeBinding type = ((Expression)node).resolveTypeBinding();
assertTrue("Should be one bound", type.getTypeBounds().length == 1);
assertEquals("Invalid bound", "[Ljava.lang.Number;", type.getTypeBounds()[0].getBinaryName());
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=92982
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=88202
*/
public void test0174() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"import java.util.*;\n" +
"\n" +
"public class X {\n" +
" void test1() {\n" +
" List<? extends Collection> l = null;\n" +
" /*start*/l.get(0)/*end*/;\n" +
" }\n" +
"}\n";
ASTNode node = buildAST(
contents,
this.workingCopy);
ITypeBinding type = ((Expression)node).resolveTypeBinding();
assertTrue("Should be one bound", type.getTypeBounds().length == 1);
assertEquals("Invalid bound", "java.util.Collection", type.getTypeBounds()[0].getBinaryName());
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=88202
*/
public void test0175() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"import java.util.*;\n" +
"\n" +
"public class X {\n" +
" void test1() {\n" +
" List<?> l = null;\n" +
" /*start*/l.get(0)/*end*/;\n" +
" }\n" +
"}\n";
ASTNode node = buildAST(
contents,
this.workingCopy);
ITypeBinding type = ((Expression)node).resolveTypeBinding();
assertTrue("Should be no bound", type.getTypeBounds().length == 0);
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=92982
*/
public void test0176() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"import java.util.*;\n" +
"\n" +
"public class X<T extends Collection> {\n" +
" void test1() {\n" +
" List<T> l = null;\n" +
" /*start*/l.get(0)/*end*/;\n" +
" }\n" +
"}\n";
ASTNode node = buildAST(
contents,
this.workingCopy);
ITypeBinding type = ((Expression)node).resolveTypeBinding();
assertTrue("Should be one bound", type.getTypeBounds().length == 1);
assertEquals("Invalid bound", "java.util.Collection", type.getTypeBounds()[0].getBinaryName());
}
/*
* Ensure that the declaring class of a capture binding is correct
* (https://bugs.eclipse.org/bugs/show_bug.cgi?id=93275)
*/
public void test0177() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X<T> {\n" +
" Object foo(X<?> list) {\n" +
" return /*start*/list.get()/*end*/;\n" +
" }\n" +
" T get() {\n" +
" return null;\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
MethodInvocation methodInvocation = (MethodInvocation) node;
ITypeBinding capture = methodInvocation.resolveTypeBinding();
ITypeBinding declaringClass = capture.getDeclaringClass();
assertBindingEquals("LX<TT;>;", declaringClass);
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=93075
*/
public void test0178() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"import java.util.Vector;\n" +
"\n" +
"public class X {\n" +
" void foo() {\n" +
" Vector< ? super java.util.Collection<? super java.lang.Number> > lhs= null; \n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit unit = (CompilationUnit) node;
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();
checkSourceRange(type, "Vector< ? super java.util.Collection<? super java.lang.Number> >", contents);
assertEquals("Not a parameterized type", ASTNode.PARAMETERIZED_TYPE, type.getNodeType());
ParameterizedType parameterizedType = (ParameterizedType) type;
List typeArguments = parameterizedType.typeArguments();
assertEquals("Wrong size", 1, typeArguments.size());
Type typeArgument = (Type) typeArguments.get(0);
assertEquals("Not a wildcard type", ASTNode.WILDCARD_TYPE, typeArgument.getNodeType());
WildcardType wildcardType = (WildcardType) typeArgument;
checkSourceRange(wildcardType, "? super java.util.Collection<? super java.lang.Number>", contents);
Type bound = wildcardType.getBound();
assertEquals("Not a parameterized type", ASTNode.PARAMETERIZED_TYPE, bound.getNodeType());
ParameterizedType parameterizedType2 = (ParameterizedType) bound;
checkSourceRange(bound, "java.util.Collection<? super java.lang.Number>", contents);
typeArguments = parameterizedType2.typeArguments();
assertEquals("Wrong size", 1, typeArguments.size());
typeArgument = (Type) typeArguments.get(0);
assertEquals("Not a wildcard type", ASTNode.WILDCARD_TYPE, typeArgument.getNodeType());
wildcardType = (WildcardType) typeArgument;
checkSourceRange(wildcardType, "? super java.lang.Number", contents);
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=93075
*/
public void test0179() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"@interface Test {}\n" +
"public enum X\n" +
"{\n" +
" /*start*/@Test HISTORY/*end*/\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not an enum constant declaration", ASTNode.ENUM_CONSTANT_DECLARATION, node.getNodeType());
EnumConstantDeclaration constantDeclaration = (EnumConstantDeclaration) node;
List modifiers = constantDeclaration.modifiers();
assertEquals("Wrong size", 1, modifiers.size());
IExtendedModifier modifier = (IExtendedModifier) modifiers.get(0);
assertTrue("Not a marker annotation", modifier instanceof MarkerAnnotation);
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=92360
*/
public void test0180() throws CoreException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"import java.util.List;\n" +
"public class X {\n" +
" List</*start*/? extends Runnable/*end*/> list;\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a wildcard type", ASTNode.WILDCARD_TYPE, node.getNodeType());
WildcardType wildcardType = (WildcardType) node;
ITypeBinding typeBinding = wildcardType.resolveBinding();
assertTrue("Not a wildcard type", typeBinding.isWildcardType());
assertFalse("Not an class", typeBinding.isClass());
}
/*
* Ensures that 2 different parameterized type bindings are not "isEqualTo(...)".
* (regression test for bug 93408 ITypeBinding#isEqualTo(..) does not resolve type variables)
*/
public void test0181() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X<E> {\n" +
" /*start1*/Y<E>/*end1*/ y;\n" +
" static class Other<E> {\n" +
" /*start2*/Y<E>/*end2*/ y;\n" +
" }\n" +
"}\n" +
"class Y<E> {\n" +
"}";
IBinding[] bindings = resolveBindings(contents, this.workingCopy);
assertTrue("2 different parameterized type bindings should not be equals", !bindings[0].isEqualTo(bindings[1]));
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=95911
*/
public void test0182() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
final String contents =
"import java.util.Map;\n" +
"\n" +
"public class X {\n" +
" public void foo() {\n" +
" Map<String, Number> map= new Map<String, Number>() {\n" +
" };\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
node = getASTNode(compilationUnit, 0, 0, 0);
assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
List fragments = statement.fragments();
assertEquals("Wrong size", 1, fragments.size());
VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0);
String expectedSource = "map= new Map<String, Number>() {\n" +
" }";
checkSourceRange(fragment, expectedSource, contents);
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=95911
*/
public void test0183() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
final String contents =
"import java.util.Map;\n" +
"\n" +
"public class X {\n" +
" Map<String, Number> map= new Map<String, Number>() {\n" +
" };\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
node = getASTNode(compilationUnit, 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);
String expectedSource = "map= new Map<String, Number>() {\n" +
" }";
checkSourceRange(fragment, expectedSource, contents);
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=97841
*/
public void test0184() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
final String contents =
"public class X {\n" +
" java.util.Map<String, Number> map= new java.util.Map<String, Number>() {\n" +
" };\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit compilationUnit = (CompilationUnit) node;
node = getASTNode(compilationUnit, 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);
Expression initializer = fragment.getInitializer();
assertNotNull("No initializer", initializer);
ITypeBinding binding = initializer.resolveTypeBinding();
assertNotNull("No binding", binding);
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=98086
*/
public void test0185() throws JavaModelException {
final ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0185", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
assertEquals("Wrong setting", JavaCore.WARNING, sourceUnit.getJavaProject().getOption(JavaCore.COMPILER_PB_UNCHECKED_TYPE_OPERATION, true));
final ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
final CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 0);
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=98086
*/
public void test0186() throws JavaModelException {
final ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0186", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
assertEquals("Wrong setting", JavaCore.WARNING, sourceUnit.getJavaProject().getOption(JavaCore.COMPILER_PB_UNCHECKED_TYPE_OPERATION, true));
final ASTNode result = runJLS3Conversion(sourceUnit, true, true);
assertTrue("Not a compilation unit", result.getNodeType() == ASTNode.COMPILATION_UNIT);
final CompilationUnit compilationUnit = (CompilationUnit) result;
assertProblemsSize(compilationUnit, 1, "Type safety: The expression of type ArrayList needs unchecked conversion to conform to List<String>");
}
/*
* Ensures that the binding key of a parameterized type can be computed when it contains a reference to a type variable.
* (regression test for bug 98259 NPE computing ITypeBinding#getKey())
*/
public void test0187() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
final String contents =
"public class X {\n" +
" <T> /*start*/Y<T>/*end*/ foo() {\n" +
" return null;" +
" };\n" +
"}\n" +
"class Y<E> {\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy,
false);
ParameterizedType type = (ParameterizedType) node;
assertBindingEquals(
"LX~Y<LX;:1TT;>;",
type.resolveBinding());
}
/*
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=98473
*/
public void test0188() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
final String contents =
"import java.util.List;\n" +
"\n" +
"public class X {\n" +
" class Counter<T, /*start*/L extends List<T>/*end*/> {\n" +
" private L _attribute;\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a type parameter", ASTNode.TYPE_PARAMETER, node.getNodeType());
ITypeBinding typeBinding = ((TypeParameter) node).resolveBinding();
assertNotNull("No binding", typeBinding);
assertFalse("Cannot be top level", typeBinding.isTopLevel());
assertFalse("A class", typeBinding.isClass());
assertFalse("An interface", typeBinding.isInterface());
assertTrue("Not a type variable", typeBinding.isTypeVariable());
}
public void test0189() 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/I1.java",
"package p;\n" +
"public class I1<E> {\n" +
"}",
"/P1/p/I2.java",
"package p;\n" +
"public interface I2<K, V> {\n" +
" interface I3<K,V> {}\n" +
" I1<I2.I3<K, V>> foo();\n" +
"}",
"/P1/p/X.java",
"package p;\n" +
"public class X<K,V> implements I2<K,V> {\n" +
" public I1<I2.I3<K,V>> foo() {\n" +
" return null;\n" +
" } \n" +
"}"
}, "1.5");
this.workingCopy = getWorkingCopy("/P1/p1/Y.java", true/*resolve*/);
ASTNode node = buildAST(
"package p1;\n" +
"import p.*;\n" +
"public abstract class Y implements I2 {\n" +
" public I1 foo() {\n" +
" return /*start*/bar().foo()/*end*/;\n" +
" }\n" +
" private X bar() {\n" +
" return null;\n" +
" }\n" +
"}",
this.workingCopy);
MethodInvocation method = (MethodInvocation) node;
IMethodBinding methodBinding = method.resolveMethodBinding();
assertBindingEquals(
"Lp/X;.foo()Lp/I1<Lp/I2$I3<TK;TV;>;>;",
methodBinding.getMethodDeclaration());
} finally {
deleteProject("P1");
}
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=99355
public void test0190() throws CoreException, IOException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
final String contents =
"class Container<T> {\n" +
" private final T m_t;\n" +
"\n" +
" public Container(T t) {\n" +
" m_t = t;\n" +
" }\n" +
"\n" +
" T get() {\n" +
" return m_t;\n" +
" }\n" +
"}\n" +
"\n" +
"class GenericContainer {\n" +
" private final Container<?> m_c;\n" +
"\n" +
" public GenericContainer(Container<?> c) {\n" +
" m_c = c;\n" +
" }\n" +
"\n" +
" public Container<?> getC() {\n" +
" return m_c;\n" +
" }\n" +
"}\n" +
"\n" +
"public class X {\n" +
" GenericContainer createContainer() {\n" +
" final Container<String> innerContainer = new Container<String>(\"hello\");\n" +
" final Container<Container<String>> outerContainer = new Container<Container<String>>(\n" +
" innerContainer);\n" +
" return new GenericContainer(outerContainer);\n" +
" }\n" +
"\n" +
" void method() {\n" +
" final GenericContainer createContainer = createContainer();\n" +
" /*start*/@SuppressWarnings(\"unchecked\")\n" +
" final Container<Container<String>> c = (Container<Container<String>>) createContainer.getC();/*end*/\n" +
" final Container<String> container = c.get();\n" +
" final String string = container.get();\n" +
" }\n" +
"}";
ASTNode node = buildAST(
contents,
this.workingCopy);
assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
List modifiers = statement.modifiers();
assertEquals("Wrong size", 2, modifiers.size());
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=99510
public void test0191() throws CoreException, IOException {
ICompilationUnit sourceUnit = getCompilationUnit("Converter15" , "src", "test0191", "X.java"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
ASTNode node = runConversion(AST.JLS3, sourceUnit, true);
assertNotNull("No node", node);
assertEquals("Not a compilation unit", ASTNode.COMPILATION_UNIT, node.getNodeType());
CompilationUnit unit = (CompilationUnit) node;
assertProblemsSize(unit, 0);
node = getASTNode(unit, 0, 0, 0);
assertNotNull("No node", node);
assertEquals("Not a variable declaration statement", ASTNode.VARIABLE_DECLARATION_STATEMENT, node.getNodeType());
VariableDeclarationStatement statement = (VariableDeclarationStatement) node;
List fragments = statement.fragments();
assertEquals("Wrong size", 1, fragments.size());
VariableDeclarationFragment fragment = (VariableDeclarationFragment) fragments.get(0);
Expression initializer = fragment.getInitializer();
assertNotNull("No initializer", initializer);
assertEquals("Not a cast expression", ASTNode.CAST_EXPRESSION, initializer.getNodeType());
CastExpression castExpression = (CastExpression) initializer;
Type type = castExpression.getType();
ITypeBinding typeBinding = type.resolveBinding();
assertNotNull("No binding", typeBinding);
Expression expression = castExpression.getExpression();
ITypeBinding typeBinding2 = expression.resolveTypeBinding();
assertNotNull("No binding", typeBinding2);
assertTrue("Not cast compatible", typeBinding2.isCastCompatible(typeBinding));
}
// Wrong ParameterizedTypeBinding yields null type declaration result
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=100584
public void test0192() throws JavaModelException {
this.workingCopy = getWorkingCopy("/Converter15/src/X.java", true/*resolve*/);
String contents =
"public class X<E> {\n" +
" public static class InnerClass {\n" +
" static class InnerInnerClass {\n" +
" /*start*/X.WrongInnerClass/*end*/.InnerInnerClass m;\n" +
" }\n" +
" }\n" +
"}";
IBinding[] bindings = resolveBindings(contents, this.workingCopy);
if (bindings[0] != null) {
// should not get here if patch 100584 applied
try {
bindings[0].toString();
fail("should get an exception if bug 100584 present");
// which means that the code would now return a non null,
// erroneous binding, yet able to respond to toString
} catch (Throwable t) {/* absorb quietly */}
}
assertTrue("should yield a null, not a malformed binding",
bindings[0] == null);
}
}