jdk/test/tools/jmod/JmodTest.java
author mchung
Wed, 18 Jan 2017 11:08:46 -0800
changeset 43192 0c05ac48a30b
parent 43109 fe275140c3f1
child 43242 6c33c81be927
permissions -rw-r--r--
8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException Reviewed-by: alanb, chegar
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, 2016, 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
43067
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
    26
 * @bug 8142968 8166568 8166286 8170618 8168149
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
    27
 * @summary Basic test for jmod
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    28
 * @library /lib/testlibrary
41484
834b7539ada3 8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents: 39882
diff changeset
    29
 * @modules jdk.compiler
834b7539ada3 8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents: 39882
diff changeset
    30
 *          jdk.jlink
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    31
 * @build jdk.testlibrary.FileUtils CompilerUtils
43192
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
    32
 * @run testng/othervm -Djava.io.tmpdir=. JmodTest
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    33
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    34
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    35
import java.io.*;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    36
import java.lang.module.ModuleDescriptor;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    37
import java.lang.reflect.Method;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    38
import java.nio.file.*;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    39
import java.util.*;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    40
import java.util.function.Consumer;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    41
import java.util.regex.Pattern;
41484
834b7539ada3 8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents: 39882
diff changeset
    42
import java.util.spi.ToolProvider;
43192
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
    43
import java.util.stream.Collectors;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    44
import java.util.stream.Stream;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    45
import jdk.testlibrary.FileUtils;
43192
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
    46
import jdk.testlibrary.JDKToolFinder;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    47
import org.testng.annotations.BeforeTest;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    48
import org.testng.annotations.Test;
39882
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
    49
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
    50
import static java.io.File.pathSeparator;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    51
import static java.lang.module.ModuleDescriptor.Version;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    52
import static java.nio.charset.StandardCharsets.UTF_8;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    53
import static java.util.stream.Collectors.toSet;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    54
import static org.testng.Assert.*;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    55
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    56
public class JmodTest {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    57
41484
834b7539ada3 8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents: 39882
diff changeset
    58
    static final ToolProvider JMOD_TOOL = ToolProvider.findFirst("jmod")
834b7539ada3 8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents: 39882
diff changeset
    59
        .orElseThrow(() ->
834b7539ada3 8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents: 39882
diff changeset
    60
            new RuntimeException("jmod tool not found")
834b7539ada3 8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents: 39882
diff changeset
    61
        );
834b7539ada3 8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents: 39882
diff changeset
    62
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    63
    static final String TEST_SRC = System.getProperty("test.src", ".");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    64
    static final Path SRC_DIR = Paths.get(TEST_SRC, "src");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    65
    static final Path EXPLODED_DIR = Paths.get("build");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    66
    static final Path MODS_DIR = Paths.get("jmods");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    67
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    68
    static final String CLASSES_PREFIX = "classes/";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    69
    static final String CMDS_PREFIX = "bin/";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    70
    static final String LIBS_PREFIX = "native/";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    71
    static final String CONFIGS_PREFIX = "conf/";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    72
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    73
    @BeforeTest
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    74
    public void buildExplodedModules() throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    75
        if (Files.exists(EXPLODED_DIR))
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    76
            FileUtils.deleteFileTreeWithRetry(EXPLODED_DIR);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    77
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    78
        for (String name : new String[] { "foo"/*, "bar", "baz"*/ } ) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    79
            Path dir = EXPLODED_DIR.resolve(name);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
            assertTrue(compileModule(name, dir.resolve("classes")));
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
    81
            copyResource(SRC_DIR.resolve("foo"),
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
    82
                         dir.resolve("classes"),
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
    83
                         "jdk/test/foo/resources/foo.properties");
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    84
            createCmds(dir.resolve("bin"));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    85
            createLibs(dir.resolve("lib"));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    86
            createConfigs(dir.resolve("conf"));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    88
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    89
        if (Files.exists(MODS_DIR))
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    90
            FileUtils.deleteFileTreeWithRetry(MODS_DIR);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    91
        Files.createDirectories(MODS_DIR);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    92
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    93
41916
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
    94
    // JDK-8166286 - jmod fails on symlink to directory
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
    95
    @Test
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
    96
    public void testSymlinks() throws IOException {
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
    97
        Path apaDir = EXPLODED_DIR.resolve("apa");
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
    98
        Path classesDir = EXPLODED_DIR.resolve("apa").resolve("classes");
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
    99
        assertTrue(compileModule("apa", classesDir));
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   100
        Path libDir = apaDir.resolve("lib");
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   101
        createFiles(libDir, List.of("foo/bar/libfoo.so"));
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   102
        try {
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   103
            Path link = Files.createSymbolicLink(
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   104
                libDir.resolve("baz"), libDir.resolve("foo").toAbsolutePath());
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   105
            assertTrue(Files.exists(link));
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   106
        } catch (UnsupportedOperationException uoe) {
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   107
            // OS does not support symlinks. Nothing to test!
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   108
            return;
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   109
        }
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   110
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   111
        Path jmod = MODS_DIR.resolve("apa.jmod");
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   112
        jmod("create",
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   113
             "--libs=", libDir.toString(),
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   114
             "--class-path", classesDir.toString(),
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   115
             jmod.toString())
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   116
            .assertSuccess();
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   117
    }
eb4aa81c6c5f 8166286: jmod fails on symlink to directory
sundar
parents: 41484
diff changeset
   118
42922
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   119
    // JDK-8170618 - jmod should validate if any exported or open package is missing
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   120
    @Test
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   121
    public void testMissingPackages() throws IOException {
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   122
        Path apaDir = EXPLODED_DIR.resolve("apa");
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   123
        Path classesDir = EXPLODED_DIR.resolve("apa").resolve("classes");
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   124
        if (Files.exists(classesDir))
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   125
            FileUtils.deleteFileTreeWithRetry(classesDir);
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   126
        assertTrue(compileModule("apa", classesDir));
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   127
        FileUtils.deleteFileTreeWithRetry(classesDir.resolve("jdk"));
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   128
        Path jmod = MODS_DIR.resolve("apa.jmod");
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   129
        jmod("create",
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   130
             "--class-path", classesDir.toString(),
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   131
             jmod.toString())
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   132
            .assertFailure()
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   133
            .resultChecker(r -> {
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   134
                assertContains(r.output, "Packages that are exported or open in apa are not present: [jdk.test.apa]");
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   135
            });
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   136
        if (Files.exists(classesDir))
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   137
            FileUtils.deleteFileTreeWithRetry(classesDir);
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   138
    }
9111fb672357 8170618: jmod should validate if any exported or open package is missing
sundar
parents: 42703
diff changeset
   139
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   140
    @Test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   141
    public void testList() throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   142
        String cp = EXPLODED_DIR.resolve("foo").resolve("classes").toString();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   143
        jmod("create",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   144
             "--class-path", cp,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   145
             MODS_DIR.resolve("foo.jmod").toString())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   146
            .assertSuccess();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   147
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   148
        jmod("list",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   149
             MODS_DIR.resolve("foo.jmod").toString())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   150
            .assertSuccess()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   151
            .resultChecker(r -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   152
                // asserts dependent on the exact contents of foo
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   153
                assertContains(r.output, CLASSES_PREFIX + "module-info.class");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   154
                assertContains(r.output, CLASSES_PREFIX + "jdk/test/foo/Foo.class");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   155
                assertContains(r.output, CLASSES_PREFIX + "jdk/test/foo/internal/Message.class");
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   156
                assertContains(r.output, CLASSES_PREFIX + "jdk/test/foo/resources/foo.properties");
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   157
            });
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   158
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   159
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   160
    @Test
