author | jjg |
Fri, 18 Apr 2014 17:25:43 -0700 | |
changeset 24065 | fc4022e50129 |
parent 23971 | f5ff1f5a8dee |
child 24071 | b0845717434e |
permissions | -rw-r--r-- |
10 | 1 |
/* |
23971 | 2 |
* Copyright (c) 2003, 2014, 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 |
|
19119 | 26 |
* @bug 4460354 8014636 |
10 | 27 |
* @summary Test to make sure that relative paths are redirected in the |
28 |
* output so that they are not broken. |
|
29 |
* @author jamieh |
|
30 |
* @library ../lib/ |
|
31 |
* @build JavadocTester |
|
32 |
* @build TestRelativeLinks |
|
33 |
* @run main TestRelativeLinks |
|
34 |
*/ |
|
35 |
||
36 |
public class TestRelativeLinks extends JavadocTester { |
|
37 |
||
38 |
//Test information. |
|
19119 | 39 |
private static final String BUG_ID = "4460354-8014636"; |
10 | 40 |
|
41 |
//Javadoc arguments. |
|
42 |
private static final String[] ARGS = new String[] { |
|
43 |
"-d", BUG_ID, "-use", "-sourcepath", SRC_DIR, "pkg", "pkg2" |
|
44 |
}; |
|
45 |
||
46 |
//Input for string search tests. |
|
47 |
private static final String[][] TEST = { |
|
48 |
//These relative paths should stay relative because they appear |
|
49 |
//in the right places. |
|
23971 | 50 |
{BUG_ID + "/pkg/C.html", |
10 | 51 |
"<a href=\"relative-class-link.html\">relative class link</a>"}, |
23971 | 52 |
{BUG_ID + "/pkg/C.html", |
10 | 53 |
"<a href=\"relative-field-link.html\">relative field link</a>"}, |
23971 | 54 |
{BUG_ID + "/pkg/C.html", |
10 | 55 |
"<a href=\"relative-method-link.html\">relative method link</a>"}, |
23971 | 56 |
{BUG_ID + "/pkg/package-summary.html", |
10 | 57 |
"<a href=\"relative-package-link.html\">relative package link</a>"}, |
23971 | 58 |
{BUG_ID + "/pkg/C.html", |
59 |
" <a\n" + |
|
10 | 60 |
" href=\"relative-multi-line-link.html\">relative-multi-line-link</a>."}, |
61 |
||
62 |
//These relative paths should be redirected because they are in different |
|
63 |
//places. |
|
64 |
||
65 |
//INDEX PAGE |
|
23971 | 66 |
{BUG_ID + "/index-all.html", |
10 | 67 |
"<a href=\"./pkg/relative-class-link.html\">relative class link</a>"}, |
23971 | 68 |
{BUG_ID + "/index-all.html", |
10 | 69 |
"<a href=\"./pkg/relative-field-link.html\">relative field link</a>"}, |
23971 | 70 |
{BUG_ID + "/index-all.html", |
10 | 71 |
"<a href=\"./pkg/relative-method-link.html\">relative method link</a>"}, |
23971 | 72 |
{BUG_ID + "/index-all.html", |
10 | 73 |
"<a href=\"./pkg/relative-package-link.html\">relative package link</a>"}, |
23971 | 74 |
{BUG_ID + "/index-all.html", |
75 |
" <a\n" + |
|
10 | 76 |
" href=\"./pkg/relative-multi-line-link.html\">relative-multi-line-link</a>."}, |
77 |
||
78 |
||
79 |
//PACKAGE USE |
|
23971 | 80 |
{BUG_ID + "/pkg/package-use.html", |
10 | 81 |
"<a href=\"../pkg/relative-package-link.html\">relative package link</a>."}, |
23971 | 82 |
{BUG_ID + "/pkg/package-use.html", |
10 | 83 |
"<a href=\"../pkg/relative-class-link.html\">relative class link</a>"}, |
84 |
||
85 |
//CLASS_USE |
|
23971 | 86 |
{BUG_ID + "/pkg/class-use/C.html", |
10 | 87 |
"<a href=\"../../pkg/relative-field-link.html\">relative field link</a>"}, |
23971 | 88 |
{BUG_ID + "/pkg/class-use/C.html", |
10 | 89 |
"<a href=\"../../pkg/relative-method-link.html\">relative method link</a>"}, |
23971 | 90 |
{BUG_ID + "/pkg/class-use/C.html", |
10 | 91 |
"<a href=\"../../pkg/relative-package-link.html\">relative package link</a>"}, |
23971 | 92 |
{BUG_ID + "/pkg/class-use/C.html", |
93 |
" <a\n" + |
|
10 | 94 |
" href=\"../../pkg/relative-multi-line-link.html\">relative-multi-line-link</a>."}, |
95 |
||
96 |
//PACKAGE OVERVIEW |
|
23971 | 97 |
{BUG_ID + "/overview-summary.html", |
10 | 98 |
"<a href=\"./pkg/relative-package-link.html\">relative package link</a>"}, |
99 |
||
100 |
||
101 |
}; |
|
102 |
private static final String[][] NEGATED_TEST = NO_TEST; |
|
103 |
||
104 |
/** |
|
105 |
* The entry point of the test. |
|
106 |
* @param args the array of command line arguments. |
|
107 |
*/ |
|
108 |
public static void main(String[] args) { |
|
109 |
TestRelativeLinks tester = new TestRelativeLinks(); |
|
24065
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
23971
diff
changeset
|
110 |
tester.run(ARGS, TEST, NEGATED_TEST); |
10 | 111 |
tester.printSummary(); |
112 |
} |
|
113 |
||
114 |
/** |
|
115 |
* {@inheritDoc} |
|
116 |
*/ |
|
117 |
public String getBugId() { |
|
118 |
return BUG_ID; |
|
119 |
} |
|
120 |
||
121 |
/** |
|
122 |
* {@inheritDoc} |
|
123 |
*/ |
|
124 |
public String getBugName() { |
|
125 |
return getClass().getName(); |
|
126 |
} |
|
127 |
} |