langtools/test/tools/javac/processing/environment/round/TestElementsAnnotatedWith.java
author jfranck
Wed, 26 Mar 2014 12:18:11 +0100
changeset 23795 62509b72088e
parent 22449 1fd6d4bec7dd
child 23967 8e99a0524d72
permissions -rw-r--r--
8038080: annotation processors don't visit declaration parameter annotations Reviewed-by: darcy Contributed-by: cushon@google.com, joel.franck@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
22441
05b907a2f359 8030049: RoundEnvironment.getElementsAnnotatedWith receives wrong elements
jlahoda
parents: 18669
diff changeset
     2
 * Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5320
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5320
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5320
diff changeset
    21
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
 * @test
23795
62509b72088e 8038080: annotation processors don't visit declaration parameter annotations
jfranck
parents: 22449
diff changeset
    26
 * @bug 6397298 6400986 6425592 6449798 6453386 6508401 6498938 6911854 8030049 8038080
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
 * @summary Tests that getElementsAnnotatedWith works properly.
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
 * @author  Joseph D. Darcy
14963
974d4423c999 8005282: Use @library tag with non-relative path for javac tests
darcy
parents: 6720
diff changeset
    29
 * @library /tools/javac/lib
6720
f16f91662ad8 6983738: Use a JavacTestingAbstractProcessor
darcy
parents: 5520
diff changeset
    30
 * @build   JavacTestingAbstractProcessor
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
 * @compile TestElementsAnnotatedWith.java
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
 * @compile InheritedAnnotation.java
18669
99572d59c916 7162089: Add support for repeating annotations to javax.annotation.processing
darcy
parents: 14963
diff changeset
    33
 * @compile TpAnno.java
23795
62509b72088e 8038080: annotation processors don't visit declaration parameter annotations
jfranck
parents: 22449
diff changeset
    34
 * @compile Anno.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
 * @compile -processor TestElementsAnnotatedWith -proc:only SurfaceAnnotations.java
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
 * @compile -processor TestElementsAnnotatedWith -proc:only BuriedAnnotations.java
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 * @compile -processor TestElementsAnnotatedWith -proc:only Part1.java Part2.java
2215
dd8663d971d1 6498938: Faulty comparison of TypeMirror objects in getElementsAnnotatedWith implementation
darcy
parents: 10
diff changeset
    38
 * @compile -processor TestElementsAnnotatedWith -proc:only C2.java
dd8663d971d1 6498938: Faulty comparison of TypeMirror objects in getElementsAnnotatedWith implementation
darcy
parents: 10
diff changeset
    39
 * @compile -processor TestElementsAnnotatedWith -proc:only Foo.java
18669
99572d59c916 7162089: Add support for repeating annotations to javax.annotation.processing
darcy
parents: 14963
diff changeset
    40
 * @compile -processor TestElementsAnnotatedWith -proc:only TypeParameterAnnotations.java
23795
62509b72088e 8038080: annotation processors don't visit declaration parameter annotations
jfranck
parents: 22449
diff changeset
    41
 * @compile -processor TestElementsAnnotatedWith -proc:only ParameterAnnotations.java
22441
05b907a2f359 8030049: RoundEnvironment.getElementsAnnotatedWith receives wrong elements
jlahoda
parents: 18669
diff changeset
    42
 * @compile/fail/ref=ErroneousAnnotations.out -processor TestElementsAnnotatedWith -proc:only -XDrawDiagnostics ErroneousAnnotations.java
4551
a986317586f6 6911854: Update TestElementsAnnotatedWith.java to use @compile/proc
darcy
parents: 3777
diff changeset
    43
 * @compile Foo.java
a986317586f6 6911854: Update TestElementsAnnotatedWith.java to use @compile/proc
darcy
parents: 3777
diff changeset
    44
 * @compile/process -processor TestElementsAnnotatedWith -proc:only Foo
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
import java.lang.annotation.Annotation;
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
import java.util.Collections;
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
import java.util.Set;
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
import java.util.HashSet;
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
import java.util.Arrays;
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
import javax.annotation.processing.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
import javax.lang.model.element.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
import static javax.lang.model.util.ElementFilter.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
 * This processor verifies that the information returned by
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
 * getElementsAnnotatedWith is consistent with the expected results
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
 * stored in an AnnotatedElementInfo annotation.
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
@AnnotatedElementInfo(annotationName="java.lang.SuppressWarnings", expectedSize=0, names={})
6720
f16f91662ad8 6983738: Use a JavacTestingAbstractProcessor
darcy
parents: 5520
diff changeset
    62
