author | bpatel |
Fri, 18 Oct 2013 16:34:42 -0700 | |
changeset 21478 | fa4c7cda1b41 |
parent 9083 | 63f3c4d2d992 |
child 23139 | 612191246a7d |
permissions | -rw-r--r-- |
10 | 1 |
/* |
21478
fa4c7cda1b41
8026567: Use meaningful style names for strong and italic styles.
bpatel
parents:
9083
diff
changeset
|
2 |
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. |
10 | 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 |
* |
|
5520 | 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. |
|
10 | 22 |
*/ |
23 |
||
24 |
/* |
|
25 |
* @test |
|
21478
fa4c7cda1b41
8026567: Use meaningful style names for strong and italic styles.
bpatel
parents:
9083
diff
changeset
|
26 |
* @bug 4927552 8026567 |
10 | 27 |
* @summary <DESC> |
28 |
* @author jamieh |
|
29 |
* @library ../lib/ |
|
9083
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
7681
diff
changeset
|
30 |
* @build JavadocTester TestDeprecatedDocs |
10 | 31 |
* @run main TestDeprecatedDocs |
32 |
*/ |
|
33 |
||
34 |
public class TestDeprecatedDocs extends JavadocTester { |
|
35 |
||
36 |
//Test information. |
|
37 |
private static final String BUG_ID = "4927552"; |
|
38 |
||
39 |
//Javadoc arguments. |
|
40 |
private static final String[] ARGS = new String[] { |
|
41 |
"-d", BUG_ID, "-source", "1.5", "-sourcepath", SRC_DIR, "pkg" |
|
42 |
}; |
|
43 |
||
44 |
private static final String TARGET_FILE = |
|
45 |
BUG_ID + FS + "deprecated-list.html"; |
|
46 |
||
47 |
private static final String TARGET_FILE2 = |
|
48 |
BUG_ID + FS + "pkg" + FS + "DeprecatedClassByAnnotation.html"; |
|
49 |
||
50 |
//Input for string search tests. |
|
51 |
private static final String[][] TEST = { |
|
52 |
{TARGET_FILE, "annotation_test1 passes"}, |
|
53 |
{TARGET_FILE, "annotation_test2 passes"}, |
|
54 |
{TARGET_FILE, "annotation_test3 passes"}, |
|
55 |
{TARGET_FILE, "class_test1 passes"}, |
|
56 |
{TARGET_FILE, "class_test2 passes"}, |
|
57 |
{TARGET_FILE, "class_test3 passes"}, |
|
58 |
{TARGET_FILE, "class_test4 passes"}, |
|
59 |
{TARGET_FILE, "enum_test1 passes"}, |
|
60 |
{TARGET_FILE, "enum_test2 passes"}, |
|
61 |
{TARGET_FILE, "error_test1 passes"}, |
|
62 |
{TARGET_FILE, "error_test2 passes"}, |
|
63 |
{TARGET_FILE, "error_test3 passes"}, |
|
64 |
{TARGET_FILE, "error_test4 passes"}, |
|
65 |
{TARGET_FILE, "exception_test1 passes"}, |
|
66 |
{TARGET_FILE, "exception_test2 passes"}, |
|
67 |
{TARGET_FILE, "exception_test3 passes"}, |
|
68 |
{TARGET_FILE, "exception_test4 passes"}, |
|
69 |
{TARGET_FILE, "interface_test1 passes"}, |
|
70 |
{TARGET_FILE, "interface_test2 passes"}, |
|
71 |
{TARGET_FILE, "interface_test3 passes"}, |
|
72 |
{TARGET_FILE, "interface_test4 passes"}, |
|
73 |
{TARGET_FILE, "pkg.DeprecatedClassByAnnotation"}, |
|
74 |
{TARGET_FILE, "pkg.DeprecatedClassByAnnotation()"}, |
|
75 |
{TARGET_FILE, "pkg.DeprecatedClassByAnnotation.method()"}, |
|
76 |
{TARGET_FILE, "pkg.DeprecatedClassByAnnotation.field"}, |
|
77 |
||
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
78 |
{TARGET_FILE2, "<pre>@Deprecated" + NL + |
21478
fa4c7cda1b41
8026567: Use meaningful style names for strong and italic styles.
bpatel
parents:
9083
diff
changeset
|
79 |
"public class <span class=\"typeNameLabel\">DeprecatedClassByAnnotation</span>" + NL + |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
80 |
"extends java.lang.Object</pre>"}, |
10 | 81 |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
82 |
{TARGET_FILE2, "<pre>@Deprecated" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
83 |
"public int field</pre>" + NL + |
21478
fa4c7cda1b41
8026567: Use meaningful style names for strong and italic styles.
bpatel
parents:
9083
diff
changeset
|
84 |
"<div class=\"block\"><span class=\"deprecatedLabel\">Deprecated.</span> </div>"}, |
10 | 85 |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
86 |
{TARGET_FILE2, "<pre>@Deprecated" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
87 |
"public DeprecatedClassByAnnotation()</pre>" + NL + |
21478
fa4c7cda1b41
8026567: Use meaningful style names for strong and italic styles.
bpatel
parents:
9083
diff
changeset
|
88 |
"<div class=\"block\"><span class=\"deprecatedLabel\">Deprecated.</span> </div>"}, |
10 | 89 |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
90 |
{TARGET_FILE2, "<pre>@Deprecated" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
91 |
"public void method()</pre>" + NL + |
21478
fa4c7cda1b41
8026567: Use meaningful style names for strong and italic styles.
bpatel
parents:
9083
diff
changeset
|
92 |
"<div class=\"block\"><span class=\"deprecatedLabel\">Deprecated.</span> </div>"}, |
10 | 93 |
}; |
94 |
||
95 |
private static final String[][] NEGATED_TEST = NO_TEST; |
|
96 |
||
97 |
/** |
|
98 |
* The entry point of the test. |
|
99 |
* @param args the array of command line arguments. |
|
100 |
*/ |
|
101 |
public static void main(String[] args) { |
|
102 |
TestDeprecatedDocs tester = new TestDeprecatedDocs(); |
|
103 |
run(tester, ARGS, TEST, NEGATED_TEST); |
|
104 |
tester.printSummary(); |
|
105 |
} |
|
106 |
||
107 |
/** |
|
108 |
* {@inheritDoc} |
|
109 |
*/ |
|
110 |
public String getBugId() { |
|
111 |
return BUG_ID; |
|
112 |
} |
|
113 |
||
114 |
/** |
|
115 |
* {@inheritDoc} |
|
116 |
*/ |
|
117 |
public String getBugName() { |
|
118 |
return getClass().getName(); |
|
119 |
} |
|
120 |
} |