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
|
/*
* Copyright (c) 2017, 2018, 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 8178380 8194937
* @modules java.xml
* @library src /lib/testlibrary
* @build ValidateModulesTest hello/* JarUtils jdk.testlibrary.*
* @run testng ValidateModulesTest
* @summary Basic test for java --validate-modules
*/
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import jdk.testlibrary.ProcessTools;
import jdk.testlibrary.OutputAnalyzer;
import org.testng.annotations.Test;
import static org.testng.Assert.*;
@Test
public class ValidateModulesTest {
/**
* Basic test --validate-modules when there are no errors.
*/
public void testNoErrors() throws Exception {
String modulePath = System.getProperty("test.module.path");
test("--validate-modules");
test("--validate-modules", "-version")
.shouldContain("Runtime Environment");
test("--validate-modules", "--list-modules")
.shouldContain("java.base");
test("--validate-modules", "-d", "java.base")
.shouldContain("exports java.lang");
test("-p", modulePath, "-m", "hello/p.Main")
.shouldContain("Hello world");
test("-p", modulePath, "--validate-modules", "-m", "hello/p.Main")
.shouldNotContain("Hello world");
test("-p", modulePath, "--validate-modules", "--list-modules")
.shouldContain("hello");
test("-p", modulePath, "--validate-modules", "-d", "hello")
.shouldContain("hello")
.shouldContain("contains p");
testExpectingError("--validate-modules", "--add-modules", "BAD")
.shouldContain("Module BAD not found");
testExpectingError("--validate-modules", "-m", "BAD")
.shouldContain("Module BAD not found");
}
/**
* Test an automatic module on the module path with classes in the same
* package as a system module.
*/
public void testPackageConflict() throws Exception {
Path tmpdir = Files.createTempDirectory("tmp");
Path classes = Files.createDirectory(tmpdir.resolve("classes"));
touch(classes, "javax/xml/XMLConstants.class");
touch(classes, "javax/xml/parsers/SAXParser.class");
Path lib = Files.createDirectory(tmpdir.resolve("lib"));
JarUtils.createJarFile(lib.resolve("xml.jar"), classes);
testExpectingError("-p", lib.toString(), "--validate-modules")
.shouldContain("xml automatic")
.shouldContain("conflicts with module java.xml");
}
/**
* Test two modules with the same name in a directory.
*/
public void testDuplicateModule() throws Exception {
Path tmpdir = Files.createTempDirectory("tmp");
Path classes = Files.createDirectory(tmpdir.resolve("classes"));
touch(classes, "org/foo/Bar.class");
Path lib = Files.createDirectory(tmpdir.resolve("lib"));
JarUtils.createJarFile(lib.resolve("foo-1.0.jar"), classes);
JarUtils.createJarFile(lib.resolve("foo-2.0.jar"), classes);
testExpectingError("-p", lib.toString(), "--validate-modules")
.shouldContain("contains same module");
}
/**
* Test two modules with the same name in different directories.
*/
public void testShadowed() throws Exception {
Path tmpdir = Files.createTempDirectory("tmp");
Path classes = Files.createDirectory(tmpdir.resolve("classes"));
touch(classes, "org/foo/Bar.class");
Path lib1 = Files.createDirectory(tmpdir.resolve("lib1"));
JarUtils.createJarFile(lib1.resolve("foo-1.0.jar"), classes);
Path lib2 = Files.createDirectory(tmpdir.resolve("lib2"));
JarUtils.createJarFile(lib2.resolve("foo-2.0.jar"), classes);
test("-p", lib1 + File.pathSeparator + lib2, "--validate-modules")
.shouldContain("shadowed by");
}
/**
* Runs the java launcher with the given arguments, expecting a 0 exit code
*/
private OutputAnalyzer test(String... args) throws Exception {
OutputAnalyzer analyzer = ProcessTools.executeTestJava(args)
.outputTo(System.out)
.errorTo(System.out);
assertTrue(analyzer.getExitValue() == 0);
return analyzer;
}
/**
* Runs the java launcher with the given arguments, expecting a non-0 exit code
*/
private OutputAnalyzer testExpectingError(String... args) throws Exception {
OutputAnalyzer analyzer = ProcessTools.executeTestJava(args)
.outputTo(System.out)
.errorTo(System.out);
assertTrue(analyzer.getExitValue() != 0);
return analyzer;
}
/**
* Creates a file relative the given directory.
*/
private void touch(Path dir, String relPath) throws IOException {
Path file = dir.resolve(relPath.replace('/', File.separatorChar));
Files.createDirectories(file.getParent());
Files.createFile(file);
}
}
|