public class TestElementsAnnotatedWith extends JavacTestingAbstractProcessor {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
    public boolean process(Set<? extends TypeElement> annotations,
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
                           RoundEnvironment roundEnvironment) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
        TypeElement annotatedElementInfoElement =
6720
f16f91662ad8 6983738: Use a JavacTestingAbstractProcessor
darcy
parents: 5520
diff changeset
    67
            elements.getTypeElement("AnnotatedElementInfo");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
        Set<? extends Element> resultsMeta = Collections.emptySet();
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
        Set<? extends Element> resultsBase = Collections.emptySet();
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
        if (!roundEnvironment.processingOver()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
            testNonAnnotations(roundEnvironment);
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
            // Verify AnnotatedElementInfo is present on the first
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
            // specified type.
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
            TypeElement firstType = typesIn(roundEnvironment.getRootElements()).iterator().next();
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
            AnnotatedElementInfo annotatedElementInfo = firstType.getAnnotation(AnnotatedElementInfo.class);
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
            boolean failed = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
            if (annotatedElementInfo == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
                throw new IllegalArgumentException("Missing AnnotatedElementInfo annotation on " +
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
                                                  firstType);
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
            else {
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
                // Verify that the annotation information is as
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
                // expected.
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
5320
e2aaa958b02d 6939618: Revert 'simple' diamond implementation
mcimadamore
parents: 4551
diff changeset
    90
                Set<String> expectedNames = new HashSet<String>(Arrays.asList(annotatedElementInfo.names()));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
                resultsMeta =
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
                    roundEnvironment.
6720
f16f91662ad8 6983738: Use a JavacTestingAbstractProcessor
darcy
parents: 5520
diff changeset
    94
                    getElementsAnnotatedWith(elements.getTypeElement(annotatedElementInfo.annotationName()));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
                System.err.println("Results: " + resultsMeta);
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
                if (resultsMeta.size() != annotatedElementInfo.expectedSize()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
                    failed = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
                    System.err.printf("Bad number of elements; expected %d, got %d%n",
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
                                      annotatedElementInfo.expectedSize(), resultsMeta.size());
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
                } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
                    for(Element element : resultsMeta) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
                        String simpleName = element.getSimpleName().toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
                        if (!expectedNames.contains(simpleName) ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
                            failed = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
                            System.err.println("Name ``" + simpleName + "'' not expected.");
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
                        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
            resultsBase = computeResultsBase(roundEnvironment, annotatedElementInfo.annotationName());
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
            if (!resultsMeta.equals(resultsBase)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
                failed = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
                System.err.println("Base and Meta sets unequal;\n meta: " + resultsMeta +
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
                                   "\nbase: " + resultsBase);
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
            if (failed) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
                System.err.println("AnnotatedElementInfo: " + annotatedElementInfo);
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
                throw new RuntimeException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
            // If processing is over without an error, the specified
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
            // elements should be empty so an empty set should be returned.
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
            resultsMeta = roundEnvironment.getElementsAnnotatedWith(annotatedElementInfoElement);
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
            resultsBase = roundEnvironment.getElementsAnnotatedWith(AnnotatedElementInfo.class);
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
            if (!resultsMeta.isEmpty())
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
                throw new RuntimeException("Nonempty resultsMeta: " + resultsMeta);
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
            if (!resultsBase.isEmpty())
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
                throw new RuntimeException("Nonempty resultsBase: " + resultsBase);
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
    private Set<? extends Element> computeResultsBase(RoundEnvironment roundEnvironment, String name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
            return roundEnvironment.
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
                getElementsAnnotatedWith(Class.forName(name).asSubclass(Annotation.class));
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
        } catch(ClassNotFoundException cnfe) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
            throw new RuntimeException(cnfe);
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
     * Verify non-annotation types result in
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
     * IllegalArgumentExceptions.
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    private void testNonAnnotations(RoundEnvironment roundEnvironment) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
            Set<? extends Element> elements = roundEnvironment.getElementsAnnotatedWith((Class)Object.class );
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
            throw new RuntimeException("Illegal argument exception not thrown");
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
        } catch(IllegalArgumentException iae) {}
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
        try {
4551
a986317586f6 6911854: Update TestElementsAnnotatedWith.java to use @compile/proc
darcy
parents: 3777
diff changeset
   159
            Set<? extends Element> elements =
a986317586f6 6911854: Update TestElementsAnnotatedWith.java to use @compile/proc
darcy
parents: 3777
diff changeset
   160
                roundEnvironment.getElementsAnnotatedWith(processingEnv.
a986317586f6 6911854: Update TestElementsAnnotatedWith.java to use @compile/proc
darcy
parents: 3777
diff changeset
   161
                                                          getElementUtils().
a986317586f6 6911854: Update TestElementsAnnotatedWith.java to use @compile/proc
darcy
parents: 3777
diff changeset
   162
                                                          getTypeElement("java.lang.Object") );
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
            throw new RuntimeException("Illegal argument exception not thrown");
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
        } catch(IllegalArgumentException iae) {}
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
}