langtools/test/tools/javap/T6729471.java
author akulyakh
Thu, 21 May 2015 11:41:04 -0700
changeset 30730 d3ce7619db2c
parent 27579 d1a63c99cdd5
child 34752 9c262a013456
permissions -rw-r--r--
8076543: Add @modules as needed to the langtools tests Reviewed-by: jjg, shurailine
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
/*
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 27579
diff changeset
     2
 * Copyright (c) 2009, 2015, 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
/*
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
27323
babdaa819add 8062336: Revert tools/javap/T6729471.java to original test code
sogoel
parents: 27234
diff changeset
    28
 * @summary javap does not output inner interfaces of an interface
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    29
 * @library /tools/lib
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 27579
diff changeset
    30
 * @modules jdk.compiler/com.sun.tools.javac.api
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 27579
diff changeset
    31
 *          jdk.compiler/com.sun.tools.javac.file
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 27579
diff changeset
    32
 *          jdk.compiler/com.sun.tools.javac.main
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    33
 * @build ToolBox
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    34
 * @run main T6729471
3548
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
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    37
import java.io.*;
3768
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    38
import java.net.*;
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    39
import java.util.*;
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    40
import javax.tools.*;
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    41
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    42
public class T6729471
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    43
{
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    44
    public static void main(String... args) throws IOException {
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    45
        new T6729471().run();
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    46
    }
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    47
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    48
    void run() throws IOException {
7333
a9ed6bf644fc 7002346: javap test relies on location of scratch directory
jjg
parents: 5520
diff changeset
    49
        File testClasses = new File(System.getProperty("test.classes"));
a9ed6bf644fc 7002346: javap test relies on location of scratch directory
jjg
parents: 5520
diff changeset
    50
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    51
        // simple class
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    52
        verify("java.util.Map",
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    53
                "public abstract boolean containsKey(java.lang.Object)");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    54
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    55
        // inner class
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    56
        verify("java.util.Map.Entry",
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    57
                "public abstract K getKey()");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    58
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    59
        // file name
7333
a9ed6bf644fc 7002346: javap test relies on location of scratch directory
jjg
parents: 5520
diff changeset
    60
        verify(new File(testClasses, "T6729471.class").getPath(),
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    61
                "public static void main(java.lang.String...)");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    62
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    63
        // file url
7333
a9ed6bf644fc 7002346: javap test relies on location of scratch directory
jjg
parents: 5520
diff changeset
    64
        verify(new File(testClasses, "T6729471.class").toURI().toString(),
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    65
                "public static void main(java.lang.String...)");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    66
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    67
        // jar url
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    68
        File testJar = createJar("test.jar", "java.util.*");
3768
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    69
        try {
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    70
            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
    71
                "public abstract boolean containsKey(java.lang.Object)");
3768
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    72
        } catch (MalformedURLException e) {
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    73
            error(e.toString());
46e043243c0e 6876753: javap tests fail on Windows
jjg
parents: 3548
diff changeset
    74
        }
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    75
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    76
        if (errors > 0)
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    77
            throw new Error(errors + " found.");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    78
    }
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    79
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    80
    File createJar(String name, String... paths) throws IOException {
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    81
        JavaCompiler comp = ToolProvider.getSystemJavaCompiler();
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    82
        try (JavaFileManager fm = comp.getStandardFileManager(null, null, null)) {
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    83
            File f = new File(name);
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    84
            ToolBox tb = new ToolBox();
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    85
            tb.new JarTask(f.getPath())
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    86
                .files(fm, StandardLocation.PLATFORM_CLASS_PATH, paths)
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    87
                .run();
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    88
            return f;
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    89
        }
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    90
    }
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27323
diff changeset
    91
3548
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    92
    void verify(String className, String... expects) {
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    93
        String output = javap(className);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    94
        for (String expect: expects) {
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    95
            if (output.indexOf(expect)< 0)
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
    96
                error(expect + " not found");
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
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   100
    void error(String msg) {
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   101
        System.err.println(msg);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   102
        errors++;
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   103
    }
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   104
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   105
    int errors;
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
    String javap(String className) {
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   108
        String testClasses = System.getProperty("test.classes", ".");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   109
        StringWriter sw = new StringWriter();
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   110
        PrintWriter out = new PrintWriter(sw);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   111
        String[] args = { "-classpath", testClasses, className };
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   112
        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
   113
        out.close();
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   114
        String output = sw.toString();
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   115
        System.out.println("class " + className);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   116
        System.out.println(output);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   117
        if (rc != 0)
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   118
            throw new Error("javap failed. rc=" + rc);
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   119
        if (output.indexOf("Error:") != -1)
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   120
            throw new Error("javap reported error.");
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   121
        return output;
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   122
    }
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   123
}
fd92f0d28cb9 6729471: javap should accept class files on the command line
jjg
parents:
diff changeset
   124