42468
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   161
    public void testExtractCWD() throws IOException {
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   162
        Path cp = EXPLODED_DIR.resolve("foo").resolve("classes");
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   163
        jmod("create",
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   164
             "--class-path", cp.toString(),
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   165
             MODS_DIR.resolve("fooExtractCWD.jmod").toString())
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   166
            .assertSuccess();
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   167
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   168
        jmod("extract",
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   169
             MODS_DIR.resolve("fooExtractCWD.jmod").toString())
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   170
            .assertSuccess()
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   171
            .resultChecker(r -> {
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   172
                // module-info should exist, but jmod will have added its Packages attr.
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   173
                assertTrue(Files.exists(Paths.get("classes/module-info.class")));
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   174
                assertSameContent(cp.resolve("jdk/test/foo/Foo.class"),
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   175
                                  Paths.get("classes/jdk/test/foo/Foo.class"));
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   176
                assertSameContent(cp.resolve("jdk/test/foo/internal/Message.class"),
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   177
                                  Paths.get("classes/jdk/test/foo/internal/Message.class"));
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   178
                assertSameContent(cp.resolve("jdk/test/foo/resources/foo.properties"),
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   179
                                  Paths.get("classes/jdk/test/foo/resources/foo.properties"));
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   180
            });
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   181
    }
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   182
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   183
    @Test
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   184
    public void testExtractDir() throws IOException {
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   185
        if (Files.exists(Paths.get("extractTestDir")))
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   186
            FileUtils.deleteFileTreeWithRetry(Paths.get("extractTestDir"));
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   187
        Path cp = EXPLODED_DIR.resolve("foo").resolve("classes");
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   188
        Path bp = EXPLODED_DIR.resolve("foo").resolve("bin");
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   189
        Path lp = EXPLODED_DIR.resolve("foo").resolve("lib");
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   190
        Path cf = EXPLODED_DIR.resolve("foo").resolve("conf");
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   191
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   192
        jmod("create",
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   193
             "--conf", cf.toString(),
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   194
             "--cmds", bp.toString(),
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   195
             "--libs", lp.toString(),
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   196
             "--class-path", cp.toString(),
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   197
             MODS_DIR.resolve("fooExtractDir.jmod").toString())
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   198
            .assertSuccess();
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   199
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   200
        jmod("extract",
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   201
             "--dir", "extractTestDir",
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   202
             MODS_DIR.resolve("fooExtractDir.jmod").toString())
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   203
            .assertSuccess();
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   204
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   205
        jmod("extract",
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   206
             "--dir", "extractTestDir",
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   207
             MODS_DIR.resolve("fooExtractDir.jmod").toString())
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   208
            .assertSuccess()
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   209
            .resultChecker(r -> {
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   210
                // check a sample of the extracted files
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   211
                Path p = Paths.get("extractTestDir");
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   212
                assertTrue(Files.exists(p.resolve("classes/module-info.class")));
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   213
                assertSameContent(cp.resolve("jdk/test/foo/Foo.class"),
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   214
                                  p.resolve("classes/jdk/test/foo/Foo.class"));
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   215
                assertSameContent(bp.resolve("first"),
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   216
                                  p.resolve(CMDS_PREFIX).resolve("first"));
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   217
                assertSameContent(lp.resolve("first.so"),
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   218
                                  p.resolve(LIBS_PREFIX).resolve("second.so"));
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   219
                assertSameContent(cf.resolve("second.cfg"),
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   220
                                  p.resolve(CONFIGS_PREFIX).resolve("second.cfg"));
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   221
            });
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   222
    }
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   223
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   224
    @Test
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   225
    public void testMainClass() throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   226
        Path jmod = MODS_DIR.resolve("fooMainClass.jmod");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   227
        FileUtils.deleteFileIfExistsWithRetry(jmod);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   228
        String cp = EXPLODED_DIR.resolve("foo").resolve("classes").toString();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   229
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   230
        jmod("create",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   231
             "--class-path", cp,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   232
             "--main-class", "jdk.test.foo.Foo",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   233
             jmod.toString())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   234
            .assertSuccess()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   235
            .resultChecker(r -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   236
                Optional<String> omc = getModuleDescriptor(jmod).mainClass();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   237
                assertTrue(omc.isPresent());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   238
                assertEquals(omc.get(), "jdk.test.foo.Foo");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   239
            });
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   240
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   241
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   242
    @Test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   243
    public void testModuleVersion() throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   244
        Path jmod = MODS_DIR.resolve("fooVersion.jmod");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   245
        FileUtils.deleteFileIfExistsWithRetry(jmod);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   246
        String cp = EXPLODED_DIR.resolve("foo").resolve("classes").toString();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   247
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   248
        jmod("create",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   249
             "--class-path", cp,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   250
             "--module-version", "5.4.3",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   251
             jmod.toString())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   252
            .assertSuccess()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   253
            .resultChecker(r -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   254
                Optional<Version> ov = getModuleDescriptor(jmod).version();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   255
                assertTrue(ov.isPresent());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   256
                assertEquals(ov.get().toString(), "5.4.3");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   257
            });
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   258
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   259
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   260
    @Test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   261
    public void testConfig() throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   262
        Path jmod = MODS_DIR.resolve("fooConfig.jmod");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   263
        FileUtils.deleteFileIfExistsWithRetry(jmod);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   264
        Path cp = EXPLODED_DIR.resolve("foo").resolve("classes");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   265
        Path cf = EXPLODED_DIR.resolve("foo").resolve("conf");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   266
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   267
        jmod("create",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   268
             "--class-path", cp.toString(),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   269
             "--config", cf.toString(),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   270
             jmod.toString())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   271
            .assertSuccess()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   272
            .resultChecker(r -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   273
                try (Stream<String> s1 = findFiles(cf).map(p -> CONFIGS_PREFIX + p);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   274
                     Stream<String> s2 = findFiles(cp).map(p -> CLASSES_PREFIX + p)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   275
                    Set<String> expectedFilenames = Stream.concat(s1, s2)
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   276
                                                          .collect(toSet());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   277
                    assertJmodContent(jmod, expectedFilenames);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   278
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   279
            });
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   280
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   281
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   282
    @Test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   283
    public void testCmds() throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   284
        Path jmod = MODS_DIR.resolve("fooCmds.jmod");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   285
        FileUtils.deleteFileIfExistsWithRetry(jmod);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   286
        Path cp = EXPLODED_DIR.resolve("foo").resolve("classes");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   287
        Path bp = EXPLODED_DIR.resolve("foo").resolve("bin");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   288
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   289
        jmod("create",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   290
             "--cmds", bp.toString(),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   291
             "--class-path", cp.toString(),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   292
             jmod.toString())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   293
            .assertSuccess()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   294
            .resultChecker(r -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   295
                try (Stream<String> s1 = findFiles(bp).map(p -> CMDS_PREFIX + p);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   296
                     Stream<String> s2 = findFiles(cp).map(p -> CLASSES_PREFIX + p)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   297
                    Set<String> expectedFilenames = Stream.concat(s1,s2)
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   298
                                                          .collect(toSet());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   299
                    assertJmodContent(jmod, expectedFilenames);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   300
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   301
            });
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   302
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   303
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   304
    @Test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   305
    public void testLibs() throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   306
        Path jmod = MODS_DIR.resolve("fooLibs.jmod");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   307
        FileUtils.deleteFileIfExistsWithRetry(jmod);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   308
        Path cp = EXPLODED_DIR.resolve("foo").resolve("classes");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   309
        Path lp = EXPLODED_DIR.resolve("foo").resolve("lib");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   310
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   311
        jmod("create",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   312
             "--libs=", lp.toString(),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   313
             "--class-path", cp.toString(),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   314
             jmod.toString())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   315
            .assertSuccess()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   316
            .resultChecker(r -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   317
                try (Stream<String> s1 = findFiles(lp).map(p -> LIBS_PREFIX + p);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   318
                     Stream<String> s2 = findFiles(cp).map(p -> CLASSES_PREFIX + p)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   319
                    Set<String> expectedFilenames = Stream.concat(s1,s2)
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   320
                                                          .collect(toSet());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   321
                    assertJmodContent(jmod, expectedFilenames);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   322
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   323
            });
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   324
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   325
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   326
    @Test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   327
    public void testAll() throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   328
        Path jmod = MODS_DIR.resolve("fooAll.jmod");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   329
        FileUtils.deleteFileIfExistsWithRetry(jmod);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   330
        Path cp = EXPLODED_DIR.resolve("foo").resolve("classes");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   331
        Path bp = EXPLODED_DIR.resolve("foo").resolve("bin");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   332
        Path lp = EXPLODED_DIR.resolve("foo").resolve("lib");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   333
        Path cf = EXPLODED_DIR.resolve("foo").resolve("conf");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   334
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   335
        jmod("create",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   336
             "--conf", cf.toString(),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   337
             "--cmds=", bp.toString(),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   338
             "--libs=", lp.toString(),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   339
             "--class-path", cp.toString(),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   340
             jmod.toString())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   341
            .assertSuccess()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   342
            .resultChecker(r -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   343
                try (Stream<String> s1 = findFiles(lp).map(p -> LIBS_PREFIX + p);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   344
                     Stream<String> s2 = findFiles(cp).map(p -> CLASSES_PREFIX + p);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   345
                     Stream<String> s3 = findFiles(bp).map(p -> CMDS_PREFIX + p);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   346
                     Stream<String> s4 = findFiles(cf).map(p -> CONFIGS_PREFIX + p)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   347
                    Set<String> expectedFilenames = Stream.concat(Stream.concat(s1,s2),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   348
                                                                  Stream.concat(s3, s4))
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   349
                                                          .collect(toSet());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   350
                    assertJmodContent(jmod, expectedFilenames);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   351
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   352
            });
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   353
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   354
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   355
    @Test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   356
    public void testExcludes() throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   357
        Path jmod = MODS_DIR.resolve("fooLibs.jmod");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   358
        FileUtils.deleteFileIfExistsWithRetry(jmod);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   359
        Path cp = EXPLODED_DIR.resolve("foo").resolve("classes");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   360
        Path lp = EXPLODED_DIR.resolve("foo").resolve("lib");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   361
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   362
        jmod("create",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   363
             "--libs=", lp.toString(),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   364
             "--class-path", cp.toString(),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   365
             "--exclude", "**internal**",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   366
             "--exclude", "first.so",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   367
             jmod.toString())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   368
             .assertSuccess()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   369
             .resultChecker(r -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   370
                 Set<String> expectedFilenames = new HashSet<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   371
                 expectedFilenames.add(CLASSES_PREFIX + "module-info.class");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   372
                 expectedFilenames.add(CLASSES_PREFIX + "jdk/test/foo/Foo.class");
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   373
                 expectedFilenames.add(CLASSES_PREFIX + "jdk/test/foo/resources/foo.properties");
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   374
                 expectedFilenames.add(LIBS_PREFIX + "second.so");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   375
                 expectedFilenames.add(LIBS_PREFIX + "third/third.so");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   376
                 assertJmodContent(jmod, expectedFilenames);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   377
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   378
                 Set<String> unexpectedFilenames = new HashSet<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   379
                 unexpectedFilenames.add(CLASSES_PREFIX + "jdk/test/foo/internal/Message.class");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   380
                 unexpectedFilenames.add(LIBS_PREFIX + "first.so");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   381
                 assertJmodDoesNotContain(jmod, unexpectedFilenames);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   382
             });
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   383
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   384
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   385
    @Test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   386
    public void describe() throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   387
        String cp = EXPLODED_DIR.resolve("foo").resolve("classes").toString();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   388
        jmod("create",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   389
             "--class-path", cp,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   390
              MODS_DIR.resolve("describeFoo.jmod").toString())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   391
             .assertSuccess();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   392
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   393
        jmod("describe",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   394
             MODS_DIR.resolve("describeFoo.jmod").toString())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   395
             .assertSuccess()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   396
             .resultChecker(r -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   397
                 // Expect similar output: "foo,  requires mandated java.base
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   398
                 // exports jdk.test.foo,  contains jdk.test.foo.internal"
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   399
                 Pattern p = Pattern.compile("\\s+foo\\s+requires\\s+mandated\\s+java.base");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   400
                 assertTrue(p.matcher(r.output).find(),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   401
                           "Expecting to find \"foo, requires java.base\"" +
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   402
                                "in output, but did not: [" + r.output + "]");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   403
                 p = Pattern.compile(
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   404
                        "exports\\s+jdk.test.foo\\s+contains\\s+jdk.test.foo.internal");
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   405
                 assertTrue(p.matcher(r.output).find(),
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   406
                           "Expecting to find \"exports ..., contains ...\"" +
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   407
                                "in output, but did not: [" + r.output + "]");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   408
             });
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   409
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   410
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   411
    @Test
