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