6338N/A/*
6338N/A * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
6338N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6338N/A *
6338N/A * This code is free software; you can redistribute it and/or modify it
6338N/A * under the terms of the GNU General Public License version 2 only, as
6338N/A * published by the Free Software Foundation.
6338N/A *
6338N/A * This code is distributed in the hope that it will be useful, but WITHOUT
6338N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6338N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
6338N/A * version 2 for more details (a copy is included in the LICENSE file that
6338N/A * accompanied this code).
6338N/A *
6338N/A * You should have received a copy of the GNU General Public License version
6338N/A * 2 along with this work; if not, write to the Free Software Foundation,
6338N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6338N/A *
6338N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
6338N/A * or visit www.oracle.com if you need additional information or have any
6338N/A * questions.
6338N/A */
6338N/A
6338N/A/*
6338N/A * @test
6338N/A * @bug 8010117
6338N/A * @summary Test CallerSensitiveFinder to find missing annotation
6338N/A * @compile -XDignore.symbol.file MissingCallerSensitive.java
6338N/A * @build CallerSensitiveFinder MethodFinder ClassFileReader
6338N/A * @run main/othervm MissingCallerSensitive
6338N/A */
6338N/A
6338N/Aimport java.nio.file.Path;
6338N/Aimport java.nio.file.Paths;
6338N/Aimport java.util.*;
6338N/Apublic class MissingCallerSensitive {
6338N/A public static void main(String[] args) throws Exception {
6338N/A String testclasses = System.getProperty("test.classes", ".");
6338N/A List<Path> classes = new ArrayList<>();
6338N/A classes.add(Paths.get(testclasses, "MissingCallerSensitive.class"));
6338N/A
6338N/A final String method = "sun/reflect/Reflection.getCallerClass";
6338N/A CallerSensitiveFinder csfinder = new CallerSensitiveFinder(method);
6338N/A List<String> errors = csfinder.run(classes);
6338N/A /*
6338N/A * Expected 1 method missing @CallerSenitive and 2 methods not in
6338N/A * the MethodHandleNatives CS list
6338N/A */
6338N/A if (errors.size() != 3) {
6338N/A throw new RuntimeException("Unexpected number of methods found: " + errors.size());
6338N/A }
6338N/A int count=0;
6338N/A for (String e : errors) {
6338N/A if (e.startsWith("MissingCallerSensitive#missingCallerSensitiveAnnotation ")) {
6338N/A count++;
6338N/A }
6338N/A }
6338N/A if (count != 2) {
6338N/A throw new RuntimeException("Error: expected 1 method missing annotation & missing in the list");
6338N/A }
6338N/A }
6338N/A
6338N/A @sun.reflect.CallerSensitive
6338N/A public ClassLoader getCallerLoader() {
6338N/A Class<?> c = sun.reflect.Reflection.getCallerClass();
6338N/A return c.getClassLoader();
6338N/A }
6338N/A
6338N/A public ClassLoader missingCallerSensitiveAnnotation() {
6338N/A Class<?> c = sun.reflect.Reflection.getCallerClass();
6338N/A return c.getClassLoader();
6338N/A }
6338N/A}