39882
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   412
    public void testDuplicateEntries() throws IOException {
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   413
        Path jmod = MODS_DIR.resolve("testDuplicates.jmod");
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   414
        FileUtils.deleteFileIfExistsWithRetry(jmod);
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   415
        String cp = EXPLODED_DIR.resolve("foo").resolve("classes").toString();
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   416
        Path lp = EXPLODED_DIR.resolve("foo").resolve("lib");
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   417
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   418
        jmod("create",
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   419
             "--class-path", cp + pathSeparator + cp,
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   420
             jmod.toString())
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   421
             .assertSuccess()
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   422
             .resultChecker(r ->
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   423
                 assertContains(r.output, "Warning: ignoring duplicate entry")
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   424
             );
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   425
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   426
        FileUtils.deleteFileIfExistsWithRetry(jmod);
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   427
        jmod("create",
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   428
             "--class-path", cp,
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   429
             "--libs", lp.toString() + pathSeparator + lp.toString(),
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   430
             jmod.toString())
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   431
             .assertSuccess()
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   432
             .resultChecker(r ->
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   433
                 assertContains(r.output, "Warning: ignoring duplicate entry")
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   434
             );
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   435
    }
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   436
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   437
    @Test
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   438
    public void testIgnoreModuleInfoInOtherSections() throws IOException {
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   439
        Path jmod = MODS_DIR.resolve("testIgnoreModuleInfoInOtherSections.jmod");
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   440
        FileUtils.deleteFileIfExistsWithRetry(jmod);
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   441
        String cp = EXPLODED_DIR.resolve("foo").resolve("classes").toString();
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   442
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   443
        jmod("create",
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   444
            "--class-path", cp,
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   445
            "--libs", cp,
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   446
            jmod.toString())
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   447
            .assertSuccess()
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   448
            .resultChecker(r ->
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   449
                assertContains(r.output, "Warning: ignoring entry")
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   450
            );
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   451
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   452
        FileUtils.deleteFileIfExistsWithRetry(jmod);
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   453
        jmod("create",
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   454
             "--class-path", cp,
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   455
             "--cmds", cp,
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   456
             jmod.toString())
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   457
             .assertSuccess()
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   458
             .resultChecker(r ->
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   459
                 assertContains(r.output, "Warning: ignoring entry")
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   460
             );
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   461
    }
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   462
2a5433a2eca5 8134779: (jmod) ZipException is thrown if there are duplicate resources
chegar
parents: 36511
diff changeset
   463
    @Test
