test/jdk/tools/jlink/JLink2Test.java
author alanb
Sat, 09 Feb 2019 08:54:02 +0000
branchniosocketimpl-branch
changeset 57170 52bc64277201
parent 47216 71c04702a3d5
permissions -rw-r--r--
Privileged block to create socket input/output streams should be in AbstractPlainSocketImpl
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
43185
d75d9ff8d4e7 8171380: Remove all exports from jdk.jlink
chegar
parents: 37779
diff changeset
    32
 *          jdk.jlink/jdk.tools.jlink.plugin
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    33
 *          jdk.jlink/jdk.tools.jmod
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    34
 *          jdk.jlink/jdk.tools.jimage
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    35
 *          jdk.compiler
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    36
 * @build tests.*
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    37
 * @run main/othervm -verbose:gc -Xmx1g JLink2Test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    38
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    39
import java.io.File;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    40
import java.io.FileOutputStream;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    41
import java.io.IOException;
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
        testOptions();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    71
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    72
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    73
    private static void testSameNames(Helper helper) throws Exception {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    74
        // Multiple modules with the same name in modulepath, take the first one in the path.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    75
        // First jmods then jars. So jmods are found, jars are hidden.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    76
        String[] jarClasses = {"amodule.jar.Main"};
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    77
        String[] jmodsClasses = {"amodule.jmods.Main"};
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    78
        helper.generateDefaultJarModule("amodule", Arrays.asList(jarClasses));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    79
        helper.generateDefaultJModule("amodule", Arrays.asList(jmodsClasses));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
        List<String> okLocations = new ArrayList<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    81
        okLocations.addAll(Helper.toLocation("amodule", Arrays.asList(jmodsClasses)));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    82
        Path image = helper.generateDefaultImage(new String[0], "amodule").assertSuccess();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    83
        JImageValidator validator = new JImageValidator("amodule", okLocations,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    84
                image.toFile(), Collections.emptyList(), Collections.emptyList());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    85
        validator.validate();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    86
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    88
    private static void testOptions() throws Exception {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    89
        List<Plugin> builtInPlugins = new ArrayList<>();
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 43328
diff changeset
    90
        builtInPlugins.addAll(PluginRepository.getPlugins(ModuleLayer.boot()));
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    91
        if(builtInPlugins.isEmpty()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    92
            throw new Exception("No builtin plugins");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    93
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    94
        List<String> options = new ArrayList<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    95
        for (Plugin p : builtInPlugins) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    96
            if (p.getOption() == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    97
                throw new Exception("Null option for " + p.getName());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    98
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    99
            if (options.contains(p.getName())) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   100
                throw new Exception("Option " + p.getOption() + " used more than once");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   101
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   102
            options.add(p.getName());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   103
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   104
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   105
}