author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 45393 | jdk/test/tools/jlink/basic/BasicTest.java@de4e1efc8eec |
child 51675 | b487c1e914d0 |
permissions | -rw-r--r-- |
36511 | 1 |
/** |
45393 | 2 |
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. |
36511 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
*/ |
|
23 |
||
24 |
/* |
|
25 |
* @test |
|
26 |
* @summary Basic test of jlink to create jmods and images |
|
27 |
* @author Andrei Eremeev |
|
45393 | 28 |
* @library /lib/testlibrary /test/lib |
36511 | 29 |
* @modules java.base/jdk.internal.module |
41484
834b7539ada3
8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents:
40261
diff
changeset
|
30 |
* jdk.jlink |
36511 | 31 |
* jdk.compiler |
32 |
* @build jdk.testlibrary.ProcessTools |
|
33 |
* jdk.testlibrary.OutputAnalyzer |
|
45393 | 34 |
* JarUtils jdk.test.lib.compiler.CompilerUtils |
36511 | 35 |
* @run main BasicTest |
36 |
*/ |
|
37 |
||
38 |
import java.io.File; |
|
39 |
import java.io.PrintWriter; |
|
40 |
import java.nio.file.Files; |
|
41 |
import java.nio.file.Path; |
|
42 |
import java.nio.file.Paths; |
|
43 |
import java.util.ArrayList; |
|
44 |
import java.util.Collections; |
|
45 |
import java.util.List; |
|
41484
834b7539ada3
8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents:
40261
diff
changeset
|
46 |
import java.util.spi.ToolProvider; |
36511 | 47 |
|
45393 | 48 |
import jdk.test.lib.compiler.CompilerUtils; |
36511 | 49 |
import jdk.testlibrary.OutputAnalyzer; |
50 |
import jdk.testlibrary.ProcessTools; |
|
51 |
||
52 |
public class BasicTest { |
|
41484
834b7539ada3
8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents:
40261
diff
changeset
|
53 |
static final ToolProvider JMOD_TOOL = ToolProvider.findFirst("jmod") |
834b7539ada3
8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents:
40261
diff
changeset
|
54 |
.orElseThrow(() -> |
834b7539ada3
8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents:
40261
diff
changeset
|
55 |
new RuntimeException("jmod tool not found") |
834b7539ada3
8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents:
40261
diff
changeset
|
56 |
); |
834b7539ada3
8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents:
40261
diff
changeset
|
57 |
|
834b7539ada3
8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents:
40261
diff
changeset
|
58 |
static final ToolProvider JLINK_TOOL = ToolProvider.findFirst("jlink") |
834b7539ada3
8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents:
40261
diff
changeset
|
59 |
.orElseThrow(() -> |
834b7539ada3
8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents:
40261
diff
changeset
|
60 |
new RuntimeException("jlink tool not found") |
834b7539ada3
8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents:
40261
diff
changeset
|
61 |
); |
36511 | 62 |
|
42338
a60f280f803c
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41484
diff
changeset
|
63 |
private final String TEST_MODULE = "test"; |
36511 | 64 |
private final Path jdkHome = Paths.get(System.getProperty("test.jdk")); |
65 |
private final Path jdkMods = jdkHome.resolve("jmods"); |
|
66 |
private final Path testSrc = Paths.get(System.getProperty("test.src")); |
|
42338
a60f280f803c
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41484
diff
changeset
|
67 |
private final Path src = testSrc.resolve("src").resolve(TEST_MODULE); |
36511 | 68 |
private final Path classes = Paths.get("classes"); |
69 |
private final Path jmods = Paths.get("jmods"); |
|
70 |
private final Path jars = Paths.get("jars"); |
|
71 |
||
72 |
public static void main(String[] args) throws Throwable { |
|
73 |
new BasicTest().run(); |
|
74 |
} |
|
75 |
||
76 |
public void run() throws Throwable { |
|
77 |
if (Files.notExists(jdkMods)) { |
|
78 |
return; |
|
79 |
} |
|
80 |
||
81 |
if (!CompilerUtils.compile(src, classes)) { |
|
82 |
throw new AssertionError("Compilation failure. See log."); |
|
83 |
} |
|
84 |
||
85 |
Files.createDirectories(jmods); |
|
86 |
Files.createDirectories(jars); |
|
87 |
Path jarfile = jars.resolve("test.jar"); |
|
88 |
JarUtils.createJarFile(jarfile, classes); |
|
89 |
||
90 |
Path image = Paths.get("mysmallimage"); |
|
42762 | 91 |
runJmod(jarfile.toString(), TEST_MODULE, true); |
92 |
runJlink(image, TEST_MODULE, "--compress", "2", "--launcher", "foo=" + TEST_MODULE); |
|
93 |
execute(image, "foo"); |
|
36511 | 94 |
|
42338
a60f280f803c
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41484
diff
changeset
|
95 |
Files.delete(jmods.resolve(TEST_MODULE + ".jmod")); |
36511 | 96 |
|
97 |
image = Paths.get("myimage"); |
|
42762 | 98 |
runJmod(classes.toString(), TEST_MODULE, true); |
99 |
runJlink(image, TEST_MODULE, "--launcher", "bar=" + TEST_MODULE); |
|
100 |
execute(image, "bar"); |
|
101 |
||
102 |
Files.delete(jmods.resolve(TEST_MODULE + ".jmod")); |
|
103 |
||
104 |
image = Paths.get("myimage2"); |
|
105 |
runJmod(classes.toString(), TEST_MODULE, false /* no ModuleMainClass! */); |
|
106 |
// specify main class in --launcher command line |
|
107 |
runJlink(image, TEST_MODULE, "--launcher", "bar2=" + TEST_MODULE + "/jdk.test.Test"); |
|
108 |
execute(image, "bar2"); |
|
109 |
||
36511 | 110 |
} |
111 |
||
42762 | 112 |
private void execute(Path image, String scriptName) throws Throwable { |
113 |
String cmd = image.resolve("bin").resolve(scriptName).toString(); |
|
36511 | 114 |
OutputAnalyzer analyzer; |
115 |
if (System.getProperty("os.name").startsWith("Windows")) { |
|
116 |
analyzer = ProcessTools.executeProcess("sh.exe", cmd, "1", "2", "3"); |
|
117 |
} else { |
|
118 |
analyzer = ProcessTools.executeProcess(cmd, "1", "2", "3"); |
|
119 |
} |
|
120 |
if (analyzer.getExitValue() != 0) { |
|
121 |
throw new AssertionError("Image invocation failed: rc=" + analyzer.getExitValue()); |
|
122 |
} |
|
123 |
} |
|
124 |
||
125 |
private void runJlink(Path image, String modName, String... options) { |
|
126 |
List<String> args = new ArrayList<>(); |
|
127 |
Collections.addAll(args, |
|
40261
86a49ba76f52
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
36511
diff
changeset
|
128 |
"--module-path", jdkMods + File.pathSeparator + jmods, |
86a49ba76f52
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
36511
diff
changeset
|
129 |
"--add-modules", modName, |
36511 | 130 |
"--output", image.toString()); |
131 |
Collections.addAll(args, options); |
|
41484
834b7539ada3
8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents:
40261
diff
changeset
|
132 |
|
834b7539ada3
8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents:
40261
diff
changeset
|
133 |
PrintWriter pw = new PrintWriter(System.out); |
834b7539ada3
8164689: Retrofit jar, jlink, jmod as a ToolProvider
mchung
parents:
40261
diff
changeset
|
134 |
int rc = JLINK_TOOL.run(pw, pw, args.toArray(new String[args.size()])); |
36511 | 135 |
if (rc != 0) { |
136 |
throw new AssertionError("Jlink failed: rc = " + rc); |
|
137 |
} |
|
138 |
} |
|
139 |
||
42762 | 140 |
private void runJmod(String cp, String modName, boolean main) { |
141 |
int rc; |
|
142 |
if (main) { |
|
143 |
rc = JMOD_TOOL.run(System.out, System.out, new String[] { |
|
36511 | 144 |
"create", |
145 |
"--class-path", cp, |
|
146 |
"--module-version", "1.0", |
|
147 |
"--main-class", "jdk.test.Test", |
|
42762 | 148 |
jmods.resolve(modName + ".jmod").toString() |
149 |
}); |
|
150 |
} else { |
|
151 |
rc = JMOD_TOOL.run(System.out, System.out, new String[] { |
|
152 |
"create", |
|
153 |
"--class-path", cp, |
|
154 |
"--module-version", "1.0", |
|
36511 | 155 |
jmods.resolve(modName + ".jmod").toString(), |
42762 | 156 |
}); |
157 |
} |
|
158 |
||
36511 | 159 |
if (rc != 0) { |
160 |
throw new AssertionError("Jmod failed: rc = " + rc); |
|
161 |
} |
|
162 |
} |
|
163 |
} |