langtools/test/tools/javap/T6729471.java
author jjg
Thu, 31 Mar 2016 15:20:50 -0700
changeset 36778 e04318f39f92
parent 36526 3b41f1c69604
permissions -rw-r--r--
8152897: refactor ToolBox to allow reduced documented dependencies Reviewed-by: vromero
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
/*
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
     2
 * Copyright (c) 2009, 2016, Oracle and/or its affiliates. All rights reserved.
3548
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
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3768
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3768
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3768
diff changeset
    21
 * questions.
3548
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
 * @test
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    26
 * @bug 6729471
27323
babdaa819add 8062336: Revert tools/javap/T6729471.java to original test code
sogoel
parents: 27234
diff changeset
    27
 * @summary javap does not output inner interfaces of an interface
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    28
 * @library /tools/lib
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 27579
diff changeset
    29
 * @modules jdk.compiler/com.sun.tools.javac.api
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 27579
diff changeset
    30
 *          jdk.compiler/com.sun.tools.javac.main
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    31
 *          jdk.jdeps/com.sun.tools.javap
36778
e04318f39f92 8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents: 36526
diff changeset
    32
 * @build toolbox.ToolBox toolbox.JarTask
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    33
 * @run main T6729471
3548
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
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    36
import java.io.*;
3768
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    37
import java.net.*;
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    38
import java.util.*;
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    39
import javax.tools.*;
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    40
36778
e04318f39f92 8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents: 36526
diff changeset
    41
import toolbox.JarTask;
e04318f39f92 8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents: 36526
diff changeset
    42
import toolbox.ToolBox;
e04318f39f92 8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents: 36526
diff changeset
    43
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    44
public class T6729471
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    45
{
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    46
    public static void main(String... args) throws IOException {
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    47
        new T6729471().run();
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    48
    }
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    49
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    50
    void run() throws IOException {
7333
a9ed6bf644fc 7002346: javap test relies on location of scratch directory
jjg
parents: 5520
diff changeset
    51
        File testClasses = new File(System.getProperty("test.classes"));
a9ed6bf644fc 7002346: javap test relies on location of scratch directory
jjg
parents: 5520
diff changeset
    52
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    53
        // simple class
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    54
        verify("java.util.Map",
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    55
                "public abstract boolean containsKey(java.lang.Object)");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    56
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    57
        // inner class
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    58
        verify("java.util.Map.Entry",
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    59
                "public abstract K getKey()");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    60
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    61
        // file name
7333
a9ed6bf644fc 7002346: javap test relies on location of scratch directory
jjg
parents: 5520
diff changeset
    62
        verify(new File(testClasses, "T6729471.class").getPath(),
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    63
                "public static void main(java.lang.String...)");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    64
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    65
        // file url
7333
a9ed6bf644fc 7002346: javap test relies on location of scratch directory
jjg
parents: 5520
diff changeset
    66
        verify(new File(testClasses, "T6729471.class").toURI().toString(),
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    67
                "public static void main(java.lang.String...)");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    68
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    69
        // jar url
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    70
        File testJar = createJar("test.jar", "java.util.*");
3768
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    71
        try {
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    72
            verify("jar:" + testJar.toURL() + "!/java/util/Map.class",
27323
babdaa819add 8062336: Revert tools/javap/T6729471.java to original test code
sogoel
parents: 27234
diff changeset
    73
                "public abstract boolean containsKey(java.lang.Object)");
3768
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    74
        } catch (MalformedURLException e) {
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    75
            error(e.toString());
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    76
        }
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    77
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    78
        if (errors > 0)
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    79
            throw new Error(errors + " found.");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    80
    }
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    81
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    82
    File createJar(String name, String... paths) throws IOException {
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    83
        JavaCompiler comp = ToolProvider.getSystemJavaCompiler();
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    84
        try (JavaFileManager fm = comp.getStandardFileManager(null, null, null)) {
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    85
            File f = new File(name);
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    86
            ToolBox tb = new ToolBox();
36778
e04318f39f92 8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents: 36526
diff changeset
    87
            new JarTask(tb, f.getPath())
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    88
                .files(fm, StandardLocation.PLATFORM_CLASS_PATH, paths)
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    89
                .run();
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    90
            return f;
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    91
        }
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    92
    }
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    93
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    94
    void verify(String className, String... expects) {
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    95
        String output = javap(className);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    96
        for (String expect: expects) {
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    97
            if (output.indexOf(expect)< 0)
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    98
                error(expect + " not found");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    99
        }
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
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   102
    void error(String msg) {
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   103
        System.err.println(msg);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   104
        errors++;
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   105
    }
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   106
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   107
    int errors;
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   108
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   109
    String javap(String className) {
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   110
        String testClasses = System.getProperty("test.classes", ".");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   111
        StringWriter sw = new StringWriter();
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   112
        PrintWriter out = new PrintWriter(sw);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   113
        String[] args = { "-classpath", testClasses, className };
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   114
        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
   115
        out.close();
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   116
        String output = sw.toString();
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   117
        System.out.println("class " + className);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   118
        System.out.println(output);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   119
        if (rc != 0)
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   120
            throw new Error("javap failed. rc=" + rc);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   121
        if (output.indexOf("Error:") != -1)
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   122
            throw new Error("javap reported error.");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   123
        return output;
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   124
    }
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   125
}
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   126