/* * Copyright (c) 2017, 2018, 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 8157000 8192850 * @summary test the behavior of --override-methods option * @library ../lib * @modules jdk.javadoc/jdk.javadoc.internal.tool * @build JavadocTester * @run main TestOverrideMethods */ public class TestOverrideMethods extends JavadocTester { public static void main(String... args) throws Exception { TestOverrideMethods tester = new TestOverrideMethods(); tester.runTests(); } @Test void testInvalidOption() { // Make sure an invalid argument fails javadoc("-d", "out-bad-option", "-sourcepath", testSrc, "-javafx", "--override-methods=nonsense", "pkg5"); checkExit(Exit.CMDERR); } @Test void testDetail() { // Make sure the option works javadoc("-d", "out-detail", "-sourcepath", testSrc, "-javafx", "--override-methods=detail", "pkg5"); checkExit(Exit.OK); } @Test void testSummary() { javadoc("-d", "out-summary", "-sourcepath", testSrc, "-javafx", "--override-methods=summary", "pkg5"); checkExit(Exit.OK); checkOrder("pkg5/Classes.C.html", // Check properties "Properties declared in class pkg5.rate", // Check nested classes "Nested classes/interfaces declared in class pkg5.", "Classes.P", "Classes.P.PN.html", "Classes.P.PN.html", "type parameter in Classes.P.PN\">K", "type parameter in Classes.P.PN", "V", // Check fields "Fields declared in class pkg5.field0", // Check method summary "Method Summary", "void", "#m1--\">m1", "A modified method", "void", "#m4-java.lang.String-java.lang.String-\">m4", "java.lang.String k,", "java.lang.String", " v)", // Check footnotes "Methods declared in class pkg5.m0", // Check method details for override "overrideSpecifyLabel", "Overrides:", "Classes.GP.html#m7--\">m7", "in class", "Classes.GP.html", "Classes.GP" ); checkOrder("pkg5/Classes.C.html", // Check footnotes 2 "Methods declared in class pkg5.", "Classes.P.html#getRate--\">getRate", "Classes.P.html#m2--\">m2", "Classes.P.html#m3--\">m3", "Classes.P.html#m4-K-V-\">m4", "Classes.P.html#rateProperty--\">rateProperty", "Classes.P.html#setRate-double-\">setRate", // Check @link "A test of links to the methods in this class.

\n", "Classes.GP.html#m0--", "Classes.GP.m0()", "#m1--", "m1()", "Classes.P.html#m2--", "Classes.P.m2()", "Classes.P.html#m3--", "Classes.P.m3()", "m4(java.lang.String,java.lang.String)", "Classes.P.html#m5--", "Classes.P.m5()", "#m6--", "m6()", "#m7--", "m7()", "End of links", // Check @see "See Also:", "Classes.GP.html#m0--", "Classes.GP.m0()", "#m1--", "m1()", "Classes.P.html#m2--", "Classes.P.m2()", "Classes.P.html#m3--", "Classes.P.m3()", "#m4-java.lang.String-java.lang.String-", "m4(String k, String v)", "Classes.P.html#m5--\">Classes.P.m5()", "#m6--\">m6()", "#m7--\">m7()" ); // Tests for interfaces // Make sure the static methods in the super interface // do not make it to this interface checkOutput("pkg5/Interfaces.D.html", false, "msd", "msn"); checkOrder("pkg5/Interfaces.D.html", "Start of links

", "Interfaces.A.html#m0--\">Interfaces.A.m0()", "Interfaces.A.html#m1--\">Interfaces.A.m1()", "Interfaces.A.html#m2--\">Interfaces.A.m2()", "Interfaces.A.html#m3--\">Interfaces.A.m3()", "#m--\">m()", "#n--\">n()", "Interfaces.C.html#o--\">Interfaces.C.o()", "End of links", // Check @see links "See Also:", "Interfaces.A.html#m0--\">Interfaces.A.m0()", "Interfaces.A.html#m1--\">Interfaces.A.m1()", "Interfaces.A.html#m2--\">Interfaces.A.m2()", "Interfaces.A.html#m3--\">Interfaces.A.m3()", "#m--\">m()", "#n--\">n()", "Interfaces.C.html#o--\">Interfaces.C.o()", // Check properties "Properties declared in interface pkg5.Interfaces.A", // Check nested classes "Nested classes/interfaces declared in interface pkg5.", "Interfaces.A", "Interfaces.A.AA.html", "Interfaces.A.AA", // Check Fields "Fields declared in interface pkg5.QUOTE", "Interfaces.A.html#rate\">rate", // Check Method Summary "Method Summary", "#m--\">m", "#n--\">n", // Check footnotes "Methods declared in interface pkg5.getRate", "Interfaces.A.html#rateProperty--\">rateProperty", "Interfaces.A.html#setRate-double-", "Methods declared in interface pkg5.m1", "Interfaces.B.html#m3--\">m3", "Methods declared in interface pkg5.o" ); // Test synthetic values and valuesof of an enum. checkOrder("index-all.html", "

M

", "m()", "m()", "m0()", "m0()", "m1()", "m1()", "m1()", "m1()", "m2()", "m2()", "m3()", "m3()", "m3()", "m4(String, String)", "m4(K, V)", "m5()", "m6()", "m6()", "m7()", "m7()", "Returns the enum constant of this type with the specified name.", "Returns an array containing the constants of this enum type, in\n" + "the order they are declared." ); } }