43067
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   464
    public void testLastOneWins() throws IOException {
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   465
        Path workDir = Paths.get("lastOneWins");
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   466
        if (Files.exists(workDir))
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   467
            FileUtils.deleteFileTreeWithRetry(workDir);
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   468
        Files.createDirectory(workDir);
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   469
        Path jmod = MODS_DIR.resolve("lastOneWins.jmod");
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   470
        FileUtils.deleteFileIfExistsWithRetry(jmod);
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   471
        Path cp = EXPLODED_DIR.resolve("foo").resolve("classes");
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   472
        Path bp = EXPLODED_DIR.resolve("foo").resolve("bin");
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   473
        Path lp = EXPLODED_DIR.resolve("foo").resolve("lib");
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   474
        Path cf = EXPLODED_DIR.resolve("foo").resolve("conf");
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   475
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   476
        Path shouldNotBeAdded = workDir.resolve("shouldNotBeAdded");
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   477
        Files.createDirectory(shouldNotBeAdded);
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   478
        Files.write(shouldNotBeAdded.resolve("aFile"), "hello".getBytes(UTF_8));
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   479
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   480
        // Pairs of options. For options with required arguments the last one
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   481
        // should win ( first should be effectively ignored, but may still be
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   482
        // validated ).
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   483
        jmod("create",
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   484
             "--conf", shouldNotBeAdded.toString(),
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   485
             "--conf", cf.toString(),
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   486
             "--cmds", shouldNotBeAdded.toString(),
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   487
             "--cmds", bp.toString(),
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   488
             "--libs", shouldNotBeAdded.toString(),
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   489
             "--libs", lp.toString(),
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   490
             "--class-path", shouldNotBeAdded.toString(),
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   491
             "--class-path", cp.toString(),
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   492
             "--main-class", "does.NotExist",
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   493
             "--main-class", "jdk.test.foo.Foo",
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   494
             "--module-version", "00001",
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   495
             "--module-version", "5.4.3",
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   496
             "--do-not-resolve-by-default",
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   497
             "--do-not-resolve-by-default",
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   498
             "--warn-if-resolved=incubating",
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   499
             "--warn-if-resolved=deprecated",
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   500
             MODS_DIR.resolve("lastOneWins.jmod").toString())
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   501
            .assertSuccess()
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   502
            .resultChecker(r -> {
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   503
                ModuleDescriptor md = getModuleDescriptor(jmod);
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   504
                Optional<String> omc = md.mainClass();
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   505
                assertTrue(omc.isPresent());
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   506
                assertEquals(omc.get(), "jdk.test.foo.Foo");
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   507
                Optional<Version> ov = md.version();
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   508
                assertTrue(ov.isPresent());
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   509
                assertEquals(ov.get().toString(), "5.4.3");
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   510
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   511
                try (Stream<String> s1 = findFiles(lp).map(p -> LIBS_PREFIX + p);
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   512
                     Stream<String> s2 = findFiles(cp).map(p -> CLASSES_PREFIX + p);
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   513
                     Stream<String> s3 = findFiles(bp).map(p -> CMDS_PREFIX + p);
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   514
                     Stream<String> s4 = findFiles(cf).map(p -> CONFIGS_PREFIX + p)) {
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   515
                    Set<String> expectedFilenames = Stream.concat(Stream.concat(s1,s2),
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   516
                                                                  Stream.concat(s3, s4))
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   517
                                                          .collect(toSet());
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   518
                    assertJmodContent(jmod, expectedFilenames);
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   519
                }
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   520
            });
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   521
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   522
        jmod("extract",
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   523
             "--dir", "blah",
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   524
             "--dir", "lastOneWinsExtractDir",
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   525
             jmod.toString())
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   526
            .assertSuccess()
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   527
            .resultChecker(r -> {
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   528
                assertTrue(Files.exists(Paths.get("lastOneWinsExtractDir")));
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   529
                assertTrue(Files.notExists(Paths.get("blah")));
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   530
            });
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   531
    }
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   532
3f011a470ce2 8168149: Examine the behavior of jmod command-line options - repeating vs last one wins
chegar
parents: 42922
diff changeset
   533
    @Test
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   534
    public void testPackagesAttribute() throws IOException {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   535
        Path jmod = MODS_DIR.resolve("foo.jmod");
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   536
        FileUtils.deleteFileIfExistsWithRetry(jmod);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   537
        String cp = EXPLODED_DIR.resolve("foo").resolve("classes").toString();
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   538
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   539
        Set<String> expectedPackages = Set.of("jdk.test.foo",
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   540
                                              "jdk.test.foo.internal",
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   541
                                              "jdk.test.foo.resources");
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   542
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   543
        jmod("create",
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   544
             "--class-path", cp,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   545
             jmod.toString())
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   546
             .assertSuccess()
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   547
             .resultChecker(r -> {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   548
                 Set<String> pkgs = getModuleDescriptor(jmod).packages();
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   549
                 assertEquals(pkgs, expectedPackages);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   550
             });
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   551
        }
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   552
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   553
    @Test
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   554
    public void testVersion() {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   555
        jmod("--version")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   556
            .assertSuccess()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   557
            .resultChecker(r -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   558
                assertContains(r.output, System.getProperty("java.version"));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   559
            });
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   560
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   561
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   562
    @Test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   563
    public void testHelp() {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   564
        jmod("--help")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   565
            .assertSuccess()
42703
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   566
            .resultChecker(r -> {
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   567
                assertTrue(r.output.startsWith("Usage: jmod"), "Help not printed");
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   568
                assertFalse(r.output.contains("--do-not-resolve-by-default"));
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   569
                assertFalse(r.output.contains("--warn-if-resolved"));
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   570
            });
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   571
    }
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   572
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   573
    @Test
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   574
    public void testHelpExtra() {
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   575
        jmod("--help-extra")
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   576
            .assertSuccess()
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   577
            .resultChecker(r -> {
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   578
                assertTrue(r.output.startsWith("Usage: jmod"), "Extra help not printed");
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   579
                assertContains(r.output, "--do-not-resolve-by-default");
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   580
                assertContains(r.output, "--warn-if-resolved");
20c39ea4a507 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42468
diff changeset
   581
            });
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   582
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   583
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   584
    @Test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   585
    public void testTmpFileRemoved() throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   586
        // Implementation detail: jmod tool creates <jmod-file>.tmp
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   587
        // Ensure that it is removed in the event of a failure.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   588
        // The failure in this case is a class in the unnamed package.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   589
43109
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   590
        String filename = "testTmpFileRemoved.jmod";
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   591
        Path jmod = MODS_DIR.resolve(filename);
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   592
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   593
        // clean up files
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   594
        FileUtils.deleteFileIfExistsWithRetry(jmod);
43109
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   595
        findTmpFiles(filename).forEach(tmp -> {
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   596
            try {
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   597
                FileUtils.deleteFileIfExistsWithRetry(tmp);
43192
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   598
            } catch (IOException e) {}
43109
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   599
        });
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   600
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   601
        String cp = EXPLODED_DIR.resolve("foo").resolve("classes") + File.pathSeparator +
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   602
                    EXPLODED_DIR.resolve("foo").resolve("classes")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   603
                                .resolve("jdk").resolve("test").resolve("foo").toString();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   604
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   605
        jmod("create",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   606
             "--class-path", cp,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   607
             jmod.toString())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   608
             .assertFailure()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   609
             .resultChecker(r -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   610
                 assertContains(r.output, "unnamed package");
43192
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   611
                 List<Path> tmpfiles = findTmpFiles(filename);
43109
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   612
                 assertTrue(tmpfiles.isEmpty(), "Unexpected tmp file:" + tmpfiles);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   613
             });
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   614
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   615
43192
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   616
    /*
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   617
     * Returns the list of writeable tmp files with the given prefix.
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   618
     *
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   619
     * Ignore the non-writeable tmp files because this test is possibly
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   620
     * running by another user.
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   621
     */
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   622
    private List<Path> findTmpFiles(String prefix) {
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   623
        Path tmpdir = Paths.get(System.getProperty("java.io.tmpdir"));
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   624
        try (Stream<Path> stream = Files.list(tmpdir)) {
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   625
            return stream.filter(p -> {
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   626
                        String fn = p.getFileName().toString();
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   627
                        return Files.isWritable(p)
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   628
                                && fn.startsWith(prefix) && fn.endsWith(".tmp");
0c05ac48a30b 8172870: test/tools/jmod/JmodTest.java fails on windows with AccessDeniedException
mchung
parents: 43109
diff changeset
   629
                    }).collect(Collectors.toList());
43109
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   630
        } catch (IOException e) {
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   631
            throw new UncheckedIOException(e);
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   632
        }
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   633
    }
