test/jdk/tools/jlink/IntegrationTest.java
author sgehwolf
Thu, 14 Mar 2019 14:04:39 +0100
changeset 54824 adb3a3aa2e52
parent 53923 c431ab7f9e85
permissions -rw-r--r--
8214796: Create a jlink plugin for stripping debug info symbols from native libraries Reviewed-by: alanb, mchung, erikj, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 44359
diff changeset
     2
 * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
36511
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
import java.io.File;
40111
0fc6d1871da6 8159487: Add JAVA_VERSION, OS_NAME, OS_ARCH properties in release file
sundar
parents: 39834
diff changeset
    25
import java.io.FileReader;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    26
import java.io.IOException;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    27
import java.io.UncheckedIOException;
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 44359
diff changeset
    28
import java.nio.ByteOrder;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    29
import java.nio.file.Files;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    30
import java.nio.file.Path;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    31
import java.nio.file.Paths;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    32
import java.util.ArrayList;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    33
import java.util.Collections;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    34
import java.util.HashMap;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    35
import java.util.HashSet;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    36
import java.util.List;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    37
import java.util.Map;
40111
0fc6d1871da6 8159487: Add JAVA_VERSION, OS_NAME, OS_ARCH properties in release file
sundar
parents: 39834
diff changeset
    38
import java.util.Properties;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    39
import java.util.Set;
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39129
diff changeset
    40
import java.util.function.Function;
41559
5b33f33df1fb 8168091: jlink should check security permission early when programmatic access is used
sundar
parents: 40939
diff changeset
    41
import jdk.tools.jlink.internal.Jlink;
47464
36de9c637393 8189777: jlink --module-path default value and automatic addition of $JAVA_HOME/jmods if java.base is missing
sundar
parents: 47216
diff changeset
    42
import jdk.tools.jlink.internal.JlinkTask;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    43
import jdk.tools.jlink.builder.DefaultImageBuilder;
39834
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39505
diff changeset
    44
import jdk.tools.jlink.plugin.ResourcePool;
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39505
diff changeset
    45
import jdk.tools.jlink.plugin.ResourcePoolBuilder;
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39129
diff changeset
    46
import jdk.tools.jlink.plugin.Plugin;
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39129
diff changeset
    47
import jdk.tools.jlink.internal.ExecutableImage;
41559
5b33f33df1fb 8168091: jlink should check security permission early when programmatic access is used
sundar
parents: 40939
diff changeset
    48
import jdk.tools.jlink.internal.Jlink.JlinkConfiguration;
5b33f33df1fb 8168091: jlink should check security permission early when programmatic access is used
sundar
parents: 40939
diff changeset
    49
import jdk.tools.jlink.internal.Jlink.PluginsConfiguration;
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39129
diff changeset
    50
import jdk.tools.jlink.internal.PostProcessor;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    51
import jdk.tools.jlink.internal.plugins.DefaultCompressPlugin;
53923
c431ab7f9e85 8218913: Rename --strip-debug jlink plugin
sgehwolf
parents: 47464
diff changeset
    52
