langtools/test/tools/javap/T6729471.java
author never
Mon, 24 May 2010 13:53:38 -0700
changeset 5691 3b7ff7652596
parent 3768 46e043243c0e
child 5520 86e4b9a9da40
permissions -rw-r--r--
6490487: java support on 64 bit solaris x86 machines is broken. Reviewed-by: kvn, kamg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
     1
/*
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
     2
 * Copyright 2009 Sun Microsystems, Inc.  All Rights Reserved.
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
     4
 *
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
     7
 * published by the Free Software Foundation.
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
     8
 *
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    13
 * accompanied this code).
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    14
 *
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    18
 *
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    21
 * have any questions.
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    22
 */
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    23
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    24
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    25
/*
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    26
 * @test
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    27
 * @bug 6729471
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    28
 * @summary javap does not output inner interfaces of an interface
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    29
 */
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    30
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    31
import java.io.*;
3768
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    32
import java.net.*;
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    33
import java.util.*;
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    34
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    35
public class T6729471
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    36
{
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    37
    public static void main(String... args) {
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    38
        new T6729471().run();
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    39
    }
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    40
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    41
    void run() {
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    42
        // simple class
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    43
        verify("java.util.Map",
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    44
                "public abstract boolean containsKey(java.lang.Object)");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    45
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    46
        // inner class
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    47
        verify("java.util.Map.Entry",
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    48
                "public abstract K getKey()");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    49
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    50
        // file name
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    51
        verify("../classes/tools/javap/T6729471.class",
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    52
                "public static void main(java.lang.String...)");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    53
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    54
        // file url
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    55
        verify("file:../classes/tools/javap/T6729471.class",
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    56
                "public static void main(java.lang.String...)");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    57
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    58
        // jar url: rt.jar
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    59
        File java_home = new File(System.getProperty("java.home"));
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    60
        if (java_home.getName().equals("jre"))
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    61
            java_home = java_home.getParentFile();
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    62
        File rt_jar = new File(new File(new File(java_home, "jre"), "lib"), "rt.jar");
3768
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    63
        try {
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    64
            verify("jar:" + rt_jar.toURL() + "!/java/util/Map.class",
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    65
                "public abstract boolean containsKey(java.lang.Object)");
3768
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    66
        } catch (MalformedURLException e) {
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    67
            error(e.toString());
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    68
        }
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    69
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    70
        // jar url: ct.sym, if it exists
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    71
        File ct_sym = new File(new File(java_home, "lib"), "ct.sym");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    72
        if (ct_sym.exists()) {
3768
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    73
            try {
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    74
                verify("jar:" + ct_sym.toURL() + "!/META-INF/sym/rt.jar/java/util/Map.class",
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    75
                    "public abstract boolean containsKey(java.lang.Object)");
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    76
            } catch (MalformedURLException e) {
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    77
                error(e.toString());
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    78
            }
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    79
        } else
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    80
            System.err.println("warning: ct.sym not found");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    81
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    82
        if (errors > 0)
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    83
            throw new Error(errors + " found.");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    84
    }
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    85
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    86
    void verify(String className, String... expects) {
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    87
        String output = javap(className);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    88
        for (String expect: expects) {
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    89
            if (output.indexOf(expect)< 0)
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    90
                error(expect + " not found");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    91
        }
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    92
    }
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    93
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    94
    void error(String msg) {
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    95
        System.err.println(msg);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    96
        errors++;
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    97
    }
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    98
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    99
    int errors;
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   100
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   101
    String javap(String className) {
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   102
        String testClasses = System.getProperty("test.classes", ".");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   103
        StringWriter sw = new StringWriter();
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   104
        PrintWriter out = new PrintWriter(sw);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   105
        String[] args = { "-classpath", testClasses, className };
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   106
        int rc = com.sun.tools.javap.Main.run(args, out);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   107
        out.close();
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   108
        String output = sw.toString();
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   109
        System.out.println("class " + className);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   110
        System.out.println(output);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   111
        if (rc != 0)
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   112
            throw new Error("javap failed. rc=" + rc);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   113
        if (output.indexOf("Error:") != -1)
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   114
            throw new Error("javap reported error.");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   115
        return output;
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   116
    }
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   117
}
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   118