Probe.java 4.7 KB
Newer Older
D
duke 已提交
1
/*
2
 * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
D
duke 已提交
22 23 24 25
 */

/*
 * @test
26
 * @bug 5003916 6704655 6873951 6476261 8004928
D
duke 已提交
27 28 29 30 31 32
 * @summary Testing parsing of signatures attributes of nested classes
 * @author Joseph D. Darcy
 */

import java.lang.reflect.*;
import java.lang.annotation.*;
33 34
import java.util.*;
import static java.util.Arrays.*;
D
duke 已提交
35

36 37 38 39 40
@Classes({"java.util.concurrent.FutureTask",
          "java.util.concurrent.ConcurrentHashMap$EntryIterator",
          "java.util.concurrent.ConcurrentHashMap$KeyIterator",
          "java.util.concurrent.ConcurrentHashMap$ValueIterator",
          "java.util.AbstractList$ListItr",
41 42 43 44 45 46
          "java.util.EnumMap$EntryIterator",
          "java.util.EnumMap$KeyIterator",
          "java.util.EnumMap$ValueIterator",
          "java.util.IdentityHashMap$EntryIterator",
          "java.util.IdentityHashMap$KeyIterator",
          "java.util.IdentityHashMap$ValueIterator",
47 48 49 50 51 52 53 54
          "java.util.WeakHashMap$EntryIterator",
          "java.util.WeakHashMap$KeyIterator",
          "java.util.WeakHashMap$ValueIterator",
          "java.util.HashMap$EntryIterator",
          "java.util.HashMap$KeyIterator",
          "java.util.HashMap$ValueIterator",
          "java.util.LinkedHashMap$EntryIterator",
          "java.util.LinkedHashMap$KeyIterator",
55
          "java.util.LinkedHashMap$ValueIterator"})
D
duke 已提交
56
public class Probe {
57
    public static void main (String... args) throws Throwable {
58
        Classes classesAnnotation = (Probe.class).getAnnotation(Classes.class);
59
        List<String> names = new ArrayList<>(asList(classesAnnotation.value()));
60

D
duke 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
        int errs = 0;
        for(String name: names) {
            System.out.println("\nCLASS " + name);
            Class c = Class.forName(name, false, null);
            errs += probe(c);
            System.out.println(errs == 0 ? "  ok" : "  ERRORS:" + errs);
        }

        if (errs > 0 )
            throw new RuntimeException("Errors during probing.");
    }

    static int probe (Class c) {
        int errs = 0;

        try {
            c.getTypeParameters();
            c.getGenericSuperclass();
            c.getGenericInterfaces();
        } catch (Throwable t) {
            errs++;
            System.err.println(t);
        }

        Field[] fields = c.getDeclaredFields();
        if (fields != null)
            for(Field field: fields) {
                try {
                    field.getGenericType();
                } catch (Throwable t) {
                    errs++;
                    System.err.println("FIELD " + field);
                    System.err.println(t);
                }
            }

        Method[] methods = c.getDeclaredMethods();
        if (methods != null)
            for(Method method: methods) {
                try {
                    method.getTypeParameters();
                    method.getGenericReturnType();
                    method.getGenericParameterTypes();
                    method.getGenericExceptionTypes();
                } catch (Throwable t) {
                    errs++;
                    System.err.println("METHOD " + method);
                    System.err.println(t);
                }
            }

        Constructor[] ctors = c.getDeclaredConstructors();
        if (ctors != null)
            for(Constructor ctor: ctors) {
                try {
                    ctor.getTypeParameters();
                    ctor.getGenericParameterTypes();
                    ctor.getGenericExceptionTypes();
                } catch (Throwable t) {
                    errs++;
                    System.err.println("CONSTRUCTOR " + ctor);
                    System.err.println(t);
                }
            }

        return errs;
    }
}

@Retention(RetentionPolicy.RUNTIME)
@interface Classes {
    String [] value(); // list of classes to probe
}