3789983e89
Reviewed-by: darcy, ihse
449 lines
16 KiB
Java
449 lines
16 KiB
Java
/*
|
|
* Copyright (c) 2015, 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 8142968 8174104
|
|
* @summary tests for --module-path
|
|
* @library /tools/lib
|
|
* @modules
|
|
* jdk.compiler/com.sun.tools.javac.api
|
|
* jdk.compiler/com.sun.tools.javac.main
|
|
* jdk.jdeps/com.sun.tools.javap
|
|
* jdk.jlink
|
|
* @build toolbox.ToolBox toolbox.JarTask toolbox.JavacTask toolbox.ModuleBuilder
|
|
* ModuleTestBase
|
|
* @run main ModulePathTest
|
|
*/
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
import java.nio.file.Files;
|
|
import java.nio.file.Path;
|
|
import java.util.spi.ToolProvider;
|
|
|
|
import toolbox.JarTask;
|
|
import toolbox.JavacTask;
|
|
import toolbox.ModuleBuilder;
|
|
import toolbox.Task;
|
|
import toolbox.ToolBox;
|
|
|
|
public class ModulePathTest extends ModuleTestBase {
|
|
|
|
public static final String PATH_SEP = File.pathSeparator;
|
|
|
|
public static void main(String... args) throws Exception {
|
|
ModulePathTest t = new ModulePathTest();
|
|
t.runTests();
|
|
}
|
|
|
|
@Test
|
|
public void testNotExistsOnPath_noWarn(Path base) throws Exception {
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src, "class C { }");
|
|
|
|
String log = new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.options("-XDrawDiagnostics",
|
|
"--module-path", "doesNotExist")
|
|
.files(findJavaFiles(src))
|
|
.run(Task.Expect.SUCCESS)
|
|
.writeAll()
|
|
.getOutput(Task.OutputKind.DIRECT);
|
|
|
|
if (!log.isEmpty())
|
|
throw new Exception("unexpected output");
|
|
}
|
|
|
|
@Test
|
|
public void testNotExistsOnPath_warn(Path base) throws Exception {
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src, "class C { }");
|
|
|
|
String log = new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.options("-XDrawDiagnostics",
|
|
"-Xlint:path",
|
|
"--module-path", "doesNotExist")
|
|
.files(findJavaFiles(src))
|
|
.run(Task.Expect.SUCCESS)
|
|
.writeAll()
|
|
.getOutput(Task.OutputKind.DIRECT);
|
|
|
|
if (!log.contains("- compiler.warn.path.element.not.found: doesNotExist"))
|
|
throw new Exception("expected output not found");
|
|
}
|
|
|
|
@Test
|
|
public void testNotADirOnPath_1(Path base) throws Exception {
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src, "class C { }");
|
|
tb.writeFile("dummy.txt", "");
|
|
|
|
String log = new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.options("-XDrawDiagnostics",
|
|
"--module-path", "dummy.txt")
|
|
.files(findJavaFiles(src))
|
|
.run(Task.Expect.FAIL)
|
|
.writeAll()
|
|
.getOutput(Task.OutputKind.DIRECT);
|
|
|
|
if (!log.contains("- compiler.err.illegal.argument.for.option: --module-path, dummy.txt"))
|
|
throw new Exception("expected output not found");
|
|
}
|
|
|
|
@Test
|
|
public void testNotADirOnPath_2(Path base) throws Exception {
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src, "class C { }");
|
|
tb.writeFile("dummy.jimage", "");
|
|
|
|
String log = new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.options("-XDrawDiagnostics",
|
|
"--module-path", "dummy.jimage")
|
|
.files(findJavaFiles(src))
|
|
.run(Task.Expect.FAIL)
|
|
.writeAll()
|
|
.getOutput(Task.OutputKind.DIRECT);
|
|
|
|
if (!log.contains("- compiler.err.illegal.argument.for.option: --module-path, dummy.jimage"))
|
|
throw new Exception("expected output not found");
|
|
}
|
|
|
|
@Test
|
|
public void testExplodedModuleOnPath(Path base) throws Exception {
|
|
Path modSrc = base.resolve("modSrc");
|
|
tb.writeJavaFiles(modSrc,
|
|
"module m1x { exports p; }",
|
|
"package p; public class CC { }");
|
|
Path modClasses = base.resolve("modClasses");
|
|
Files.createDirectories(modClasses);
|
|
|
|
new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.outdir(modClasses)
|
|
.files(findJavaFiles(modSrc))
|
|
.run()
|
|
.writeAll();
|
|
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src,
|
|
"module m { requires m1x ; }",
|
|
"class C { }");
|
|
Path classes = base.resolve("classes");
|
|
Files.createDirectories(classes);
|
|
|
|
new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.outdir(classes)
|
|
.options("--module-path", modClasses.toString())
|
|
.files(findJavaFiles(src))
|
|
.run()
|
|
.writeAll();
|
|
}
|
|
|
|
@Test
|
|
public void testBadExplodedModuleOnPath(Path base) throws Exception {
|
|
Path modClasses = base.resolve("modClasses");
|
|
tb.writeFile(modClasses.resolve("module-info.class"), "module m1x { }");
|
|
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src,
|
|
"module m { requires m1x ; }",
|
|
"class C { }");
|
|
Path classes = base.resolve("classes");
|
|
Files.createDirectories(classes);
|
|
|
|
String log = new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.outdir(classes)
|
|
.options("-XDrawDiagnostics",
|
|
"--module-path", modClasses.toString())
|
|
.files(findJavaFiles(src))
|
|
.run(Task.Expect.FAIL)
|
|
.writeAll()
|
|
.getOutput(Task.OutputKind.DIRECT);
|
|
|
|
if (!log.contains("- compiler.err.locn.bad.module-info: " + modClasses.toString()))
|
|
throw new Exception("expected output not found");
|
|
}
|
|
|
|
@Test
|
|
public void testAutoJarOnPath(Path base) throws Exception {
|
|
Path jarSrc = base.resolve("jarSrc");
|
|
tb.writeJavaFiles(jarSrc,
|
|
"package p; public class CC { }");
|
|
Path jarClasses = base.resolve("jarClasses");
|
|
Files.createDirectories(jarClasses);
|
|
|
|
new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.outdir(jarClasses)
|
|
.files(findJavaFiles(jarSrc))
|
|
.run()
|
|
.writeAll();
|
|
|
|
Path moduleJar = base.resolve("a.jar");
|
|
new JarTask(tb, moduleJar)
|
|
.baseDir(jarClasses)
|
|
.files("p/CC.class")
|
|
.run();
|
|
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src, "class C { p.CC cc; }");
|
|
Path classes = base.resolve("classes");
|
|
Files.createDirectories(classes);
|
|
|
|
new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.outdir(classes)
|
|
.options("--module-path", moduleJar.toString(), "--add-modules", "a")
|
|
.files(findJavaFiles(src))
|
|
.run()
|
|
.writeAll();
|
|
}
|
|
|
|
@Test
|
|
public void testModJarOnPath(Path base) throws Exception {
|
|
Path jarSrc = base.resolve("jarSrc");
|
|
tb.writeJavaFiles(jarSrc,
|
|
"module m1x { exports p; }",
|
|
"package p; public class CC { }");
|
|
Path jarClasses = base.resolve("jarClasses");
|
|
Files.createDirectories(jarClasses);
|
|
|
|
new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.outdir(jarClasses)
|
|
.files(findJavaFiles(jarSrc))
|
|
.run()
|
|
.writeAll();
|
|
|
|
Path moduleJar = base.resolve("myModule.jar"); // deliberately not m1
|
|
new JarTask(tb, moduleJar)
|
|
.baseDir(jarClasses)
|
|
.files("module-info.class", "p/CC.class")
|
|
.run();
|
|
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src,
|
|
"module m { requires m1x ; }",
|
|
"class C { }");
|
|
Path classes = base.resolve("classes");
|
|
Files.createDirectories(classes);
|
|
|
|
new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.outdir(classes)
|
|
.options("--module-path", moduleJar.toString())
|
|
.files(findJavaFiles(src))
|
|
.run()
|
|
.writeAll();
|
|
}
|
|
|
|
@Test
|
|
public void testBadJarOnPath(Path base) throws Exception {
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src, "class C { }");
|
|
tb.writeFile("dummy.jar", "");
|
|
|
|
String log = new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.options("-XDrawDiagnostics",
|
|
"--module-path", "dummy.jar")
|
|
.files(findJavaFiles(src))
|
|
.run(Task.Expect.FAIL)
|
|
.writeAll()
|
|
.getOutput(Task.OutputKind.DIRECT);
|
|
|
|
if (!log.contains("- compiler.err.locn.cant.read.file: dummy.jar"))
|
|
throw new Exception("expected output not found");
|
|
}
|
|
|
|
@Test
|
|
public void testJModOnPath(Path base) throws Exception {
|
|
Path jmodSrc = base.resolve("jmodSrc");
|
|
tb.writeJavaFiles(jmodSrc,
|
|
"module m1x { exports p; }",
|
|
"package p; public class CC { }");
|
|
Path jmodClasses = base.resolve("jmodClasses");
|
|
Files.createDirectories(jmodClasses);
|
|
|
|
new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.outdir(jmodClasses)
|
|
.files(findJavaFiles(jmodSrc))
|
|
.run()
|
|
.writeAll();
|
|
|
|
Path jmod = base.resolve("myModule.jmod"); // deliberately not m1
|
|
jmod(jmodClasses, jmod);
|
|
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src,
|
|
"module m { requires m1x ; }",
|
|
"class C { }");
|
|
Path classes = base.resolve("classes");
|
|
Files.createDirectories(classes);
|
|
|
|
new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.outdir(classes)
|
|
.options("--module-path", jmod.toString())
|
|
.files(findJavaFiles(src))
|
|
.run()
|
|
.writeAll();
|
|
}
|
|
|
|
@Test
|
|
public void testBadJModOnPath(Path base) throws Exception {
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src, "class C { }");
|
|
tb.writeFile("dummy.jmod", "");
|
|
|
|
String log = new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.options("-XDrawDiagnostics",
|
|
"--module-path", "dummy.jmod")
|
|
.files(findJavaFiles(src))
|
|
.run(Task.Expect.FAIL)
|
|
.writeAll()
|
|
.getOutput(Task.OutputKind.DIRECT);
|
|
|
|
if (!log.contains("- compiler.err.locn.cant.read.file: dummy.jmod"))
|
|
throw new Exception("expected output not found");
|
|
}
|
|
|
|
@Test
|
|
public void relativePath(Path base) throws Exception {
|
|
Path modules = base.resolve("modules");
|
|
new ModuleBuilder(tb, "m1x").build(modules);
|
|
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src, "module m2x { requires m1x; }", "class A { }");
|
|
|
|
new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.options("-XDrawDiagnostics",
|
|
"--module-path", modules + "/./../modules")
|
|
.files(findJavaFiles(src))
|
|
.run()
|
|
.writeAll();
|
|
}
|
|
|
|
@Test
|
|
public void duplicatePaths_1(Path base) throws Exception {
|
|
Path modules = base.resolve("modules");
|
|
new ModuleBuilder(tb, "m1x").build(modules);
|
|
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src, "module m2x { requires m1x; }", "class A { }");
|
|
|
|
new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.options("-XDrawDiagnostics",
|
|
"--module-path", modules + "/./../modules" + PATH_SEP + modules)
|
|
.files(findJavaFiles(src))
|
|
.run()
|
|
.writeAll();
|
|
}
|
|
|
|
@Test
|
|
public void duplicatePaths_2(Path base) throws Exception {
|
|
Path modules = base.resolve("modules");
|
|
new ModuleBuilder(tb, "m1x").build(modules);
|
|
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src, "module m2x { requires m1x; }", "class A { }");
|
|
|
|
new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.options("-XDrawDiagnostics",
|
|
"--module-path", modules.toString(),
|
|
"--module-path", modules.toString())
|
|
.files(findJavaFiles(src))
|
|
.run()
|
|
.writeAll();
|
|
}
|
|
|
|
@Test
|
|
public void oneModuleHidesAnother(Path base) throws Exception {
|
|
Path modules = base.resolve("modules");
|
|
new ModuleBuilder(tb, "m1x")
|
|
.exports("pkg1")
|
|
.classes("package pkg1; public class E { }")
|
|
.build(modules);
|
|
|
|
Path deepModuleDirSrc = base.resolve("deepModuleDirSrc");
|
|
Path deepModuleDir = modules.resolve("deepModuleDir");
|
|
new ModuleBuilder(tb, "m1x")
|
|
.exports("pkg2")
|
|
.classes("package pkg2; public class E { }")
|
|
.build(deepModuleDirSrc, deepModuleDir);
|
|
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src, "module m2x { requires m1x; }", " package p; class A { void main() { pkg2.E.class.getName(); } }");
|
|
|
|
new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.options("-XDrawDiagnostics",
|
|
"--module-path", deepModuleDir + PATH_SEP + modules)
|
|
.files(findJavaFiles(src))
|
|
.run()
|
|
.writeAll();
|
|
}
|
|
|
|
@Test
|
|
public void modulesInDifferentContainers(Path base) throws Exception {
|
|
Path modules = base.resolve("modules");
|
|
new ModuleBuilder(tb, "m1x")
|
|
.exports("one")
|
|
.classes("package one; public class A { }")
|
|
.build(modules);
|
|
|
|
new ModuleBuilder(tb, "m2x")
|
|
.requires("m1x", modules)
|
|
.build(base.resolve("tmp"));
|
|
jar(base.resolve("tmp/m2x"), modules.resolve("m2x.jar"));
|
|
|
|
new ModuleBuilder(tb, "m3x")
|
|
.requires("m2x", modules)
|
|
.build(base.resolve("tmp"));
|
|
jmod(base.resolve("tmp/m3x"), modules.resolve("m3x.jmod"));
|
|
|
|
Path src = base.resolve("src");
|
|
tb.writeJavaFiles(src, "module m { requires m3x; requires m2x; requires m1x; }",
|
|
"package p; class A { void main() { one.A.class.getName(); } }");
|
|
|
|
new JavacTask(tb, Task.Mode.CMDLINE)
|
|
.options("-XDrawDiagnostics",
|
|
"--module-path", modules.toString())
|
|
.files(findJavaFiles(src))
|
|
.run()
|
|
.writeAll();
|
|
}
|
|
|
|
private void jar(Path dir, Path jar) throws IOException {
|
|
new JarTask(tb, jar)
|
|
.baseDir(dir)
|
|
.files(".")
|
|
.run()
|
|
.writeAll();
|
|
}
|
|
|
|
private void jmod(Path dir, Path jmod) throws Exception {
|
|
String[] args = {
|
|
"create",
|
|
"--class-path", dir.toString(),
|
|
jmod.toString()
|
|
};
|
|
ToolProvider jmodTool = ToolProvider.findFirst("jmod").orElseThrow(() ->
|
|
new RuntimeException("jmod tool not found")
|
|
);
|
|
jmodTool.run(System.out, System.err, args);
|
|
}
|
|
}
|