test/com/sun/javadoc/testMemberInheritence/TestMemberInheritence.java

Thu, 09 Oct 2008 16:21:04 +0100

author
mcimadamore
date
Thu, 09 Oct 2008 16:21:04 +0100
changeset 138
d766e40e49d6
parent 1
9a66ca7c79fa
child 182
47a62d8d98b4
permissions
-rw-r--r--

6586091: javac crashes with StackOverflowError
Summary: Types.adapt should avoid infinite loops by exploiting a local cache
Reviewed-by: jjg

duke@1 1 /*
duke@1 2 * Copyright 2002-2005 Sun Microsystems, Inc. All Rights Reserved.
duke@1 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 *
duke@1 5 * This code is free software; you can redistribute it and/or modify it
duke@1 6 * under the terms of the GNU General Public License version 2 only, as
duke@1 7 * published by the Free Software Foundation.
duke@1 8 *
duke@1 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@1 13 * accompanied this code).
duke@1 14 *
duke@1 15 * You should have received a copy of the GNU General Public License version
duke@1 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@1 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 18 *
duke@1 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@1 20 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@1 21 * have any questions.
duke@1 22 */
duke@1 23
duke@1 24 /*
duke@1 25 * @test
duke@1 26 * @bug 4638588 4635809 6256068 6270645
duke@1 27 * @summary Test to make sure that members are inherited properly in the Javadoc.
duke@1 28 * Verify that inheritence labels are correct.
duke@1 29 * @author jamieh
duke@1 30 * @library ../lib/
duke@1 31 * @build JavadocTester
duke@1 32 * @build TestMemberInheritence
duke@1 33 * @run main TestMemberInheritence
duke@1 34 */
duke@1 35
duke@1 36 public class TestMemberInheritence extends JavadocTester {
duke@1 37
duke@1 38 private static final String BUG_ID = "4638588-4635809-6256068-6270645";
duke@1 39
duke@1 40 private static final String[][] TEST = {
duke@1 41 //Public field should be inherited
duke@1 42 {BUG_ID + FS + "pkg" + FS + "SubClass.html",
duke@1 43 "<A HREF=\"../pkg/BaseClass.html#pubField\">"},
duke@1 44
duke@1 45 //Public method should be inherited
duke@1 46 {BUG_ID + FS + "pkg" + FS + "SubClass.html",
duke@1 47 "<A HREF=\"../pkg/BaseClass.html#pubMethod()\">"},
duke@1 48
duke@1 49 //Public inner class should be inherited.
duke@1 50 {BUG_ID + FS + "pkg" + FS + "SubClass.html",
duke@1 51 "<A HREF=\"../pkg/BaseClass.pubInnerClass.html\" title=\"class in pkg\">"},
duke@1 52
duke@1 53 //Protected field should be inherited
duke@1 54 {BUG_ID + FS + "pkg" + FS + "SubClass.html",
duke@1 55 "<A HREF=\"../pkg/BaseClass.html#proField\">"},
duke@1 56
duke@1 57 //Protected method should be inherited
duke@1 58 {BUG_ID + FS + "pkg" + FS + "SubClass.html",
duke@1 59 "<A HREF=\"../pkg/BaseClass.html#proMethod()\">"},
duke@1 60
duke@1 61 //Protected inner class should be inherited.
duke@1 62 {BUG_ID + FS + "pkg" + FS + "SubClass.html",
duke@1 63 "<A HREF=\"../pkg/BaseClass.proInnerClass.html\" title=\"class in pkg\">"},
duke@1 64
duke@1 65 // New labels as of 1.5.0
duke@1 66 {BUG_ID + FS + "pkg" + FS + "SubClass.html",
duke@1 67 "<B>Nested classes/interfaces inherited from class pkg." +
duke@1 68 "<A HREF=\"../pkg/BaseClass.html\" title=\"class in pkg\">" +
duke@1 69 "BaseClass</A></B>"},
duke@1 70 {BUG_ID + FS + "pkg" + FS + "SubClass.html",
duke@1 71 "<B>Nested classes/interfaces inherited from interface pkg." +
duke@1 72 "<A HREF=\"../pkg/BaseInterface.html\" title=\"interface in pkg\">" +
duke@1 73 "BaseInterface</A></B>"},
duke@1 74
duke@1 75 // Test overriding/implementing methods with generic parameters.
duke@1 76 {BUG_ID + FS + "pkg" + FS + "BaseClass.html",
duke@1 77 "<DT><B>Specified by:</B><DD><CODE><A HREF=\"../pkg/BaseInterface.html#getAnnotation(java.lang.Class)\">getAnnotation</A></CODE> in interface <CODE><A HREF=\"../pkg/BaseInterface.html\" title=\"interface in pkg\">BaseInterface</A></CODE></DL>"},
duke@1 78
duke@1 79 // Test diamond inheritence member summary (6256068)
duke@1 80 {BUG_ID + FS + "diamond" + FS + "Z.html",
duke@1 81 "<TD><CODE><A HREF=\"../diamond/A.html#aMethod()\">aMethod</A></CODE></TD>"},
duke@1 82
duke@1 83 // Test that doc is inherited from closed parent (6270645)
duke@1 84 {BUG_ID + FS + "inheritDist" + FS + "C.html",
duke@1 85 "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;m1-B</TD>"},
duke@1 86
duke@1 87 };
duke@1 88
duke@1 89 private static final String[][] NEGATED_TEST = {
duke@1 90 {BUG_ID + FS + "pkg" + FS + "SubClass.html",
duke@1 91 "<A HREF=\"../pkg/BaseClass.html#staticMethod()\">staticMethod</A></CODE>"},
duke@1 92 };
duke@1 93 private static final String[] ARGS =
duke@1 94 new String[] {
duke@1 95 "-d", BUG_ID, "-sourcepath", SRC_DIR, "pkg", "diamond", "inheritDist"};
duke@1 96
duke@1 97 /**
duke@1 98 * The entry point of the test.
duke@1 99 * @param args the array of command line arguments.
duke@1 100 */
duke@1 101 public static void main(String[] args) {
duke@1 102 TestMemberInheritence tester = new TestMemberInheritence();
duke@1 103 run(tester, ARGS, TEST, NEGATED_TEST);
duke@1 104 tester.printSummary();
duke@1 105 }
duke@1 106
duke@1 107 /**
duke@1 108 * {@inheritDoc}
duke@1 109 */
duke@1 110 public String getBugId() {
duke@1 111 return BUG_ID;
duke@1 112 }
duke@1 113
duke@1 114 /**
duke@1 115 * {@inheritDoc}
duke@1 116 */
duke@1 117 public String getBugName() {
duke@1 118 return getClass().getName();
duke@1 119 }
duke@1 120 }

mercurial