|
| 1 | +/* |
| 2 | + * Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | + /* |
| 25 | + * @test |
| 26 | + * @bug 8292892 |
| 27 | + * @summary Tests that members inherited from classes with package access are |
| 28 | + * documented in the index as though they were declared in the |
| 29 | + * inheriting class. |
| 30 | + * @library ../../lib |
| 31 | + * @modules jdk.javadoc/jdk.javadoc.internal.tool |
| 32 | + * @build javadoc.tester.* |
| 33 | + * @run main TestIndexInherited |
| 34 | + */ |
| 35 | +import java.nio.file.Path; |
| 36 | +import javadoc.tester.JavadocTester; |
| 37 | + |
| 38 | +/** |
| 39 | + * Tests the index for members inherited from a class with package access. |
| 40 | + */ |
| 41 | +public class TestIndexInherited extends JavadocTester { |
| 42 | + |
| 43 | + /** |
| 44 | + * Name of the HTML index file. |
| 45 | + */ |
| 46 | + private static final String INDEX_FILE = "index-all.html"; |
| 47 | + |
| 48 | + /** |
| 49 | + * Name of the JavaScript member search index file. |
| 50 | + */ |
| 51 | + private static final String SEARCH_FILE = "member-search-index.js"; |
| 52 | + |
| 53 | + /** |
| 54 | + * Index entries for members inherited by the subclasses. |
| 55 | + */ |
| 56 | + private static final String[] INDEX_INHERITED = {""" |
| 57 | + <dt><a href="pkg1/ClassB.html#methodA()" class="member-name-link">methodA()</a> \ |
| 58 | + - Method in class pkg1.<a href="pkg1/ClassB.html" title="class in pkg1">ClassB</a></dt> |
| 59 | + """, """ |
| 60 | + <dt><a href="pkg2/ClassC.html#methodA()" class="member-name-link">methodA()</a> \ |
| 61 | + - Method in class pkg2.<a href="pkg2/ClassC.html" title="class in pkg2">ClassC</a></dt> |
| 62 | + """, """ |
| 63 | + <dt><a href="pkg1/ClassB.html#STRING_A" class="member-name-link">STRING_A</a> \ |
| 64 | + - Static variable in class pkg1.<a href="pkg1/ClassB.html" title="class in pkg1">ClassB</a></dt> |
| 65 | + """, """ |
| 66 | + <dt><a href="pkg2/ClassC.html#STRING_A" class="member-name-link">STRING_A</a> \ |
| 67 | + - Static variable in class pkg2.<a href="pkg2/ClassC.html" title="class in pkg2">ClassC</a></dt> |
| 68 | + """}; |
| 69 | + |
| 70 | + /** |
| 71 | + * Search entries for members inherited by the subclasses. |
| 72 | + */ |
| 73 | + private static final String[] SEARCH_INHERITED = {""" |
| 74 | + {"p":"pkg1","c":"ClassB","l":"methodA()"}""", """ |
| 75 | + {"p":"pkg2","c":"ClassC","l":"methodA()"}""", """ |
| 76 | + {"p":"pkg1","c":"ClassB","l":"STRING_A"}""", """ |
| 77 | + {"p":"pkg2","c":"ClassC","l":"STRING_A"}"""}; |
| 78 | + |
| 79 | + /** |
| 80 | + * Index entries for members declared by the superclass. |
| 81 | + */ |
| 82 | + private static final String[] INDEX_DECLARED = {""" |
| 83 | + <dt><a href="pkg1/ClassA.html#methodA()" class="member-name-link">methodA()</a> \ |
| 84 | + - Method in interface pkg1.<a href="pkg1/ClassA.html" title="interface in pkg1">ClassA</a></dt> |
| 85 | + """, """ |
| 86 | + <dt><a href="pkg1/ClassA.html#STRING_A" class="member-name-link">STRING_A</a> \ |
| 87 | + - Static variable in interface pkg1.<a href="pkg1/ClassA.html" title="interface in pkg1">ClassA</a></dt> |
| 88 | + """}; |
| 89 | + |
| 90 | + /** |
| 91 | + * Search entries for members declared by the superclass. |
| 92 | + */ |
| 93 | + private static final String[] SEARCH_DECLARED = {""" |
| 94 | + {"p":"pkg1","c":"ClassA","l":"methodA()"}""", """ |
| 95 | + {"p":"pkg1","c":"ClassA","l":"STRING_A"}"""}; |
| 96 | + |
| 97 | + /** |
| 98 | + * Sole constructor. |
| 99 | + */ |
| 100 | + public TestIndexInherited() { |
| 101 | + } |
| 102 | + |
| 103 | + /** |
| 104 | + * Runs the test methods. |
| 105 | + * |
| 106 | + * @param args the command-line arguments |
| 107 | + * @throws Exception if an errors occurs while executing a test method |
| 108 | + */ |
| 109 | + public static void main(String... args) throws Exception { |
| 110 | + var tester = new TestIndexInherited(); |
| 111 | + tester.runTests(); |
| 112 | + } |
| 113 | + |
| 114 | + /** |
| 115 | + * Checks that the index includes the inherited members of both public |
| 116 | + * subclasses, loaded in alphabetical order, and that there is absolutely no |
| 117 | + * mention of the non-public superclass. |
| 118 | + * |
| 119 | + * @param base the base directory for this method's output |
| 120 | + */ |
| 121 | + @Test |
| 122 | + public void testForInherited1(Path base) { |
| 123 | + String dir = base.resolve("out").toString(); |
| 124 | + javadoc("-d", dir, "-sourcepath", testSrc, "pkg1", "pkg2"); |
| 125 | + checkExit(Exit.OK); |
| 126 | + checkOrder(INDEX_FILE, INDEX_INHERITED); |
| 127 | + checkOrder(SEARCH_FILE, SEARCH_INHERITED); |
| 128 | + checkOutput(INDEX_FILE, false, "ClassA"); |
| 129 | + checkOutput(SEARCH_FILE, false, "ClassA"); |
| 130 | + } |
| 131 | + |
| 132 | + /** |
| 133 | + * Checks that the index includes the inherited members of both public |
| 134 | + * subclasses, loaded in reverse alphabetical order, and that there is |
| 135 | + * absolutely no mention of the non-public superclass. |
| 136 | + * |
| 137 | + * @param base the base directory for this method's output |
| 138 | + */ |
| 139 | + @Test |
| 140 | + public void testForInherited2(Path base) { |
| 141 | + String dir = base.resolve("out").toString(); |
| 142 | + javadoc("-d", dir, "-sourcepath", testSrc, "pkg2", "pkg1"); |
| 143 | + checkExit(Exit.OK); |
| 144 | + checkOrder(INDEX_FILE, INDEX_INHERITED); |
| 145 | + checkOrder(SEARCH_FILE, SEARCH_INHERITED); |
| 146 | + checkOutput(INDEX_FILE, false, "ClassA"); |
| 147 | + checkOutput(SEARCH_FILE, false, "ClassA"); |
| 148 | + } |
| 149 | + |
| 150 | + /** |
| 151 | + * Checks that the index includes the declared members of the non-public |
| 152 | + * superclass when the Javadoc <i>private</i> option is specified, and that |
| 153 | + * it no longer includes the inherited members of either public subclass. |
| 154 | + * |
| 155 | + * @param base the base directory for this method's output |
| 156 | + */ |
| 157 | + @Test |
| 158 | + public void testForDeclared(Path base) { |
| 159 | + String dir = base.resolve("out").toString(); |
| 160 | + javadoc("-d", dir, "-sourcepath", testSrc, "-private", "pkg1", "pkg2"); |
| 161 | + checkExit(Exit.OK); |
| 162 | + checkOrder(INDEX_FILE, INDEX_DECLARED); |
| 163 | + checkOrder(SEARCH_FILE, SEARCH_DECLARED); |
| 164 | + checkOutput(INDEX_FILE, false, INDEX_INHERITED); |
| 165 | + checkOutput(SEARCH_FILE, false, SEARCH_INHERITED); |
| 166 | + } |
| 167 | +} |
0 commit comments