fe275140c3f1 8160286: jmod hash is creating unlinkable modules
mchung
parents: 43067
diff changeset
   634
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   635
    // ---
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   636
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   637
    static boolean compileModule(String name, Path dest) throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   638
        return CompilerUtils.compile(SRC_DIR.resolve(name), dest);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   639
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   640
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   641
    static void assertContains(String output, String subString) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   642
        if (output.contains(subString))
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   643
            assertTrue(true);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   644
        else
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   645
            assertTrue(false,"Expected to find [" + subString + "], in output ["
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   646
                           + output + "]" + "\n");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   647
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   648
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   649
    static ModuleDescriptor getModuleDescriptor(Path jmod) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   650
        ClassLoader cl = ClassLoader.getSystemClassLoader();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   651
        try (FileSystem fs = FileSystems.newFileSystem(jmod, cl)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   652
            String p = "/classes/module-info.class";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   653
            try (InputStream is = Files.newInputStream(fs.getPath(p))) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   654
                return ModuleDescriptor.read(is);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   655
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   656
        } catch (IOException ioe) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   657
            throw new UncheckedIOException(ioe);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   658
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   659
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   660
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   661
    static Stream<String> findFiles(Path dir) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   662
        try {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   663
            return Files.find(dir, Integer.MAX_VALUE, (p, a) -> a.isRegularFile())
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   664
                        .map(dir::relativize)
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   665
                        .map(Path::toString)
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   666
                        .map(p -> p.replace(File.separator, "/"));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   667
        } catch (IOException x) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   668
            throw new UncheckedIOException(x);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   669
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   670
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   671
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   672
    static Set<String> getJmodContent(Path jmod) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   673
        JmodResult r = jmod("list", jmod.toString()).assertSuccess();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   674
        return Stream.of(r.output.split("\r?\n")).collect(toSet());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   675
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   676
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   677
    static void assertJmodContent(Path jmod, Set<String> expected) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   678
        Set<String> actual = getJmodContent(jmod);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   679
        if (!Objects.equals(actual, expected)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   680
            Set<String> unexpected = new HashSet<>(actual);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   681
            unexpected.removeAll(expected);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   682
            Set<String> notFound = new HashSet<>(expected);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   683
            notFound.removeAll(actual);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   684
            StringBuilder sb = new StringBuilder();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   685
            sb.append("Unexpected but found:\n");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   686
            unexpected.forEach(s -> sb.append("\t" + s + "\n"));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   687
            sb.append("Expected but not found:\n");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   688
            notFound.forEach(s -> sb.append("\t" + s + "\n"));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   689
            assertTrue(false, "Jmod content check failed.\n" + sb.toString());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   690
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   691
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   692
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   693
    static void assertJmodDoesNotContain(Path jmod, Set<String> unexpectedNames) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   694
        Set<String> actual = getJmodContent(jmod);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   695
        Set<String> unexpected = new HashSet<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   696
        for (String name : unexpectedNames) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   697
            if (actual.contains(name))
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   698
                unexpected.add(name);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   699
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   700
        if (!unexpected.isEmpty()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   701
            StringBuilder sb = new StringBuilder();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   702
            for (String s : unexpected)
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   703
                sb.append("Unexpected but found: " + s + "\n");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   704
            sb.append("In :");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   705
            for (String s : actual)
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   706
                sb.append("\t" + s + "\n");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   707
            assertTrue(false, "Jmod content check failed.\n" + sb.toString());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   708
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   709
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   710
42468
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   711
    static void assertSameContent(Path p1, Path p2) {
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   712
        try {
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   713
            byte[] ba1 = Files.readAllBytes(p1);
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   714
            byte[] ba2 = Files.readAllBytes(p2);
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   715
            assertEquals(ba1, ba2);
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   716
        } catch (IOException x) {
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   717
            throw new UncheckedIOException(x);
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   718
        }
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   719
    }
7a9555a7e080 8166568: Add jmod extract subcommand
chegar
parents: 42338
diff changeset
   720
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   721
    static JmodResult jmod(String... args) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   722
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   723
        PrintStream ps = new PrintStream(baos);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   724
        System.out.println("jmod " + Arrays.asList(args));
41484
834b7539ada3 8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents: 39882
diff changeset
   725
        int ec = JMOD_TOOL.run(ps, ps, args);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   726
        return new JmodResult(ec, new String(baos.toByteArray(), UTF_8));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   727
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   728
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   729
    static class JmodResult {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   730
        final int exitCode;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   731
        final String output;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   732
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   733
        JmodResult(int exitValue, String output) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   734
            this.exitCode = exitValue;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   735
            this.output = output;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   736
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   737
        JmodResult assertSuccess() { assertTrue(exitCode == 0, output); return this; }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   738
        JmodResult assertFailure() { assertTrue(exitCode != 0, output); return this; }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   739
        JmodResult resultChecker(Consumer<JmodResult> r) { r.accept(this); return this; }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   740
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   741
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   742
    static void createCmds(Path dir) throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   743
        List<String> files = Arrays.asList(
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   744
                "first", "second", "third" + File.separator + "third");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   745
        createFiles(dir, files);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   746
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   747
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   748
    static void createLibs(Path dir) throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   749
        List<String> files = Arrays.asList(
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   750
                "first.so", "second.so", "third" + File.separator + "third.so");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   751
        createFiles(dir, files);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   752
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   753
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   754
    static void createConfigs(Path dir) throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   755
        List<String> files = Arrays.asList(
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   756
                "first.cfg", "second.cfg", "third" + File.separator + "third.cfg");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   757
        createFiles(dir, files);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   758
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   759
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   760
    static void createFiles(Path dir, List<String> filenames) throws IOException {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   761
        for (String name : filenames) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   762
            Path file = dir.resolve(name);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   763
            Files.createDirectories(file.getParent());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   764
            Files.createFile(file);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   765
            try (OutputStream os  = Files.newOutputStream(file)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   766
                os.write("blahblahblah".getBytes(UTF_8));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   767
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   768
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   769
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   770
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   771
    static void copyResource(Path srcDir, Path dir, String resource) throws IOException {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   772
        Path dest = dir.resolve(resource);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   773
        Files.deleteIfExists(dest);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   774
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   775
        Files.createDirectories(dest.getParent());
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   776
        Files.copy(srcDir.resolve(resource), dest);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   777
    }
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41916
diff changeset
   778
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   779
    // Standalone entry point.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   780
    public static void main(String[] args) throws Throwable {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   781
        JmodTest test = new JmodTest();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   782
        test.buildExplodedModules();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   783
        for (Method m : JmodTest.class.getDeclaredMethods()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   784
            if (m.getAnnotation(Test.class) != null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   785
                System.out.println("Invoking " + m.getName());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   786
                m.invoke(test);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   787
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   788
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   789
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   790
}