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 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
|
/**
* 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
* @bug 8169925
* @summary Validate the license files deduplicated in the image
* @library /test/lib
* @modules jdk.compiler
* jdk.jlink
* @build jdk.test.lib.compiler.CompilerUtils
* @run testng LegalFilePluginTest
*/
import java.io.BufferedWriter;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.io.UncheckedIOException;
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.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
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 LegalFilePluginTest {
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 LEGAL_DIR = Paths.get("legal");
static final Path IMAGES_DIR = Paths.get("images");
static final Map<List<String>, Map<String,String>> LICENSES = Map.of(
// Key is module name and requires
// Value is a map of filename to the file content
List.of("m1"), Map.of("LICENSE", "m1 LICENSE",
"m1-license.txt", "m1 license",
"test-license", "test license v1"),
List.of("m2", "m1"), Map.of("m2-license", "m2 license",
"test-license", "test license v1"),
List.of("m3"), Map.of("m3-license.md", "m3 license",
"test-license", "test license v3"),
List.of("m4"), Map.of("test-license", "test license v4")
);
@BeforeTest
private void setup() throws Exception {
List<JmodFileBuilder> builders = new ArrayList<>();
for (Map.Entry<List<String>, Map<String,String>> e : LICENSES.entrySet()) {
List<String> names = e.getKey();
String mn = names.get(0);
JmodFileBuilder builder = new JmodFileBuilder(mn);
builders.add(builder);
if (names.size() > 1) {
names.subList(1, names.size())
.stream()
.forEach(builder::requires);
}
e.getValue().entrySet()
.stream()
.forEach(f -> builder.licenseFile(f.getKey(), f.getValue()));
// generate source
builder.writeModuleInfo();
}
// create jmod file
for (JmodFileBuilder builder: builders) {
builder.build();
}
}
private String imageDir(String dir) {
return IMAGES_DIR.resolve(dir).toString();
}
@DataProvider(name = "modules")
public Object[][] jlinkoptions() {
String m2TestLicenseContent =
symlinkContent(Paths.get("legal", "m2", "test-license"),
Paths.get("legal", "m1", "test-license"),
"test license v1");
// options and expected header files & man pages
return new Object[][] {
{ new String [] {
"test1",
"--add-modules=m1",
},
Map.of( "m1/LICENSE", "m1 LICENSE",
"m1/m1-license.txt", "m1 license",
"m1/test-license", "test license v1")
},
{ new String [] {
"test2",
"--add-modules=m1,m2",
},
Map.of( "m1/LICENSE", "m1 LICENSE",
"m1/m1-license.txt", "m1 license",
"m1/test-license", "test license v1",
"m2/m2-license", "m2 license",
"m2/test-license", m2TestLicenseContent),
},
{ new String [] {
"test3",
"--add-modules=m2,m3",
},
Map.of( "m1/LICENSE", "m1 LICENSE",
"m1/m1-license.txt", "m1 license",
"m1/test-license", "test license v1",
"m2/m2-license", "m2 license",
"m2/test-license", m2TestLicenseContent,
"m3/m3-license.md", "m3 license",
"m3/test-license", "test license v3"),
},
};
}
private static String symlinkContent(Path source, Path target, String content) {
String osName = System.getProperty("os.name");
if (!osName.startsWith("Windows") && MODULE_PATH.getFileSystem()
.supportedFileAttributeViews()
.contains("posix")) {
// symlink created
return content;
} else {
// tiny file is created
Path symlink = source.getParent().relativize(target);
return String.format("Please see %s", symlink.toString());
}
}
@Test(dataProvider = "modules")
public void test(String[] opts, Map<String,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,
"--output", imageDir(dir))
.forEach(options::add);
Path image = createImage(dir, options);
Files.walk(image.resolve("legal"), Integer.MAX_VALUE)
.filter(p -> Files.isRegularFile(p))
.filter(p -> p.getParent().endsWith("m1") ||
p.getParent().endsWith("m2") ||
p.getParent().endsWith("m3") ||
p.getParent().endsWith("m4"))
.forEach(p -> {
String fn = image.resolve("legal").relativize(p)
.toString()
.replace(File.separatorChar, '/');
System.out.println(fn);
if (!expectedFiles.containsKey(fn)) {
throw new RuntimeException(fn + " should not be in the image");
}
compareFileContent(p, expectedFiles.get(fn));
});
}
@Test
public void errorIfNotSameContent() {
if (Files.notExists(MODULE_PATH)) {
// exploded image
return;
}
String dir = "test";
String mpath = MODULE_PATH.toString() + File.pathSeparator +
JMODS_DIR.toString();
List<String> options = Stream.of("--dedup-legal-notices",
"error-if-not-same-content",
"--module-path", mpath,
"--add-modules=m3,m4",
"--output", imageDir(dir))
.collect(Collectors.toList());
StringWriter writer = new StringWriter();
PrintWriter pw = new PrintWriter(writer);
System.out.println("jlink " + options.stream().collect(Collectors.joining(" ")));
int rc = JLINK_TOOL.run(pw, pw,
options.toArray(new String[0]));
assertTrue(rc != 0);
assertTrue(writer.toString().trim()
.matches("Error:.*/m4/legal/m4/test-license .*contain different content"));
}
private void compareFileContent(Path file, String content) {
try {
byte[] bytes = Files.readAllBytes(file);
byte[] expected = String.format("%s%n", content).getBytes();
assertEquals(bytes, expected, String.format("%s not matched:%nfile: %s%nexpected:%s%n",
file.toString(), new String(bytes), new String(expected)));
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
private Path createImage(String outputDir, List<String> options) {
System.out.println("jlink " + options.stream().collect(Collectors.joining(" ")));
int rc = JLINK_TOOL.run(System.out, System.out,
options.toArray(new String[0]));
assertTrue(rc == 0);
return IMAGES_DIR.resolve(outputDir);
}
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> requires = new HashSet<>();
final Map<String, String> licenses = new HashMap<>();
JmodFileBuilder(String name) throws IOException {
this.name = name;
Path msrc = SRC_DIR.resolve(name);
if (Files.exists(msrc)) {
deleteDirectory(msrc);
}
}
JmodFileBuilder writeModuleInfo()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);
for (String req : requires) {
writer.format(" requires %s;%n", req);
}
writer.format("}%n");
}
return this;
}
JmodFileBuilder licenseFile(String filename, String content) {
licenses.put(filename, content);
return this;
}
JmodFileBuilder requires(String name) {
requires.add(name);
return this;
}
Path build() throws IOException {
compileModule();
Path mdir = LEGAL_DIR.resolve(name);
for (Map.Entry<String,String> e : licenses.entrySet()) {
Files.createDirectories(mdir);
String filename = e.getKey();
String content = e.getValue();
Path file = mdir.resolve(filename);
try (BufferedWriter writer = Files.newBufferedWriter(file);
PrintWriter pw = new PrintWriter(writer)) {
pw.println(content);
}
}
return createJmodFile();
}
void compileModule() throws IOException {
Path msrc = SRC_DIR.resolve(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());
if (licenses.size() > 0) {
args.add("--legal-notices");
args.add(LEGAL_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;
}
}
}
|