1 /*
   2  * Copyright (c) 2003, 2019, 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      4951228 6290760 8025633 8026567 8081854 8162363 8175200 8177417 8186332 8182765
  27  * @summary  Test the case where the overriden method returns a different
  28  *           type than the method in the child class.  Make sure the
  29  *           documentation is inherited but the return type isn't.
  30  * @library  ../../lib
  31  * @modules jdk.javadoc/jdk.javadoc.internal.tool
  32  * @build    javadoc.tester.*
  33  * @run main TestMemberSummary
  34  */
  35 
  36 import javadoc.tester.JavadocTester;
  37 
  38 public class TestMemberSummary extends JavadocTester {
  39 
  40     public static void main(String... args) throws Exception {
  41         TestMemberSummary tester = new TestMemberSummary();
  42         tester.runTests();
  43     }
  44 
  45     @Test
  46     public void test() {
  47         javadoc("-d", "out",
  48                 "-private",
  49                 "-sourcepath", testSrc,
  50                 "pkg","pkg2");
  51         checkExit(Exit.OK);
  52 
  53         checkOutput("pkg/PublicChild.html", true,
  54                 // Check return type in member summary.
  55                 "<code><a href=\"PublicChild.html\" title=\"class in pkg\">PublicChild</a></code></td>\n"
  56                 + "<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\"><a href=\"#returnTypeTest()\">"
  57                 + "returnTypeTest</a></span>()</code>",
  58                 // Check return type in member detail.
  59                 "<div class=\"memberSignature\"><span class=\"modifiers\">public</span>&nbsp;"
  60                 + "<span class=\"returnType\"><a href=\"PublicChild.html\" title=\"class in pkg\">"
  61                 + "PublicChild</a></span>&nbsp;<span class=\"memberName\">returnTypeTest</span>()</div>",
  62                 "<th class=\"colConstructorName\" scope=\"row\"><code><span class=\"memberNameLink\">"
  63                 + "<a href=\"#%3Cinit%3E()\">PublicChild</a></span>()</code></th>");
  64 
  65         checkOutput("pkg/PrivateParent.html", true,
  66                 "<td class=\"colFirst\"><code>private </code></td>\n"
  67                 + "<th class=\"colConstructorName\" scope=\"row\"><code><span class=\"memberNameLink\">"
  68                 + "<a href=\"#%3Cinit%3E(int)\">PrivateParent</a></span>​(int&nbsp;i)</code>"
  69                 + "</th>");
  70 
  71         // Legacy anchor dimensions (6290760)
  72         checkOutput("pkg2/A.html", true,
  73                 "<a id=\"f(java.lang.Object[])\">\n"
  74                 + "<!--   -->\n"
  75                 + "</a><a id=\"f(T[])\">f</a>");
  76     }
  77 }