author | juh |
Tue, 25 Jun 2013 14:31:29 -0700 | |
changeset 18551 | 882a3948c6e6 |
parent 14368 | 6f4c62de6985 |
child 20238 | a08610368936 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
14368
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
5520
diff
changeset
|
2 |
* Copyright (c) 2002, 2012, 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 |
import java.io.File; |
|
25 |
||
26 |
/* |
|
27 |
* @test |
|
28 |
* @bug 4258405 4973606 |
|
29 |
* @summary This test verifies that the doc-file directory does not |
|
30 |
* get overwritten when the sourcepath is equal to the destination |
|
31 |
* directory. |
|
32 |
* Also test that -docfilessubdirs and -excludedocfilessubdir both work. |
|
33 |
* @author jamieh |
|
34 |
* @library ../lib/ |
|
35 |
* @build JavadocTester |
|
36 |
* @build TestDocFileDir |
|
37 |
* @run main TestDocFileDir |
|
38 |
*/ |
|
39 |
||
40 |
public class TestDocFileDir extends JavadocTester { |
|
41 |
||
42 |
private static final String BUG_ID = "4258405-4973606"; |
|
43 |
||
44 |
private static final String[][] TEST1 = { |
|
45 |
{BUG_ID + "-1" + FS + "pkg" + FS + "doc-files" + FS + "testfile.txt", |
|
46 |
"This doc file did not get trashed."} |
|
47 |
}; |
|
48 |
private static final String[][] NEGATED_TEST1 = NO_TEST; |
|
49 |
||
50 |
private static final String[][] TEST2 = { |
|
51 |
{BUG_ID + "-2" + FS + "pkg" + FS + "doc-files" + FS + "subdir-used1" + |
|
52 |
FS + "testfile.txt", |
|
53 |
"passed" |
|
54 |
}, |
|
55 |
{BUG_ID + "-2" + FS + "pkg" + FS + "doc-files" + FS + "subdir-used2" + |
|
56 |
FS + "testfile.txt", |
|
57 |
"passed" |
|
58 |
}, |
|
59 |
}; |
|
60 |
private static final String[][] NEGATED_TEST2 = { |
|
61 |
{BUG_ID + "-2" + FS + "pkg" + FS + "doc-files" + FS + "subdir-excluded1" + |
|
62 |
FS + "testfile.txt", |
|
63 |
"passed" |
|
64 |
}, |
|
65 |
{BUG_ID + "-2" + FS + "pkg" + FS + "doc-files" + FS + "subdir-excluded2" + |
|
66 |
FS + "testfile.txt", |
|
67 |
"passed" |
|
68 |
}, |
|
69 |
}; |
|
70 |
||
71 |
private static final String[][] TEST0 = { |
|
72 |
{"pkg" + FS + "doc-files" + FS + "testfile.txt", |
|
73 |
"This doc file did not get trashed."} |
|
74 |
}; |
|
75 |
private static final String[][] NEGATED_TEST0 = {}; |
|
76 |
||
77 |
//Output dir = Input Dir |
|
78 |
private static final String[] ARGS1 = |
|
79 |
new String[] { |
|
14368
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
5520
diff
changeset
|
80 |
"-d", BUG_ID + "-1", |
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
5520
diff
changeset
|
81 |
"-sourcepath", |
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
5520
diff
changeset
|
82 |
"blah" + File.pathSeparator + BUG_ID + "-1" + File.pathSeparator + "blah", |
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
5520
diff
changeset
|
83 |
"pkg"}; |
10 | 84 |
|
85 |
//Exercising -docfilessubdirs and -excludedocfilessubdir |
|
86 |
private static final String[] ARGS2 = |
|
87 |
new String[] { |
|
14368
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
5520
diff
changeset
|
88 |
"-d", BUG_ID + "-2", |
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
5520
diff
changeset
|
89 |
"-sourcepath", SRC_DIR, |
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
5520
diff
changeset
|
90 |
"-docfilessubdirs", |
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
5520
diff
changeset
|
91 |
"-excludedocfilessubdir", "subdir-excluded1:subdir-excluded2", |
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
5520
diff
changeset
|
92 |
"pkg"}; |
10 | 93 |
|
94 |
//Output dir = "", Input dir = "" |
|
95 |
private static final String[] ARGS0 = |
|
96 |
new String[] {"pkg" + FS + "C.java"}; |
|
97 |
||
98 |
||
99 |
/** |
|
100 |
* The entry point of the test. |
|
101 |
* @param args the array of command line arguments. |
|
102 |
*/ |
|
103 |
public static void main(String[] args) { |
|
104 |
TestDocFileDir tester = new TestDocFileDir(); |
|
105 |
copyDir(SRC_DIR + FS + "pkg", "."); |
|
106 |
run(tester, ARGS0, TEST0, NEGATED_TEST0); |
|
107 |
copyDir(SRC_DIR + FS + "pkg", BUG_ID + "-1"); |
|
108 |
run(tester, ARGS1, TEST1, NEGATED_TEST1); |
|
109 |
run(tester, ARGS2, TEST2, NEGATED_TEST2); |
|
110 |
tester.printSummary(); |
|
111 |
} |
|
112 |
||
113 |
/** |
|
114 |
* {@inheritDoc} |
|
115 |
*/ |
|
116 |
public String getBugId() { |
|
117 |
return BUG_ID; |
|
118 |
} |
|
119 |
||
120 |
/** |
|
121 |
* {@inheritDoc} |
|
122 |
*/ |
|
123 |
public String getBugName() { |
|
124 |
return getClass().getName(); |
|
125 |
} |
|
126 |
} |