1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
/**
* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @summary Test --no-man-pages and --no-header-files
* @library /test/lib
* @modules jdk.compiler
* jdk.jlink
* @build jdk.test.lib.compiler.CompilerUtils
* @run testng ExcludeJmodSectionPluginTest
*/
import java.io.BufferedWriter;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.nio.file.FileVisitResult;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.SimpleFileVisitor;
import java.nio.file.attribute.BasicFileAttributes;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.spi.ToolProvider;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import jdk.test.lib.compiler.CompilerUtils;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import static org.testng.Assert.*;
public class ExcludeJmodSectionPluginTest {
static final ToolProvider JMOD_TOOL = ToolProvider.findFirst("jmod")
.orElseThrow(() ->
new RuntimeException("jmod tool not found")
);
static final ToolProvider JLINK_TOOL = ToolProvider.findFirst("jlink")
.orElseThrow(() ->
new RuntimeException("jlink tool not found")
);
static final Path MODULE_PATH = Paths.get(System.getProperty("java.home"), "jmods");
static final Path SRC_DIR = Paths.get("src");
static final Path MODS_DIR = Paths.get("mods");
static final Path JMODS_DIR = Paths.get("jmods");
static final Path MAN_DIR = Paths.get("man");
static final Path INCLUDE_DIR = Paths.get("include");
static final Path IMAGES_DIR = Paths.get("images");
@BeforeTest
private void setup() throws Exception {
// build jmod files
JmodFileBuilder m1 = new JmodFileBuilder("m1");
m1.headerFile("m1a.h");
m1.headerFile("m1b.h");
m1.build();
JmodFileBuilder m2 = new JmodFileBuilder("m2");
m2.headerFile("m2.h");
m2.manPage("tool2.1");
m2.build();
JmodFileBuilder m3 = new JmodFileBuilder("m3");
m3.manPage("tool3.1");
m3.build();
}
private String imageDir(String dir) {
return IMAGES_DIR.resolve(dir).toString();
}
@DataProvider(name = "jlinkoptions")
public Object[][] jlinkoptions() {
// options and expected header files & man pages
return new Object[][] {
{ new String [] {
"test1",
"--exclude-files=/java.base/include/**,/java.base/man/**",
},
List.of("include/m1a.h",
"include/m1b.h",
"include/m2.h",
"man/tool2.1",
"man/tool3.1")
},
{ new String [] {
"test2",
"--no-man-pages",
"--no-header-files",
},
List.of()
},
{ new String[] {
"test3",
"--no-header-files",
"--exclude-files=/java.base/man/**"
},
List.of("man/tool2.1",
"man/tool3.1") },
{ new String [] {
"test4",
"--no-man-pages",
"--exclude-files=/java.base/include/**,/m2/include/**",
},
List.of("include/m1a.h",
"include/m1b.h")
},
{ new String [] {
"test5",
"--no-header-files",
"--exclude-files=/java.base/man/**,/m2/man/**"
},
List.of("man/tool3.1")
},
};
}
@Test(dataProvider = "jlinkoptions")
public void test(String[] opts, List<String> expectedFiles) throws Exception {
if (Files.notExists(MODULE_PATH)) {
// exploded image
return;
}
String dir = opts[0];
List<String> options = new ArrayList<>();
for (int i = 1; i < opts.length; i++) {
options.add(opts[i]);
}
String mpath = MODULE_PATH.toString() + File.pathSeparator +
JMODS_DIR.toString();
Stream.of("--module-path", mpath,
"--add-modules", "m1,m2,m3",
"--output", imageDir(dir))
.forEach(options::add);
Path image = createImage(dir, options, expectedFiles);
// check if any unexpected header file or man page
Set<Path> extraFiles = Files.walk(image, Integer.MAX_VALUE)
.filter(p -> Files.isRegularFile(p))
.filter(p -> p.getParent().endsWith("include") ||
p.getParent().endsWith("man"))
.filter(p -> {
String fn = String.format("%s/%s",
p.getParent().getFileName().toString(),
p.getFileName().toString());
return !expectedFiles.contains(fn);
})
.collect(Collectors.toSet());
if (extraFiles.size() > 0) {
System.out.println("Unexpected files: " + extraFiles.toString());
assertTrue(extraFiles.isEmpty());
}
}
/**
* Test java.base's include header files
*/
@Test
public void testJavaBase() {
if (Files.notExists(MODULE_PATH)) {
// exploded image
return;
}
List<String> options = List.of("--module-path",
MODULE_PATH.toString(),
"--add-modules", "java.base",
"--output", imageDir("base"));
createImage("base", options,
List.of("include/jni.h", "include/jvmti.h"));
}
private Path createImage(String outputDir, List<String> options,
List<String> expectedFiles) {
System.out.println("jlink " + options.toString());
int rc = JLINK_TOOL.run(System.out, System.out,
options.toArray(new String[0]));
assertTrue(rc == 0);
Path d = IMAGES_DIR.resolve(outputDir);
for (String fn : expectedFiles) {
Path path = d.resolve(fn);
if (Files.notExists(path)) {
throw new RuntimeException(path + " not found");
}
}
return d;
}
private void deleteDirectory(Path dir) throws IOException {
Files.walkFileTree(dir, new SimpleFileVisitor<Path>() {
@Override
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs)
throws IOException
{
Files.delete(file);
return FileVisitResult.CONTINUE;
}
@Override
public FileVisitResult postVisitDirectory(Path dir, IOException exc)
throws IOException
{
Files.delete(dir);
return FileVisitResult.CONTINUE;
}
});
}
/**
* Builder to create JMOD file
*/
class JmodFileBuilder {
final String name;
final Set<String> manPages = new HashSet<>();
final Set<String> headerFiles = new HashSet<>();
JmodFileBuilder(String name) throws IOException {
this.name = name;
Path msrc = SRC_DIR.resolve(name);
if (Files.exists(msrc)) {
deleteDirectory(msrc);
}
}
JmodFileBuilder manPage(String filename) {
manPages.add(filename);
return this;
}
JmodFileBuilder headerFile(String filename) {
headerFiles.add(filename);
return this;
}
Path build() throws IOException {
compileModule();
// create man pages
Path mdir = MAN_DIR.resolve(name);
for (String filename : manPages) {
Files.createDirectories(mdir);
Files.createFile(mdir.resolve(filename));
}
// create header files
mdir = INCLUDE_DIR.resolve(name);
for (String filename : headerFiles) {
Files.createDirectories(mdir);
Files.createFile(mdir.resolve(filename));
}
return createJmodFile();
}
void compileModule() throws IOException {
Path msrc = SRC_DIR.resolve(name);
Files.createDirectories(msrc);
Path minfo = msrc.resolve("module-info.java");
try (BufferedWriter bw = Files.newBufferedWriter(minfo);
PrintWriter writer = new PrintWriter(bw)) {
writer.format("module %s { }%n", name);
}
assertTrue(CompilerUtils.compile(msrc, MODS_DIR,
"--module-source-path",
SRC_DIR.toString()));
}
Path createJmodFile() throws IOException {
Path mclasses = MODS_DIR.resolve(name);
Files.createDirectories(JMODS_DIR);
Path outfile = JMODS_DIR.resolve(name + ".jmod");
List<String> args = new ArrayList<>();
args.add("create");
// add classes
args.add("--class-path");
args.add(mclasses.toString());
// man pages
if (manPages.size() > 0) {
args.add("--man-pages");
args.add(MAN_DIR.resolve(name).toString());
}
// header files
if (headerFiles.size() > 0) {
args.add("--header-files");
args.add(INCLUDE_DIR.resolve(name).toString());
}
args.add(outfile.toString());
if (Files.exists(outfile))
Files.delete(outfile);
System.out.println("jmod " +
args.stream().collect(Collectors.joining(" ")));
int rc = JMOD_TOOL.run(System.out, System.out,
args.toArray(new String[args.size()]));
if (rc != 0) {
throw new AssertionError("jmod failed: rc = " + rc);
}
return outfile;
}
}
}
|