jdk/test/tools/jlink/JLink2Test.java
author sundar
Tue, 21 Jun 2016 19:05:34 +0530
changeset 39129 4b2086305b68
parent 37779 7c84df693837
child 43185 d75d9ff8d4e7
permissions -rw-r--r--
8159593: Plugin Set<Category> getType() should return a Category Reviewed-by: jlaskey
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     2
 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     4
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     7
 * published by the Free Software Foundation.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     8
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    13
 * accompanied this code).
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    14
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    18
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    21
 * questions.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    22
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    23
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    24
 /*
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    25
 * @test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    26
 * @summary Test image creation
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    27
 * @author Jean-Francois Denise
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    28
 * @library ../lib
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    29
 * @modules java.base/jdk.internal.jimage
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    30
 *          jdk.jdeps/com.sun.tools.classfile
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    31
 *          jdk.jlink/jdk.tools.jlink.internal
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    32
 *          jdk.jlink/jdk.tools.jmod
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    33
 *          jdk.jlink/jdk.tools.jimage
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    34
 *          jdk.compiler
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    35
 * @build tests.*
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    36
 * @run main/othervm -verbose:gc -Xmx1g JLink2Test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    37
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    38
import java.io.File;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    39
import java.io.FileOutputStream;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    40
import java.io.IOException;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    41
import java.lang.reflect.Layer;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    42
import java.nio.file.Files;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    43
import java.nio.file.Path;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    44
import java.util.ArrayList;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    45
import java.util.Arrays;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    46
import java.util.Collections;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    47
import java.util.List;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    48
import java.util.jar.JarEntry;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    49
import java.util.jar.JarOutputStream;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    50
import jdk.tools.jlink.internal.PluginRepository;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    51
import jdk.tools.jlink.plugin.Plugin;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    52
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    53
import tests.Helper;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    54
import tests.JImageGenerator;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    55
import tests.JImageValidator;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    56
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    57
public class JLink2Test {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    58
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    59
    public static void main(String[] args) throws Exception {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    60
        Helper helper = Helper.newHelper();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    61
        if (helper == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    62
            System.err.println("Test not run");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    63
            return;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    64
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    65
        helper.generateDefaultModules();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    66
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    67
        // This test case must be first one, the JlinkTask is clean
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    68
        // and reveals possible bug related to plugin options in defaults
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    69
        testSameNames(helper);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    70
        testModulePath(helper);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    71
        testOptions();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    72
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    73
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    74
    private static void testModulePath(Helper helper) throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    75
        Path doesNotExist = helper.createNewImageDir("doesnotexist");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    76
        Path jar = helper.getJarDir().resolve("bad.jar");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    77
        JImageGenerator.getJLinkTask()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    78
                .pluginModulePath(doesNotExist)
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    79
                .option("--help")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
                .call().assertSuccess();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    81
        Files.createFile(jar);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    82
        JImageGenerator.getJLinkTask()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    83
                .pluginModulePath(jar)
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    84
                .option("--help")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    85
                .call().assertFailure("(\n|\r|.)*Error: Invalid modules in the plugins path: (\n|\r|.)*");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    86
        JImageGenerator.getJLinkTask()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
                .pluginModulePath(jar.getParent())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    88
                .option("--help")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    89
                .call().assertFailure("Error: Invalid modules in the plugins path: .*zip file is empty(\n|\r|.)*");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    90
        try (JarOutputStream out = new JarOutputStream(new FileOutputStream(jar.toFile()))) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    91
            JarEntry entry = new JarEntry("class");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    92
            out.putNextEntry(entry);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    93
            out.write("AAAA".getBytes());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    94
            out.closeEntry();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    95
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    96
        JImageGenerator.getJLinkTask()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    97
                .pluginModulePath(jar.getParent())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    98
                .output(helper.createNewImageDir("crash"))
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    99
                .addJmods(helper.getStdJmodsDir())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   100
                .addJmods(jar.getParent())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   101
                .addMods("bad")
36739
145210aba850 8152704: jlink command line output/help message improvement
naoto
parents: 36511
diff changeset
   102
                .call().assertFailure("(\n|\r|.)*Error: module-info.class not found for bad module(\n|\r|.)*");
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   103
        try (JarOutputStream out = new JarOutputStream(new FileOutputStream(jar.toFile()))) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   104
            JarEntry entry = new JarEntry("classes");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   105
            out.putNextEntry(entry);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   106
            out.closeEntry();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   107
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   108
            entry = new JarEntry("classes/class");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   109
            out.putNextEntry(entry);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   110
            out.write("AAAA".getBytes());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   111
            out.closeEntry();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   112
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   113
        JImageGenerator.getJLinkTask()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   114
                .pluginModulePath(jar.getParent())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   115
                .output(helper.createNewImageDir("bad"))
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   116
                .addJmods(jar.getParent())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   117
                .addJars(helper.getStdJmodsDir())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   118
                .addMods("bad")
36739
145210aba850 8152704: jlink command line output/help message improvement
naoto
parents: 36511
diff changeset
   119
                .call().assertFailure("(\n|\r|.)*Error: module-info.class not found for bad module(\n|\r|.)*");
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   120
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   121
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   122
    private static void testSameNames(Helper helper) throws Exception {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   123
        // Multiple modules with the same name in modulepath, take the first one in the path.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   124
        // First jmods then jars. So jmods are found, jars are hidden.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   125
        String[] jarClasses = {"amodule.jar.Main"};
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   126
        String[] jmodsClasses = {"amodule.jmods.Main"};
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   127
        helper.generateDefaultJarModule("amodule", Arrays.asList(jarClasses));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   128
        helper.generateDefaultJModule("amodule", Arrays.asList(jmodsClasses));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   129
        List<String> okLocations = new ArrayList<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   130
        okLocations.addAll(Helper.toLocation("amodule", Arrays.asList(jmodsClasses)));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   131
        Path image = helper.generateDefaultImage(new String[0], "amodule").assertSuccess();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   132
        JImageValidator validator = new JImageValidator("amodule", okLocations,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   133
                image.toFile(), Collections.emptyList(), Collections.emptyList());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   134
        validator.validate();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   135
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   136
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   137
    private static void testOptions() throws Exception {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   138
        List<Plugin> builtInPlugins = new ArrayList<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   139
        builtInPlugins.addAll(PluginRepository.getPlugins(Layer.boot()));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   140
        if(builtInPlugins.isEmpty()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   141
            throw new Exception("No builtin plugins");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   142
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   143
        List<String> options = new ArrayList<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   144
        for (Plugin p : builtInPlugins) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   145
            if (p.getOption() == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   146
                throw new Exception("Null option for " + p.getName());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   147
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   148
            if (options.contains(p.getName())) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   149
                throw new Exception("Option " + p.getOption() + " used more than once");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   150
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   151
            options.add(p.getName());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   152
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   153
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   154
}