1 /*
2  * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.
8  *
9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * version 2 for more details (a copy is included in the LICENSE file that
13  * accompanied this code).
14  *
15  * You should have received a copy of the GNU General Public License version
16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  */
23 
24 /*
25  * @test
26  * @bug 8044411
27  * @summary Tests the RuntimeVisibleAnnotations/RuntimeInvisibleAnnotations attribute.
28  * @modules jdk.jdeps/com.sun.tools.classfile
29  *          jdk.compiler/com.sun.tools.javac.api
30  *          jdk.compiler/com.sun.tools.javac.main
31  * @library /tools/lib /tools/javac/lib ../lib
32  * @build toolbox.ToolBox InMemoryFileManager TestResult TestBase
33  * @build WorkAnnotations TestCase ClassType TestAnnotationInfo
34  * @build RuntimeAnnotationsForInnerAnnotationTest AnnotationsTestBase RuntimeAnnotationsTestBase
35  * @run main RuntimeAnnotationsForInnerAnnotationTest
36  */
37 
38 import java.util.ArrayList;
39 import java.util.List;
40 
41 /**
42  * The test checks that RuntimeVisibleAnnotationsAttribute and RuntimeInvisibleAnnotationsAttribute
43  * are generated properly for inner classes annotations, for methods, for fields
44  *
45  * The test checks both single and repeatable annotations. In addition, all possible combinations
46  * of retention policies are tested. The test generates source code, compiles it and checks the byte code.
47  *
48  * See README.txt for more information.
49  */
50 public class RuntimeAnnotationsForInnerAnnotationTest extends RuntimeAnnotationsTestBase {
51     @Override
generateTestCases()52     public List<TestCase> generateTestCases() {
53         List<TestCase> testCases = new ArrayList<>();
54         for (List<TestAnnotationInfos> groupedAnnotations : groupAnnotations(getAllCombinationsOfAnnotations())) {
55             for (ClassType outerClassType : ClassType.values()) {
56                 TestCase test = new TestCase();
57                 TestCase.TestClassInfo clazz = test.addClassInfo(outerClassType, "Test");
58                 for (int i = 0; i < groupedAnnotations.size(); ++i) {
59                     TestCase.TestClassInfo anno = clazz.addInnerClassInfo(ClassType.ANNOTATION, "InnerAnnotation" + i);
60                     TestAnnotationInfos annotations = groupedAnnotations.get(i);
61                     annotations.annotate(anno);
62 
63                     TestCase.TestMethodInfo annoMethod = anno.addMethodInfo("interMethod" + i + "()");
64                     annotations.annotate(annoMethod);
65 
66                     TestCase.TestFieldInfo annoField = anno.addFieldInfo("annoField" + i);
67                     annotations.annotate(annoField);
68                 }
69                 testCases.add(test);
70             }
71         }
72         return testCases;
73     }
74 
main(String[] args)75     public static void main(String[] args) throws TestFailedException {
76         new RuntimeAnnotationsForInnerAnnotationTest().test();
77     }
78 }
79