langtools/test/com/sun/javadoc/DocRootSlash/DocRootSlash.java
author jjg
Wed, 16 Apr 2014 16:17:09 -0700
changeset 23971 f5ff1f5a8dee
parent 15357 61fec7e4133f
child 24399 af1a0220d0fa
permissions -rw-r--r--
8031649: Clean up javadoc tests Reviewed-by: jjg Contributed-by: neil.toda@oracle.com
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: 15357
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: 10
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
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
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
 * @test
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
 * @bug 4524350 4662945 4633447
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
 * @summary stddoclet: {@docRoot} inserts an extra trailing "/"
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
 * @author dkramer
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
 * @run main DocRootSlash
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import com.sun.javadoc.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import java.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import java.io.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import java.nio.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import java.util.regex.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 * Runs javadoc and runs regression tests on the resulting HTML.
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 * It reads each file, complete with newlines, into a string to easily
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 * find strings that contain newlines.
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
public class DocRootSlash
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
{
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
    private static final String BUGID = "4524350, 4662945, or 4633447";
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
    private static final String BUGNAME = "DocRootSlash";
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 15357
diff changeset
    47
    private static final String TMPDIR_STRING1 = "./docs1/";
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
    // Test number.  Needed because runResultsOnHTMLFile is run twice, and subtestNum
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
    // should increment across test runs.
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
    public static int subtestNum = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
    public static int numOfSubtestsPassed = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
    // Entry point
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    public static void main(String[] args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
        // Directory that contains source files that javadoc runs on
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
        String srcdir = System.getProperty("test.src", ".");
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
        runJavadoc(new String[] {"-d", TMPDIR_STRING1,
15357
61fec7e4133f 8006241: Test DocRootSlash.java fails
jjg
parents: 5520
diff changeset
    61
                                 "-Xdoclint:none",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 15357
diff changeset
    62
                                 "-overview", (srcdir + "/overview.html"),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
                                 "-header", "<A HREF=\"{@docroot}/package-list\">{&#064;docroot}</A> <A HREF=\"{@docRoot}/help-doc\">{&#064;docRoot}</A>",
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
                                 "-sourcepath", srcdir,
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
                                 "p1", "p2"});
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
        runTestsOnHTMLFiles(filenameArray);
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
        printSummary();
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
    /** Run javadoc */
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    public static void runJavadoc(String[] javadocArgs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
        if (com.sun.tools.javadoc.Main.execute(javadocArgs) != 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
            throw new Error("Javadoc failed to execute");
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    /**  The array of filenames to test */
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
    private static final String[] filenameArray = {
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 15357
diff changeset
    80
        TMPDIR_STRING1 + "p1/C1.html" ,
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 15357
diff changeset
    81
        TMPDIR_STRING1 + "p1/package-summary.html",
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
        TMPDIR_STRING1 + "overview-summary.html"
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
    };
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
    public static void runTestsOnHTMLFiles(String[] filenameArray) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
        String fileString;
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
        // Bugs 4524350 4662945
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
        for (int i = 0; i < filenameArray.length; i++ ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
            // Read contents of file (whose filename is in filenames) into a string
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
            fileString = readFileToString(filenameArray[i]);
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
            System.out.println("\nSub-tests for file: " + filenameArray[i]
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
                                + " --------------");
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
            // Loop over all tests in a single file
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
            for ( int j = 0; j < 11; j++ ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
                subtestNum += 1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
                // Compare actual to expected string for a single subtest
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
                compareActualToExpected(fileString);
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
        // Bug 4633447: Special test for overview-frame.html
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
        // Find two strings in file "overview-frame.html"
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
        String filename = TMPDIR_STRING1 + "overview-frame.html";
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
        fileString = readFileToString(filename);
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
        // Find first string <A HREF="./package-list"> in overview-frame.html
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
        subtestNum += 1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
        String stringToFind = "<A HREF=\"./package-list\">";
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
        String result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
        if ( fileString.indexOf(stringToFind) == -1 ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
            result = "FAILED";
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
            result = "succeeded";
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
            numOfSubtestsPassed += 1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
        System.out.println("\nSub-test " + (subtestNum)
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
            + " for bug " + BUGID + " (" + BUGNAME + ") " + result + "\n"
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
            + "when searching for:\n"
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
            + stringToFind + "\n"
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
            + "in file " + filename);
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
        // Find second string <A HREF="./help-doc"> in overview-frame.html
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
        subtestNum += 1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
        stringToFind = "<A HREF=\"./help-doc\">";
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
        if ( fileString.indexOf(stringToFind) == -1 ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
            result = "FAILED";
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
            result = "succeeded";
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
            numOfSubtestsPassed += 1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
        System.out.println("\nSub-test " + (subtestNum)
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
            + " for bug " + BUGID + " (" + BUGNAME + ") " + result + "\n"
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
            + "when searching for:\n"
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
            + stringToFind + "\n"
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
            + "in file " + filename);
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
    public static void printSummary() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
        System.out.println("");
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
        if ( numOfSubtestsPassed == subtestNum ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
            System.out.println("\nAll " + numOfSubtestsPassed + " subtests passed");
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
            throw new Error("\n" + (subtestNum - numOfSubtestsPassed) + " of " + (subtestNum)
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
                            + " subtests failed for bug " + BUGID + " (" + BUGNAME + ")\n");
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
    // Read the contents of the file into a String
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
    public static String readFileToString(String filename) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
            File file = new File(filename);
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
            if ( !file.exists() ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
                System.out.println("\nFILE DOES NOT EXIST: " + filename);
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
            BufferedReader in = new BufferedReader(new FileReader(file));
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
            // Create an array of characters the size of the file
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
            char[] allChars = new char[(int)file.length()];
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
            // Read the characters into the allChars array
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
            in.read(allChars, 0, (int)file.length());
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
            in.close();
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
            // Convert to a string
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
            String allCharsString = new String(allChars);
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
            return allCharsString;
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
        } catch (FileNotFoundException e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
            System.err.println(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
            return "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
        } catch (IOException e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
            System.err.println(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
            return "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
     * Regular expression pattern matching code adapted from Eric's
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
     * /java/pubs/dev/linkfix/src/LinkFix.java
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
     * Prefix Pattern:
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
     * flag   (?i)            (case insensitive, so "a href" == "A HREF" and all combinations)
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
     * group1 (
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
     *          <a or <A
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
     *          \\s+          (one or more whitespace characters)
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
     *          href or HREF
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
     *          \"            (double quote)
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
     *        )
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
     * group2 ([^\"]*)        (link reference -- characters that don't include a quote)
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
     * group3 (\".*?>)        (" target="frameName">)
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
     * group4 (.*?)           (label - zero or more characters)
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
     * group5 (</a>)          (end tag)
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
    static String prefix = "(?i)(<a\\s+href=";    // <a href=     (start group1)
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
    static String ref1   = "\")([^\"]*)(\".*?>)"; // doublequotes (end group1, group2, group3)
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
    static String ref2   = ")(\\S+?)([^<>]*>)";   // no quotes    (end group1, group2, group3)
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
    static String label  = "(.*?)";               // text label   (group4)
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
    static String end    = "(</a>)";              // </a>         (group5)
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
     * Compares the actual string to the expected string in the specified string
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
     * str   String to search through
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
    static void compareActualToExpected(String str) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
        // Pattern must be compiled each run because subtestNum is incremented
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
        Pattern actualLinkPattern1 =
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
            Pattern.compile("Sub-test " + subtestNum + " Actual: " + prefix + ref1, Pattern.DOTALL);
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
        Pattern expectLinkPattern1 =
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
            Pattern.compile("Sub-test " + subtestNum + " Expect: " + prefix + ref1, Pattern.DOTALL);
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
        // Pattern linkPattern2 = Pattern.compile(prefix + ref2 + label + end, Pattern.DOTALL);
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
        CharBuffer charBuffer = CharBuffer.wrap(str);
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
        Matcher actualLinkMatcher1 = actualLinkPattern1.matcher(charBuffer);
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
        Matcher expectLinkMatcher1 = expectLinkPattern1.matcher(charBuffer);
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
        String result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
        if ( expectLinkMatcher1.find() && actualLinkMatcher1.find() ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
            String expectRef = expectLinkMatcher1.group(2);
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
            String actualRef = actualLinkMatcher1.group(2);
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
            if ( actualRef.equals(expectRef) ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
                result = "succeeded";
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
                numOfSubtestsPassed += 1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
                // System.out.println("pattern:   " + actualLinkPattern1.pattern());
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
                // System.out.println("actualRef: " + actualRef);
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
                // System.out.println("group0:    " + actualLinkMatcher1.group());
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
                // System.out.println("group1:    " + actualLinkMatcher1.group(1));
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
                // System.out.println("group2:    " + actualLinkMatcher1.group(2));
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
                // System.out.println("group3:    " + actualLinkMatcher1.group(3));
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
                // System.exit(0);
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
                result = "FAILED";
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
            System.out.println("\nSub-test " + (subtestNum)
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
                + " for bug " + BUGID + " (" + BUGNAME + ") " + result + "\n"
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
                + "Actual: \"" + actualRef + "\"" + "\n"
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
                + "Expect: \"" + expectRef + "\"");
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
            System.out.println("Didn't find <A HREF> that fits the pattern: "
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
                  + expectLinkPattern1.pattern() );
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
}