import jdk.tools.jlink.internal.plugins.DefaultStripDebugPlugin;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    53
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    54
import tests.Helper;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    55
import tests.JImageGenerator;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    56
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    57
/*
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    58
 * @test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    59
 * @summary Test integration API
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    60
 * @author Jean-Francois Denise
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    61
 * @library ../lib
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    62
 * @modules java.base/jdk.internal.jimage
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    63
 *          jdk.jdeps/com.sun.tools.classfile
38320
e24c7029e8ba 8156914: jlink API minor cleanups
sundar
parents: 37779
diff changeset
    64
 *          jdk.jlink/jdk.tools.jlink.builder
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    65
 *          jdk.jlink/jdk.tools.jlink.internal
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    66
 *          jdk.jlink/jdk.tools.jlink.internal.plugins
43185
d75d9ff8d4e7 8171380: Remove all exports from jdk.jlink
chegar
parents: 42762
diff changeset
    67
 *          jdk.jlink/jdk.tools.jlink.plugin
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    68
 *          jdk.jlink/jdk.tools.jmod
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    69
 *          jdk.jlink/jdk.tools.jimage
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    70
 *          jdk.compiler
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    71
 * @build tests.*
54824
adb3a3aa2e52 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents: 53923
diff changeset
    72
 * @run main/othervm -Xmx1g IntegrationTest
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    73
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    74
public class IntegrationTest {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    75
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    76
    private static final List<Integer> ordered = new ArrayList<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    77
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39129
diff changeset
    78
    public static class MyPostProcessor implements PostProcessor, Plugin {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    79
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
        public static final String NAME = "mypostprocessor";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    81
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    82
        @Override
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    83
        public List<String> process(ExecutableImage image) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    84
            try {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    85
                Files.createFile(image.getHome().resolve("toto.txt"));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    86
                return null;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
            } catch (IOException ex) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    88
                throw new UncheckedIOException(ex);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    89
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    90
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    91
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    92
        @Override
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    93
        public String getName() {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    94
            return NAME;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    95
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    96
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    97
        @Override
39129
4b2086305b68 8159593: Plugin Set<Category> getType() should return a Category
sundar
parents: 38320
diff changeset
    98
        public Category getType() {
4b2086305b68 8159593: Plugin Set<Category> getType() should return a Category
sundar
parents: 38320
diff changeset
    99
            return Category.PROCESSOR;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   100
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   101
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   102
        @Override
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   103
        public void configure(Map<String, String> config) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   104
            throw new UnsupportedOperationException("Shouldn't be called");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   105
        }
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39129
diff changeset
   106
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39129
diff changeset
   107
        @Override
39834
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39505
diff changeset
   108
        public ResourcePool transform(ResourcePool in, ResourcePoolBuilder out) {
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39129
diff changeset
   109
            in.transformAndCopy(Function.identity(), out);
39834
53a6fb443c20 8162538: plugin API should avoid read only pool, have module view separated from resource view and have pool builder to modify
sundar
parents: 39505
diff changeset
   110
            return out.build();
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39129
diff changeset
   111
        }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   112
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   113
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   114
    public static void main(String[] args) throws Exception {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   115
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   116
        Helper helper = Helper.newHelper();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   117
        if (helper == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   118
            System.err.println("Test not run");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   119
            return;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   120
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   121
        apitest();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   122
        test();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   123
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   124
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   125
    private static void apitest() throws Exception {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   126
        boolean failed = false;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   127
        Jlink jl = new Jlink();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   128
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   129
        try {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   130
            jl.build(null);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   131
            failed = true;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   132
        } catch (Exception ex) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   133
            // XXX OK
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   134
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   135
        if (failed) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   136
            throw new Exception("Should have failed");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   137
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   138
        System.out.println(jl);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   139
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   140
        Plugin p = Jlink.newPlugin("toto", Collections.emptyMap(), null);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   141
        if (p != null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   142
            throw new Exception("Plugin should be null");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   143
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   144
43791
116beb9c53a5 8174209: Renumber the compress levels
sundar
parents: 43185
diff changeset
   145
        Plugin p2 = Jlink.newPlugin("compress", Map.of("compress", "1"), null);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   146
        if (p2 == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   147
            throw new Exception("Plugin should not be null");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   148
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   149
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   150
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   151
    private static void test() throws Exception {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   152
        Jlink jlink = new Jlink();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   153
        Path output = Paths.get("integrationout");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   154
        List<Path> modulePaths = new ArrayList<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   155
        File jmods
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   156
                = JImageGenerator.getJModsDir(new File(System.getProperty("test.jdk")));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   157
        modulePaths.add(jmods.toPath());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   158
        Set<String> mods = new HashSet<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   159
        mods.add("java.management");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   160
        Set<String> limits = new HashSet<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   161
        limits.add("java.management");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   162
        JlinkConfiguration config = new Jlink.JlinkConfiguration(output,
47464
36de9c637393 8189777: jlink --module-path default value and automatic addition of $JAVA_HOME/jmods if java.base is missing
sundar
parents: 47216
diff changeset
   163
                mods, ByteOrder.nativeOrder(),
36de9c637393 8189777: jlink --module-path default value and automatic addition of $JAVA_HOME/jmods if java.base is missing
sundar
parents: 47216
diff changeset
   164
                JlinkTask.newModuleFinder(modulePaths, limits, mods));
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   165
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   166
        List<Plugin> lst = new ArrayList<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   167
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   168
        //Strip debug
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   169
        {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   170
            Map<String, String> config1 = new HashMap<>();
53923
c431ab7f9e85 8218913: Rename --strip-debug jlink plugin
sgehwolf
parents: 47464
diff changeset
   171
            config1.put(DefaultStripDebugPlugin.NAME, "");
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   172
            Plugin strip = Jlink.newPlugin("strip-debug", config1, null);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   173
            lst.add(strip);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   174
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   175
        // compress
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   176
        {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   177
            Map<String, String> config1 = new HashMap<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   178
            config1.put(DefaultCompressPlugin.NAME, "2");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   179
            Plugin compress
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   180
                    = Jlink.newPlugin("compress", config1, null);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   181
            lst.add(compress);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   182
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   183
        // Post processor
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   184
        {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   185
            lst.add(new MyPostProcessor());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   186
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   187
        // Image builder
42762
11a1ad340d4f 8170289: Re-examine entry point support in jlink
sundar
parents: 42338
diff changeset
   188
        DefaultImageBuilder builder = new DefaultImageBuilder(output, Collections.emptyMap());
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   189
        PluginsConfiguration plugins
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   190
                = new Jlink.PluginsConfiguration(lst, builder, null);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   191
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   192
        jlink.build(config, plugins);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   193
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   194
        if (!Files.exists(output)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   195
            throw new AssertionError("Directory not created");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   196
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   197
        File jimage = new File(output.toString(), "lib" + File.separator + "modules");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   198
        if (!jimage.exists()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   199
            throw new AssertionError("jimage not generated");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   200
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   201
        File release = new File(output.toString(), "release");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   202
        if (!release.exists()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   203
            throw new AssertionError("release not generated");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   204
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   205
40111
0fc6d1871da6 8159487: Add JAVA_VERSION, OS_NAME, OS_ARCH properties in release file
sundar
parents: 39834
diff changeset
   206
        Properties props = new Properties();
0fc6d1871da6 8159487: Add JAVA_VERSION, OS_NAME, OS_ARCH properties in release file
sundar
parents: 39834
diff changeset
   207
        try (FileReader reader = new FileReader(release)) {
0fc6d1871da6 8159487: Add JAVA_VERSION, OS_NAME, OS_ARCH properties in release file
sundar
parents: 39834
diff changeset
   208
            props.load(reader);
0fc6d1871da6 8159487: Add JAVA_VERSION, OS_NAME, OS_ARCH properties in release file
sundar
parents: 39834
diff changeset
   209
        }
0fc6d1871da6 8159487: Add JAVA_VERSION, OS_NAME, OS_ARCH properties in release file
sundar
parents: 39834
diff changeset
   210
40939
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   211
        checkReleaseProperty(props, "JAVA_VERSION");
40111
0fc6d1871da6 8159487: Add JAVA_VERSION, OS_NAME, OS_ARCH properties in release file
sundar
parents: 39834
diff changeset
   212
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   213
        if (!Files.exists(output.resolve("toto.txt"))) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   214
            throw new AssertionError("Post processing not called");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   215
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   216
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   217
    }
40939
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   218
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   219
    static void checkReleaseProperty(Properties props, String name) {
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   220
        if (! props.containsKey(name)) {
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   221
            throw new AssertionError("release file does not contain property : " + name);
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   222
        }
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   223
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   224
        // property value is of min. length 3 and double quoted at the ends.
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   225
        String value = props.getProperty(name);
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   226
        if (value.length() < 3 ||
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   227
            value.charAt(0) != '"' ||
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   228
            value.charAt(value.length() - 1) != '"') {
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   229
            throw new AssertionError("release property " + name + " is not quoted property");
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   230
        }
7262d01be07b 8163320: JAVA_VERSION in release file should come from java.base module
sundar
parents: 40111
diff changeset
   231
    }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   232
}