2294f225c0
Reviewed-by: hannesw
208 lines
7.3 KiB
Java
208 lines
7.3 KiB
Java
/*
|
|
* Copyright (c) 2017, 2022, 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 8178339 8182765 8184205
|
|
* @summary Tests indirect exports and opens in the module summary page
|
|
* @modules jdk.javadoc/jdk.javadoc.internal.api
|
|
* jdk.javadoc/jdk.javadoc.internal.tool
|
|
* jdk.compiler/com.sun.tools.javac.api
|
|
* jdk.compiler/com.sun.tools.javac.main
|
|
* @library ../../lib /tools/lib
|
|
* @build toolbox.ToolBox toolbox.ModuleBuilder javadoc.tester.*
|
|
* @run main TestIndirectExportsOpens
|
|
*/
|
|
|
|
import java.nio.file.Path;
|
|
import java.nio.file.Paths;
|
|
|
|
import javadoc.tester.JavadocTester;
|
|
import toolbox.ModuleBuilder;
|
|
import toolbox.ToolBox;
|
|
|
|
public class TestIndirectExportsOpens extends JavadocTester {
|
|
|
|
public final ToolBox tb;
|
|
public static void main(String... args) throws Exception {
|
|
var tester = new TestIndirectExportsOpens();
|
|
tester.runTests();
|
|
}
|
|
|
|
public TestIndirectExportsOpens() {
|
|
tb = new ToolBox();
|
|
}
|
|
|
|
@Test
|
|
public void checkNoIndirects(Path base) throws Exception {
|
|
|
|
ModuleBuilder mb0 = new ModuleBuilder(tb, "m")
|
|
.classes("package pm; public class A {}");
|
|
Path p0 = mb0.write(base);
|
|
|
|
ModuleBuilder mb1 = new ModuleBuilder(tb, "a")
|
|
.requiresTransitive("m", p0)
|
|
.classes("package pa; public class NoOp {}")
|
|
.exports("pa");
|
|
mb1.write(base);
|
|
|
|
javadoc("-d", base.resolve("out-api").toString(),
|
|
"-quiet",
|
|
"--module-source-path", base.toString(),
|
|
"--expand-requires", "transitive",
|
|
"--module", "a");
|
|
checkExit(Exit.OK);
|
|
verifyIndirectExports(false);
|
|
verifyIndirectOpens(false);
|
|
}
|
|
|
|
@Test
|
|
public void checkExportsOpens(Path base) throws Exception {
|
|
|
|
ModuleBuilder mb0 = new ModuleBuilder(tb, "m")
|
|
.classes("package pm; public class A {}")
|
|
.exports("pm")
|
|
.opens("pm");
|
|
|
|
Path p0 = mb0.write(base);
|
|
|
|
ModuleBuilder mb1 = new ModuleBuilder(tb, "a")
|
|
.requiresTransitive("m", p0)
|
|
.classes("package pa ; public class NoOp {}")
|
|
.exports("pa");
|
|
mb1.write(base);
|
|
|
|
javadoc("-d", base.resolve("out-api").toString(),
|
|
"-quiet",
|
|
"--module-source-path", base.toString(),
|
|
"--expand-requires", "transitive",
|
|
"--module", "a");
|
|
checkExit(Exit.OK);
|
|
verifyIndirectExports(true);
|
|
verifyIndirectOpens(true);
|
|
}
|
|
|
|
@Test
|
|
public void checkExportsToOpensTo(Path base) throws Exception {
|
|
|
|
ModuleBuilder mb0 = new ModuleBuilder(tb, "m")
|
|
.classes("package pm; public class A {}")
|
|
.exportsTo("pm", "x")
|
|
.opensTo("pm", "x");
|
|
|
|
Path p0 = mb0.write(base);
|
|
|
|
ModuleBuilder mb1 = new ModuleBuilder(tb, "a")
|
|
.requiresTransitive("m", p0)
|
|
.classes("package pa ; public class NoOp {}")
|
|
.exports("pa");
|
|
mb1.write(base);
|
|
|
|
javadoc("-d", base.resolve("out-api").toString(),
|
|
"-quiet",
|
|
"--module-source-path", base.toString(),
|
|
"--expand-requires", "transitive",
|
|
"--module", "a");
|
|
|
|
checkExit(Exit.OK);
|
|
verifyIndirectExports(false);
|
|
verifyIndirectOpens(false);
|
|
}
|
|
|
|
@Test
|
|
public void checkExportsToOpensToDetailMode(Path base) throws Exception {
|
|
|
|
ModuleBuilder mb0 = new ModuleBuilder(tb, "m")
|
|
.classes("package exportsto; public class A {}")
|
|
.classes("package opensto; public class A {}")
|
|
.exportsTo("exportsto", "x")
|
|
.opensTo("opensto", "x");
|
|
|
|
Path p0 = mb0.write(base);
|
|
|
|
ModuleBuilder mb1 = new ModuleBuilder(tb, "a")
|
|
.requiresTransitive("m", p0)
|
|
.classes("package pa ; public class NoOp {}")
|
|
.exports("pa");
|
|
mb1.write(base);
|
|
|
|
javadoc("-d", base.resolve("out-detail").toString(),
|
|
"-quiet",
|
|
"--module-source-path", base.toString(),
|
|
"--expand-requires", "transitive",
|
|
"--show-module-contents", "all",
|
|
"--module", "a");
|
|
|
|
checkExit(Exit.OK);
|
|
|
|
// In details mode all kinds of packages from java.base,
|
|
// could be listed in the indirects section, so just
|
|
// check for minimal expected strings.
|
|
checkOutput("a/module-summary.html", true,
|
|
"Indirect Exports",
|
|
"""
|
|
<div class="col-first odd-row-color"><a href="../m/module-summary.html">m</a></div>
|
|
<div class="col-last odd-row-color"><a href="../m/exportsto/package-summary.html">exportsto</a></div>
|
|
</div>
|
|
""");
|
|
|
|
checkOutput("a/module-summary.html", true,
|
|
"Indirect Opens",
|
|
"""
|
|
<div class="col-first even-row-color"><a href="../m/module-summary.html">m</a></div>
|
|
<div class="col-last even-row-color">opensto</div>
|
|
</div>
|
|
""");
|
|
}
|
|
|
|
void verifyIndirectExports(boolean present) {
|
|
verifyIndirects(present, false);
|
|
}
|
|
|
|
void verifyIndirectOpens(boolean present) {
|
|
verifyIndirects(present, true);
|
|
}
|
|
|
|
void verifyIndirects(boolean present, boolean opens) {
|
|
|
|
String typeString = opens ? "Indirect Opens" : "Indirect Exports";
|
|
|
|
// Avoid false positives, just check for primary string absence.
|
|
if (!present) {
|
|
checkOutput("a/module-summary.html", false, typeString);
|
|
return;
|
|
}
|
|
|
|
checkOutput("a/module-summary.html", present,
|
|
"""
|
|
<div class="caption"><span>""" + typeString + """
|
|
</span></div>
|
|
<div class="details-table two-column-summary">
|
|
<div class="table-header col-first">From</div>
|
|
<div class="table-header col-last">Packages</div>
|
|
<div class="col-first even-row-color"><a href="../m/module-summary.html">m</a></div>
|
|
<div class="col-last even-row-color"><a href="../m/pm/package-summary.html">pm</a></div>
|
|
</div>""");
|
|
}
|
|
}
|