author | jjg |
Tue, 22 Apr 2014 17:57:40 -0700 | |
changeset 24072 | e7549dcbc4af |
parent 24065 | fc4022e50129 |
child 24217 | 25b12d4d4192 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
23971 | 2 |
* Copyright (c) 2002, 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 |
import java.io.*; |
|
25 |
||
26 |
||
27 |
/** |
|
28 |
* Runs javadoc and then runs regression tests on the resulting output. |
|
29 |
* This class currently contains three tests: |
|
30 |
* <ul> |
|
31 |
* <li> String search: Reads each file, complete with newlines, |
|
32 |
* into a string. Lets you search for strings that contain |
|
33 |
* newlines. String matching is case-sensitive. |
|
34 |
* You can run javadoc multiple times with different arguments, |
|
35 |
* generating output into different destination directories, and |
|
36 |
* then perform a different array of tests on each one. |
|
37 |
* To do this, the run method accepts a test array for testing |
|
38 |
* that a string is found, and a negated test array for testing |
|
39 |
* that a string is not found. |
|
40 |
* <li> Run diffs: Iterate through the list of given file pairs |
|
41 |
* and diff the pairs. |
|
42 |
* <li> Check exit code: Check the exit code of Javadoc and |
|
43 |
* record whether the test passed or failed. |
|
44 |
* </ul> |
|
45 |
* |
|
46 |
* @author Doug Kramer |
|
47 |
* @author Jamie Ho |
|
48 |
* @since 1.4.2 |
|
49 |
*/ |
|
50 |
public abstract class JavadocTester { |
|
51 |
||
23971 | 52 |
protected static final String NL = System.getProperty("line.separator"); |
10 | 53 |
protected static final String FS = System.getProperty("file.separator"); |
23971 | 54 |
|
10 | 55 |
protected static final String SRC_DIR = System.getProperty("test.src", "."); |
56 |
protected static final String JAVA_VERSION = System.getProperty("java.version"); |
|
24072 | 57 |
protected static final String OUTPUT_DIR = "out"; |
10 | 58 |
protected static final String[][] NO_TEST = new String[][] {}; |
20238
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
59 |
protected static final String[] NO_FILE_TEST = new String[] {}; |
10 | 60 |
|
61 |
/** |
|
62 |
* Use this as the file name in the test array when you want to search |
|
63 |
* for a string in the error output. |
|
64 |
*/ |
|
65 |
public static final String ERROR_OUTPUT = "ERROR_OUTPUT"; |
|
66 |
||
67 |
/** |
|
68 |
* Use this as the file name in the test array when you want to search |
|
69 |
* for a string in the notice output. |
|
70 |
*/ |
|
71 |
public static final String NOTICE_OUTPUT = "NOTICE_OUTPUT"; |
|
72 |
||
73 |
/** |
|
74 |
* Use this as the file name in the test array when you want to search |
|
75 |
* for a string in the warning output. |
|
76 |
*/ |
|
77 |
public static final String WARNING_OUTPUT = "WARNING_OUTPUT"; |
|
78 |
||
79 |
/** |
|
80 |
* Use this as the file name in the test array when you want to search |
|
81 |
* for a string in standard output. |
|
82 |
*/ |
|
83 |
public static final String STANDARD_OUTPUT = "STANDARD_OUTPUT"; |
|
84 |
||
85 |
/** |
|
86 |
* The default doclet. |
|
87 |
*/ |
|
88 |
public static final String DEFAULT_DOCLET_CLASS = "com.sun.tools.doclets.formats.html.HtmlDoclet"; |
|
89 |
public static final String DEFAULT_DOCLET_CLASS_OLD = "com.sun.tools.doclets.standard.Standard"; |
|
90 |
||
91 |
/** |
|
92 |
* The writer to write error messages. |
|
93 |
*/ |
|
94 |
public StringWriter errors; |
|
95 |
||
96 |
/** |
|
97 |
* The writer to write notices. |
|
98 |
*/ |
|
99 |
public StringWriter notices; |
|
100 |
||
101 |
/** |
|
102 |
* The writer to write warnings. |
|
103 |
*/ |
|
104 |
public StringWriter warnings; |
|
105 |
||
106 |
/** |
|
24072 | 107 |
* The buffer of warning output. |
10 | 108 |
*/ |
109 |
public StringBuffer standardOut; |
|
110 |
||
111 |
/** |
|
24072 | 112 |
* The output directory. |
113 |
*/ |
|
114 |
private File outputDir; |
|
115 |
||
116 |
/** |
|
10 | 117 |
* The current subtest number. |
118 |
*/ |
|
119 |
private static int numTestsRun = 0; |
|
120 |
||
121 |
/** |
|
122 |
* The number of subtests passed. |
|
123 |
*/ |
|
124 |
private static int numTestsPassed = 0; |
|
125 |
||
126 |
/** |
|
127 |
* The current run of javadoc |
|
128 |
*/ |
|
129 |
private static int javadocRunNum = 0; |
|
130 |
||
131 |
/** |
|
132 |
* Construct a JavadocTester. |
|
133 |
*/ |
|
134 |
public JavadocTester() { |
|
135 |
} |
|
136 |
||
137 |
/** |
|
138 |
* Execute the tests. |
|
139 |
* |
|
140 |
* @param args the arguments to pass to Javadoc |
|
141 |
* @param testArray the array of tests |
|
142 |
* @param negatedTestArray the array of negated tests |
|
143 |
* @return the return code for the execution of Javadoc |
|
144 |
*/ |
|
24065
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
23971
diff
changeset
|
145 |
public int run(String[] args, |
10 | 146 |
String[][] testArray, String[][] negatedTestArray) { |
24065
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
23971
diff
changeset
|
147 |
int returnCode = runJavadoc(args); |
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
23971
diff
changeset
|
148 |
runTestsOnHTML(testArray, negatedTestArray); |
10 | 149 |
return returnCode; |
150 |
} |
|
151 |
||
152 |
/** |
|
20238
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
153 |
* Execute the tests. |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
154 |
* |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
155 |
* @param args the arguments to pass to Javadoc |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
156 |
* @param testArray the array of tests |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
157 |
* @param negatedTestArray the array of negated tests |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
158 |
* @param fileTestArray the array of file tests |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
159 |
* @param negatedFileTestArray the array of negated file tests |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
160 |
* @return the return code for the execution of Javadoc |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
161 |
*/ |
24065
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
23971
diff
changeset
|
162 |
public int run(String[] args, |
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
23971
diff
changeset
|
163 |
String[][] testArray, String[][] negatedTestArray, |
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
23971
diff
changeset
|
164 |
String[] fileTestArray, String[] negatedFileTestArray) { |
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
23971
diff
changeset
|
165 |
int returnCode = runJavadoc(args); |
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
23971
diff
changeset
|
166 |
runTestsOnHTML(testArray, negatedTestArray); |
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
23971
diff
changeset
|
167 |
runTestsOnFile(fileTestArray, negatedFileTestArray); |
20238
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
168 |
return returnCode; |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
169 |
} |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
170 |
|
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
171 |
/** |
10 | 172 |
* Execute Javadoc using the default doclet. |
173 |
* |
|
174 |
* @param args the arguments to pass to Javadoc |
|
175 |
* @return the return code from the execution of Javadoc |
|
176 |
*/ |
|
177 |
public int runJavadoc(String[] args) { |
|
178 |
float javaVersion = Float.parseFloat(JAVA_VERSION.substring(0,3)); |
|
179 |
String docletClass = javaVersion < 1.5 ? |
|
180 |
DEFAULT_DOCLET_CLASS_OLD : DEFAULT_DOCLET_CLASS; |
|
181 |
return runJavadoc(docletClass, args); |
|
182 |
} |
|
183 |
||
184 |
||
185 |
/** |
|
186 |
* Execute Javadoc. |
|
187 |
* |
|
188 |
* @param docletClass the doclet being tested. |
|
189 |
* @param args the arguments to pass to Javadoc |
|
190 |
* @return the return code from the execution of Javadoc |
|
191 |
*/ |
|
192 |
public int runJavadoc(String docletClass, String[] args) { |
|
193 |
javadocRunNum++; |
|
194 |
if (javadocRunNum == 1) { |
|
195 |
System.out.println("\n" + "Running javadoc..."); |
|
196 |
} else { |
|
197 |
System.out.println("\n" + "Running javadoc (run " |
|
198 |
+ javadocRunNum + ")..."); |
|
199 |
} |
|
200 |
initOutputBuffers(); |
|
24072 | 201 |
outputDir = new File("."); |
202 |
for (int i = 0; i < args.length - 2; i++) { |
|
203 |
if (args[i].equals("-d")) { |
|
204 |
outputDir = new File(args[++i]); |
|
205 |
break; |
|
206 |
} |
|
207 |
} |
|
10 | 208 |
|
209 |
ByteArrayOutputStream stdout = new ByteArrayOutputStream(); |
|
10190
11c701650189
6735320: StringIndexOutOfBoundsException for empty @serialField tag
ksrini
parents:
5520
diff
changeset
|
210 |
PrintStream prevOut = System.out; |
10 | 211 |
System.setOut(new PrintStream(stdout)); |
10190
11c701650189
6735320: StringIndexOutOfBoundsException for empty @serialField tag
ksrini
parents:
5520
diff
changeset
|
212 |
|
11c701650189
6735320: StringIndexOutOfBoundsException for empty @serialField tag
ksrini
parents:
5520
diff
changeset
|
213 |
ByteArrayOutputStream stderr = new ByteArrayOutputStream(); |
11c701650189
6735320: StringIndexOutOfBoundsException for empty @serialField tag
ksrini
parents:
5520
diff
changeset
|
214 |
PrintStream prevErr = System.err; |
11c701650189
6735320: StringIndexOutOfBoundsException for empty @serialField tag
ksrini
parents:
5520
diff
changeset
|
215 |
System.setErr(new PrintStream(stderr)); |
11c701650189
6735320: StringIndexOutOfBoundsException for empty @serialField tag
ksrini
parents:
5520
diff
changeset
|
216 |
|
10 | 217 |
int returnCode = com.sun.tools.javadoc.Main.execute( |
24072 | 218 |
"javadoc", |
10 | 219 |
new PrintWriter(errors, true), |
220 |
new PrintWriter(warnings, true), |
|
221 |
new PrintWriter(notices, true), |
|
222 |
docletClass, |
|
1475 | 223 |
getClass().getClassLoader(), |
10 | 224 |
args); |
10190
11c701650189
6735320: StringIndexOutOfBoundsException for empty @serialField tag
ksrini
parents:
5520
diff
changeset
|
225 |
System.setOut(prevOut); |
10 | 226 |
standardOut = new StringBuffer(stdout.toString()); |
10190
11c701650189
6735320: StringIndexOutOfBoundsException for empty @serialField tag
ksrini
parents:
5520
diff
changeset
|
227 |
System.setErr(prevErr); |
11c701650189
6735320: StringIndexOutOfBoundsException for empty @serialField tag
ksrini
parents:
5520
diff
changeset
|
228 |
errors.write(NL + stderr.toString()); |
11c701650189
6735320: StringIndexOutOfBoundsException for empty @serialField tag
ksrini
parents:
5520
diff
changeset
|
229 |
|
10 | 230 |
printJavadocOutput(); |
231 |
return returnCode; |
|
232 |
} |
|
233 |
||
234 |
/** |
|
235 |
* Create new string writer buffers |
|
236 |
*/ |
|
237 |
private void initOutputBuffers() { |
|
238 |
errors = new StringWriter(); |
|
239 |
notices = new StringWriter(); |
|
240 |
warnings = new StringWriter(); |
|
241 |
} |
|
242 |
||
243 |
/** |
|
244 |
* Run array of tests on the resulting HTML. |
|
245 |
* This method accepts a testArray for testing that a string is found |
|
246 |
* and a negatedTestArray for testing that a string is not found. |
|
247 |
* |
|
248 |
* @param testArray the array of tests |
|
249 |
* @param negatedTestArray the array of negated tests |
|
250 |
*/ |
|
251 |
public void runTestsOnHTML(String[][] testArray, String[][] negatedTestArray) { |
|
252 |
runTestsOnHTML(testArray, false); |
|
253 |
runTestsOnHTML(negatedTestArray, true); |
|
254 |
} |
|
255 |
||
256 |
/** |
|
20238
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
257 |
* Run array of tests on the generated files. |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
258 |
* This method accepts a fileTestArray for testing if a file is generated |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
259 |
* and a negatedFileTestArray for testing if a file is not found. |
24072 | 260 |
* The files are relative to the most recent output directory specified |
261 |
* with -d. |
|
20238
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
262 |
* |
24072 | 263 |
* @param fileTestArray the array of file tests |
264 |
* @param negatedFileTestArray the array of negated file tests |
|
20238
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
265 |
*/ |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
266 |
public void runTestsOnFile(String[] fileTestArray, String[] negatedFileTestArray) { |
24072 | 267 |
runTestsOnFile(outputDir, fileTestArray, false); |
268 |
runTestsOnFile(outputDir, negatedFileTestArray, true); |
|
20238
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
269 |
} |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
270 |
|
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
271 |
/** |
10 | 272 |
* Run the array of tests on the resulting HTML. |
24072 | 273 |
* The files are relative to the most recent output directory specified |
274 |
* with -d. |
|
10 | 275 |
* |
276 |
* @param testArray the array of tests |
|
277 |
* @param isNegated true if test is negated; false otherwise |
|
278 |
*/ |
|
279 |
private void runTestsOnHTML(String[][] testArray , boolean isNegated) { |
|
24072 | 280 |
for (String[] test : testArray) { |
10 | 281 |
numTestsRun++; |
282 |
System.out.print("Running subtest #" + numTestsRun + "... "); |
|
283 |
// Get string to find |
|
24072 | 284 |
String stringToFind = test[1]; |
10 | 285 |
// Read contents of file into a string |
286 |
String fileString; |
|
287 |
try { |
|
24072 | 288 |
fileString = readFileToString(outputDir, test[0]); |
10 | 289 |
} catch (Error e) { |
290 |
if (isNegated) { |
|
24072 | 291 |
System.out.println( "FAILED, due to " + e + "\n"); |
292 |
continue; |
|
10 | 293 |
} |
294 |
throw e; |
|
295 |
} |
|
296 |
// Find string in file's contents |
|
297 |
boolean isFound = findString(fileString, stringToFind); |
|
24072 | 298 |
if ((isNegated && !isFound) || (!isNegated && isFound)) { |
10 | 299 |
numTestsPassed += 1; |
24072 | 300 |
System.out.println("Passed" + "\n" |
301 |
+ (isNegated ? "not found:" : "found:") + "\n" |
|
302 |
+ stringToFind + " in " + test[0] + "\n"); |
|
10 | 303 |
} else { |
24072 | 304 |
System.out.println("FAILED, when searching for:" + "\n" |
305 |
+ stringToFind |
|
306 |
+ " in " + test[0] + "\n"); |
|
10 | 307 |
} |
308 |
} |
|
309 |
} |
|
310 |
||
311 |
/** |
|
20238
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
312 |
* Run the array of file tests on the generated files. |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
313 |
* |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
314 |
* @param testArray the array of file tests |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
315 |
* @param isNegated true if test is negated; false otherwise |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
316 |
*/ |
24072 | 317 |
private void runTestsOnFile(File baseDir, String[] testArray, boolean isNegated) { |
318 |
for (String fileName : testArray) { |
|
20238
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
319 |
numTestsRun++; |
24072 | 320 |
String failedString = "FAILED: file (" + fileName + ") found" + "\n"; |
321 |
String passedString = "Passed" + "\n" + |
|
322 |
"file (" + fileName + ") not found" + "\n"; |
|
20238
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
323 |
System.out.print("Running subtest #" + numTestsRun + "... "); |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
324 |
try { |
24072 | 325 |
File file = new File(baseDir, fileName); |
20238
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
326 |
if ((file.exists() && !isNegated) || (!file.exists() && isNegated)) { |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
327 |
numTestsPassed += 1; |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
328 |
System.out.println(passedString); |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
329 |
} else { |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
330 |
System.out.println(failedString); |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
331 |
} |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
332 |
} catch (Error e) { |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
333 |
System.err.println(e); |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
334 |
} |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
335 |
} |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
336 |
} |
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
337 |
|
a08610368936
8024096: some javadoc tests may contain false positive results
bpatel
parents:
10190
diff
changeset
|
338 |
/** |
10 | 339 |
* Iterate through the list of given file pairs and diff each file. |
340 |
* |
|
24072 | 341 |
* @param baseDir1 the directory containing the first set of files |
342 |
* @param baseDir2 the directory containing the second set of files |
|
343 |
* @param files the set of files to be compared |
|
344 |
* @throws Error if any differences are found between |
|
10 | 345 |
* file pairs. |
346 |
*/ |
|
24072 | 347 |
public void runDiffs(String baseDir1, String baseDir2, String[] files) throws Error { |
348 |
runDiffs(baseDir1, baseDir2, files, true); |
|
10 | 349 |
} |
350 |
||
351 |
/** |
|
352 |
* Iterate through the list of given file pairs and diff each file. |
|
353 |
* |
|
24072 | 354 |
* @param baseDir1 the directory containing the first set of files |
355 |
* @param baseDir2 the directory containing the second set of files |
|
356 |
* @param files the set of files to be compared |
|
357 |
* @param throwErrorIfNoMatch flag to indicate whether or not to throw |
|
10 | 358 |
* an error if the files do not match. |
359 |
* |
|
24072 | 360 |
* @throws Error if any differences are found between |
361 |
* file pairs and throwErrorIfNoMatch is true. |
|
10 | 362 |
*/ |
24072 | 363 |
public void runDiffs(String baseDir1, String baseDir2, String[] files, boolean throwErrorIfNoMatch) throws Error { |
364 |
File bd1 = new File(baseDir1); |
|
365 |
File bd2 = new File(baseDir2); |
|
366 |
for (String file : files) { |
|
367 |
diff(bd1, bd2, file, throwErrorIfNoMatch); |
|
10 | 368 |
} |
369 |
} |
|
370 |
||
371 |
/** |
|
372 |
* Check the exit code of Javadoc and record whether the test passed |
|
373 |
* or failed. |
|
374 |
* |
|
375 |
* @param expectedExitCode The exit code that is required for the test |
|
376 |
* to pass. |
|
377 |
* @param actualExitCode The actual exit code from the previous run of |
|
378 |
* Javadoc. |
|
379 |
*/ |
|
380 |
public void checkExitCode(int expectedExitCode, int actualExitCode) { |
|
381 |
numTestsRun++; |
|
382 |
if (expectedExitCode == actualExitCode) { |
|
383 |
System.out.println( "Passed" + "\n" + " got return code " + |
|
384 |
actualExitCode); |
|
385 |
numTestsPassed++; |
|
386 |
} else { |
|
24072 | 387 |
System.out.println( "FAILED: expected return code " + |
10 | 388 |
expectedExitCode + " but got " + actualExitCode); |
389 |
} |
|
390 |
} |
|
391 |
||
392 |
/** |
|
393 |
* Print a summary of the test results. |
|
394 |
*/ |
|
395 |
protected void printSummary() { |
|
396 |
if ( numTestsRun != 0 && numTestsPassed == numTestsRun ) { |
|
397 |
// Test passed |
|
398 |
System.out.println("\n" + "All " + numTestsPassed |
|
399 |
+ " subtests passed"); |
|
400 |
} else { |
|
401 |
// Test failed |
|
402 |
throw new Error("\n" + (numTestsRun - numTestsPassed) |
|
403 |
+ " of " + (numTestsRun) |
|
24072 | 404 |
+ " subtests failed\n"); |
10 | 405 |
} |
406 |
} |
|
407 |
||
408 |
/** |
|
409 |
* Print the output stored in the buffers. |
|
410 |
*/ |
|
411 |
protected void printJavadocOutput() { |
|
412 |
System.out.println(STANDARD_OUTPUT + " : \n" + getStandardOutput()); |
|
413 |
System.err.println(ERROR_OUTPUT + " : \n" + getErrorOutput()); |
|
414 |
System.err.println(WARNING_OUTPUT + " : \n" + getWarningOutput()); |
|
415 |
System.out.println(NOTICE_OUTPUT + " : \n" + getNoticeOutput()); |
|
416 |
} |
|
417 |
||
418 |
/** |
|
419 |
* Read the file and return it as a string. |
|
420 |
* |
|
421 |
* @param fileName the name of the file to read |
|
422 |
* @return the file in string format |
|
423 |
*/ |
|
424 |
public String readFileToString(String fileName) throws Error { |
|
24072 | 425 |
return readFileToString(outputDir, fileName); |
426 |
} |
|
427 |
||
428 |
/** |
|
429 |
* Read the file and return it as a string. |
|
430 |
* |
|
431 |
* @param baseDir the directory in which to locate the file |
|
432 |
* @param fileName the name of the file to read |
|
433 |
* @return the file in string format |
|
434 |
*/ |
|
435 |
private String readFileToString(File baseDir, String fileName) throws Error { |
|
436 |
switch (fileName) { |
|
437 |
case ERROR_OUTPUT: |
|
438 |
return getErrorOutput(); |
|
439 |
case NOTICE_OUTPUT: |
|
440 |
return getNoticeOutput(); |
|
441 |
case WARNING_OUTPUT: |
|
442 |
return getWarningOutput(); |
|
443 |
case STANDARD_OUTPUT: |
|
444 |
return getStandardOutput(); |
|
10 | 445 |
} |
446 |
try { |
|
24072 | 447 |
File file = new File(baseDir, fileName); |
10 | 448 |
if ( !file.exists() ) { |
449 |
System.out.println("\n" + "FILE DOES NOT EXIST: " + fileName); |
|
450 |
} |
|
24072 | 451 |
char[] allChars; |
452 |
try (BufferedReader in = new BufferedReader(new FileReader(file))) { |
|
453 |
// Create an array of characters the size of the file |
|
454 |
allChars = new char[(int)file.length()]; |
|
455 |
// Read the characters into the allChars array |
|
456 |
in.read(allChars, 0, (int)file.length()); |
|
457 |
} |
|
10 | 458 |
|
459 |
// Convert to a string |
|
460 |
String allCharsString = new String(allChars); |
|
461 |
return allCharsString; |
|
462 |
} catch (FileNotFoundException e) { |
|
463 |
System.err.println(e); |
|
464 |
throw new Error("File not found: " + fileName); |
|
465 |
} catch (IOException e) { |
|
466 |
System.err.println(e); |
|
467 |
throw new Error("Error reading file: " + fileName); |
|
468 |
} |
|
469 |
} |
|
470 |
||
471 |
/** |
|
472 |
* Compare the two given files. |
|
473 |
* |
|
24072 | 474 |
* @param baseDir1 the directory in which to locate the first file |
475 |
* @param baseDir2 the directory in which to locate the second file |
|
476 |
* @param file the file to compare in the two base directories |
|
10 | 477 |
* @param throwErrorIFNoMatch flag to indicate whether or not to throw |
478 |
* an error if the files do not match. |
|
479 |
* @return true if the files are the same and false otherwise. |
|
480 |
*/ |
|
24072 | 481 |
private boolean diff(File baseDir1, File baseDir2, String file, |
482 |
boolean throwErrorIFNoMatch) throws Error { |
|
483 |
String file1Contents = readFileToString(baseDir1, file); |
|
484 |
String file2Contents = readFileToString(baseDir2, file); |
|
10 | 485 |
numTestsRun++; |
486 |
if (file1Contents.trim().compareTo(file2Contents.trim()) == 0) { |
|
24072 | 487 |
System.out.println("Diff successful: " + new File(baseDir1, file) + ", " + new File(baseDir2, file)); |
10 | 488 |
numTestsPassed++; |
489 |
return true; |
|
490 |
} else if (throwErrorIFNoMatch) { |
|
24072 | 491 |
throw new Error("Diff failed: " + new File(baseDir1, file) + ", " + new File(baseDir2, file)); |
10 | 492 |
} else { |
493 |
return false; |
|
494 |
} |
|
495 |
} |
|
496 |
||
497 |
/** |
|
498 |
* Search for the string in the given file and return true |
|
499 |
* if the string was found. |
|
500 |
* |
|
501 |
* @param fileString the contents of the file to search through |
|
502 |
* @param stringToFind the string to search for |
|
503 |
* @return true if the string was found |
|
504 |
*/ |
|
505 |
private boolean findString(String fileString, String stringToFind) { |
|
23971 | 506 |
return fileString.contains(stringToFind.replace("\n", NL)); |
10 | 507 |
} |
508 |
||
3771 | 509 |
|
10 | 510 |
/** |
511 |
* Return the standard output. |
|
512 |
* @return the standard output |
|
513 |
*/ |
|
514 |
public String getStandardOutput() { |
|
515 |
return standardOut.toString(); |
|
516 |
} |
|
517 |
||
518 |
/** |
|
519 |
* Return the error output. |
|
520 |
* @return the error output |
|
521 |
*/ |
|
522 |
public String getErrorOutput() { |
|
523 |
return errors.getBuffer().toString(); |
|
524 |
} |
|
525 |
||
526 |
/** |
|
527 |
* Return the notice output. |
|
528 |
* @return the notice output |
|
529 |
*/ |
|
530 |
public String getNoticeOutput() { |
|
531 |
return notices.getBuffer().toString(); |
|
532 |
} |
|
533 |
||
534 |
/** |
|
535 |
* Return the warning output. |
|
536 |
* @return the warning output |
|
537 |
*/ |
|
538 |
public String getWarningOutput() { |
|
539 |
return warnings.getBuffer().toString(); |
|
540 |
} |
|
541 |
||
542 |
/** |
|
543 |
* A utility to copy a directory from one place to another. |
|
544 |
* We may possibly want to move this to our doclet toolkit in |
|
545 |
* the near future and maintain it from there. |
|
546 |
* |
|
547 |
* @param targetDir the directory to copy. |
|
548 |
* @param destDir the destination to copy the directory to. |
|
549 |
*/ |
|
550 |
public static void copyDir(String targetDir, String destDir) { |
|
551 |
if (targetDir.endsWith("SCCS")) { |
|
552 |
return; |
|
553 |
} |
|
554 |
try { |
|
555 |
File targetDirObj = new File(targetDir); |
|
556 |
File destDirParentObj = new File(destDir); |
|
557 |
File destDirObj = new File(destDirParentObj, targetDirObj.getName()); |
|
558 |
if (! destDirParentObj.exists()) { |
|
559 |
destDirParentObj.mkdir(); |
|
560 |
} |
|
561 |
if (! destDirObj.exists()) { |
|
562 |
destDirObj.mkdir(); |
|
563 |
} |
|
564 |
String[] files = targetDirObj.list(); |
|
24072 | 565 |
for (String file : files) { |
566 |
File srcFile = new File(targetDirObj, file); |
|
567 |
File destFile = new File(destDirObj, file); |
|
10 | 568 |
if (srcFile.isFile()) { |
569 |
System.out.println("Copying " + srcFile + " to " + destFile); |
|
24072 | 570 |
copyFile(destFile, srcFile); |
10 | 571 |
} else if(srcFile.isDirectory()) { |
572 |
copyDir(srcFile.getAbsolutePath(), destDirObj.getAbsolutePath()); |
|
573 |
} |
|
574 |
} |
|
575 |
} catch (IOException exc) { |
|
576 |
throw new Error("Could not copy " + targetDir + " to " + destDir); |
|
577 |
} |
|
578 |
} |
|
579 |
||
580 |
/** |
|
581 |
* Copy source file to destination file. |
|
582 |
* |
|
24072 | 583 |
* @param destfile the destination file |
584 |
* @param srcfile the source file |
|
10 | 585 |
* @throws SecurityException |
586 |
* @throws IOException |
|
587 |
*/ |
|
588 |
public static void copyFile(File destfile, File srcfile) |
|
589 |
throws IOException { |
|
590 |
byte[] bytearr = new byte[512]; |
|
24072 | 591 |
int len; |
10 | 592 |
FileInputStream input = new FileInputStream(srcfile); |
593 |
File destDir = destfile.getParentFile(); |
|
594 |
destDir.mkdirs(); |
|
595 |
FileOutputStream output = new FileOutputStream(destfile); |
|
596 |
try { |
|
597 |
while ((len = input.read(bytearr)) != -1) { |
|
598 |
output.write(bytearr, 0, len); |
|
599 |
} |
|
24072 | 600 |
} catch (FileNotFoundException | SecurityException exc) { |
10 | 601 |
} finally { |
602 |
input.close(); |
|
603 |
output.close(); |
|
604 |
} |
|
605 |
} |
|
606 |
} |