TestOverridenPrivateMethodsWithPrivateFlag.java revision 1934:8c55df2442c1
1/*
2 * Copyright (c) 2002, 2013, 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 4634891
27 * @summary Determine if overriden methods are properly documented when
28 * -protected (default) visibility flag is used.
29 * @author jamieh
30 * @library ../lib/
31 * @build JavadocTester
32 * @build TestOverridenPrivateMethodsWithPrivateFlag
33 * @run main TestOverridenPrivateMethodsWithPrivateFlag
34 */
35
36public class TestOverridenPrivateMethodsWithPrivateFlag extends JavadocTester {
37
38    private static final String BUG_ID = "4634891";
39
40    private static final String[][] TEST = {
41        //The public method should be overriden
42        {BUG_ID + FS + "pkg1" + FS + "SubClass.html",
43         "<dt><span class=\"strong\">Overrides:</span></dt>" + NL +
44                 "<dd><code><a href=\"../pkg1/BaseClass.html#publicMethod"},
45
46        //The package private method should be overriden since the base and sub class are in the same
47        //package.
48        {BUG_ID + FS + "pkg1" + FS + "SubClass.html",
49         "<dt><span class=\"strong\">Overrides:</span></dt>" + NL +
50                 "<dd><code><a href=\"../pkg1/BaseClass.html#packagePrivateMethod"},
51
52        //The public method in different package should be overriden
53        {BUG_ID + FS + "pkg2" + FS + "SubClass.html",
54         "<dt><span class=\"strong\">Overrides:</span></dt>" + NL +
55                 "<dd><code><a href=\"../pkg1/BaseClass.html#publicMethod"},
56    };
57
58    private static final String[][] NEGATED_TEST = {
59
60        //The private method in should not be overriden
61        {BUG_ID + FS + "pkg1" + FS + "SubClass.html",
62         "<dt><span class=\"strong\">Overrides:</span></dt>" + NL +
63                 "<dd><code><a href=\"../pkg1/BaseClass.html#privateMethod"},
64
65        //The private method in different package should not be overriden
66        {BUG_ID + FS + "pkg2" + FS + "SubClass.html",
67         "<dt><span class=\"strong\">Overrides:</span></dt>" + NL +
68                 "<dd><code><a href=\"../pkg1/BaseClass.html#privateMethod"},
69
70        //The package private method should not be overriden since the base and sub class are in
71        //different packages.
72        {BUG_ID + FS + "pkg2" + FS + "SubClass.html",
73         "<dt><span class=\"strong\">Overrides:</span></dt>" + NL +
74                 "<dd><code><a href=\"../pkg1/BaseClass.html#packagePrivateMethod"}
75
76
77    };
78
79    private static final String[] ARGS =
80        new String[] {
81            "-d", BUG_ID, "-sourcepath", SRC_DIR, "-private", "pkg1", "pkg2"};
82
83    /**
84     * The entry point of the test.
85     * @param args the array of command line arguments.
86     */
87    public static void main(String[] args) {
88        TestOverridenPrivateMethodsWithPrivateFlag tester = new TestOverridenPrivateMethodsWithPrivateFlag();
89        run(tester, ARGS, TEST, NEGATED_TEST);
90        tester.printSummary();
91    }
92
93    /**
94     * {@inheritDoc}
95     */
96    public String getBugId() {
97        return BUG_ID;
98    }
99
100    /**
101     * {@inheritDoc}
102     */
103    public String getBugName() {
104        return getClass().getName();
105    }
106}
107