test/com/sun/javadoc/AccessSkipNav/AccessSkipNav.java

changeset 0
959103a6100f
child 2525
2eb010b6cb22
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/test/com/sun/javadoc/AccessSkipNav/AccessSkipNav.java	Wed Apr 27 01:34:52 2016 +0800
     1.3 @@ -0,0 +1,174 @@
     1.4 +/*
     1.5 + * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.
    1.11 + *
    1.12 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.13 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.14 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.15 + * version 2 for more details (a copy is included in the LICENSE file that
    1.16 + * accompanied this code).
    1.17 + *
    1.18 + * You should have received a copy of the GNU General Public License version
    1.19 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.20 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.21 + *
    1.22 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.23 + * or visit www.oracle.com if you need additional information or have any
    1.24 + * questions.
    1.25 + */
    1.26 +
    1.27 +/*
    1.28 + * @test
    1.29 + * @bug 4638136 7198273 8025633
    1.30 + * @summary  Add ability to skip over nav bar for accessibility
    1.31 + * @author dkramer
    1.32 + * @run main AccessSkipNav
    1.33 + */
    1.34 +
    1.35 +
    1.36 +import com.sun.javadoc.*;
    1.37 +import java.util.*;
    1.38 +import java.io.*;
    1.39 +
    1.40 +
    1.41 +/**
    1.42 + * Runs javadoc and runs regression tests on the resulting HTML.
    1.43 + * It reads each file, complete with newlines, into a string to easily
    1.44 + * find strings that contain newlines.
    1.45 + */
    1.46 +public class AccessSkipNav {
    1.47 +
    1.48 +    private static final String BUGID = "4638136 - 7198273";
    1.49 +    private static final String BUGNAME = "AccessSkipNav";
    1.50 +    private static final String FS = System.getProperty("file.separator");
    1.51 +    private static final String PS = System.getProperty("path.separator");
    1.52 +    private static final String LS = System.getProperty("line.separator");
    1.53 +    private static final String TMPDEST_DIR1 = "." + FS + "docs1" + FS;
    1.54 +    private static final String TMPDEST_DIR2 = "." + FS + "docs2" + FS;
    1.55 +
    1.56 +    // Subtest number.  Needed because runResultsOnHTML is run twice,
    1.57 +    // and subtestNum should increment across subtest runs.
    1.58 +    public static int subtestNum = 0;
    1.59 +    public static int numSubtestsPassed = 0;
    1.60 +
    1.61 +    // Entry point
    1.62 +    public static void main(String[] args) {
    1.63 +
    1.64 +        // Directory that contains source files that javadoc runs on
    1.65 +        String srcdir = System.getProperty("test.src", ".");
    1.66 +
    1.67 +        // Test for all cases except the split index page
    1.68 +        runJavadoc(new String[] {"-d", TMPDEST_DIR1,
    1.69 +                                 "-sourcepath", srcdir,
    1.70 +                                 "p1", "p2"});
    1.71 +        runTestsOnHTML(testArray);
    1.72 +
    1.73 +        printSummary();
    1.74 +    }
    1.75 +
    1.76 +    /** Run javadoc */
    1.77 +    public static void runJavadoc(String[] javadocArgs) {
    1.78 +        if (com.sun.tools.javadoc.Main.execute(javadocArgs) != 0) {
    1.79 +            throw new Error("Javadoc failed to execute");
    1.80 +        }
    1.81 +    }
    1.82 +
    1.83 +    /**
    1.84 +     * Assign value for [ stringToFind, filename ]
    1.85 +     * NOTE: The standard doclet uses the same separator "\n" for all OS's
    1.86 +     */
    1.87 +    private static final String[][] testArray = {
    1.88 +
    1.89 +            // Testing only for the presence of the <a href> and <a name>
    1.90 +
    1.91 +            // Top navbar <a href>
    1.92 +            { "<a href=\"#skip.navbar.top\" title=\"Skip navigation links\">Skip navigation links</a>",
    1.93 +                     TMPDEST_DIR1 + "p1" + FS + "C1.html" },
    1.94 +
    1.95 +            // Top navbar <a name>
    1.96 +            { "<a name=\"skip.navbar.top\">" + LS +
    1.97 +                      "<!--   -->" + LS + "</a>",
    1.98 +                     TMPDEST_DIR1 + "p1" + FS + "C1.html" },
    1.99 +
   1.100 +            // Bottom navbar <a href>
   1.101 +            { "<a href=\"#skip.navbar.bottom\" title=\"Skip navigation links\">Skip navigation links</a>",
   1.102 +                     TMPDEST_DIR1 + "p1" + FS + "C1.html" },
   1.103 +
   1.104 +            // Bottom navbar <a name>
   1.105 +            { "<a name=\"skip.navbar.bottom\">" + LS +
   1.106 +                      "<!--   -->" + LS + "</a>",
   1.107 +                     TMPDEST_DIR1 + "p1" + FS + "C1.html" }
   1.108 +        };
   1.109 +
   1.110 +    public static void runTestsOnHTML(String[][] testArray) {
   1.111 +
   1.112 +        for (int i = 0; i < testArray.length; i++) {
   1.113 +
   1.114 +            subtestNum += 1;
   1.115 +
   1.116 +            // Read contents of file into a string
   1.117 +            String fileString = readFileToString(testArray[i][1]);
   1.118 +
   1.119 +            // Get string to find
   1.120 +            String stringToFind = testArray[i][0];
   1.121 +
   1.122 +            // Find string in file's contents
   1.123 +            if (findString(fileString, stringToFind) == -1) {
   1.124 +                System.out.println("\nSub-test " + (subtestNum)
   1.125 +                    + " for bug " + BUGID + " (" + BUGNAME + ") FAILED\n"
   1.126 +                    + "when searching for:\n"
   1.127 +                    + stringToFind);
   1.128 +            } else {
   1.129 +                numSubtestsPassed += 1;
   1.130 +                System.out.println("\nSub-test " + (subtestNum) + " passed:\n" + stringToFind);
   1.131 +            }
   1.132 +        }
   1.133 +    }
   1.134 +
   1.135 +    public static void printSummary() {
   1.136 +        if ( numSubtestsPassed == subtestNum ) {
   1.137 +            System.out.println("\nAll " + numSubtestsPassed + " subtests passed");
   1.138 +        } else {
   1.139 +            throw new Error("\n" + (subtestNum - numSubtestsPassed) + " of " + (subtestNum)
   1.140 +                             + " subtests failed for bug " + BUGID + " (" + BUGNAME + ")\n");
   1.141 +        }
   1.142 +    }
   1.143 +
   1.144 +    // Read the file into a String
   1.145 +    public static String readFileToString(String filename) {
   1.146 +        try {
   1.147 +            File file = new File(filename);
   1.148 +            if ( !file.exists() ) {
   1.149 +                System.out.println("\nFILE DOES NOT EXIST: " + filename);
   1.150 +            }
   1.151 +            BufferedReader in = new BufferedReader(new FileReader(file));
   1.152 +
   1.153 +            // Create an array of characters the size of the file
   1.154 +            char[] allChars = new char[(int)file.length()];
   1.155 +
   1.156 +            // Read the characters into the allChars array
   1.157 +            in.read(allChars, 0, (int)file.length());
   1.158 +            in.close();
   1.159 +
   1.160 +            // Convert to a string
   1.161 +            String allCharsString = new String(allChars);
   1.162 +
   1.163 +            return allCharsString;
   1.164 +
   1.165 +        } catch (FileNotFoundException e) {
   1.166 +            System.err.println(e);
   1.167 +            return "";
   1.168 +        } catch (IOException e) {
   1.169 +            System.err.println(e);
   1.170 +            return "";
   1.171 +        }
   1.172 +    }
   1.173 +
   1.174 +    public static int findString(String fileString, String stringToFind) {
   1.175 +        return fileString.indexOf(stringToFind);
   1.176 +    }
   1.177 +}

mercurial