test/com/sun/javadoc/JavascriptWinTitle/JavascriptWinTitle.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/JavascriptWinTitle/JavascriptWinTitle.java	Wed Apr 27 01:34:52 2016 +0800
     1.3 @@ -0,0 +1,197 @@
     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 4645058 4747738 4855054 8024756
    1.30 + * @summary  Javascript IE load error when linked by -linkoffline
    1.31 + *           Window title shouldn't change when loading left frames (javascript)
    1.32 + * @author dkramer
    1.33 + * @run main JavascriptWinTitle
    1.34 + */
    1.35 +
    1.36 +
    1.37 +import com.sun.javadoc.*;
    1.38 +import java.util.*;
    1.39 +import java.io.*;
    1.40 +
    1.41 +
    1.42 +/**
    1.43 + * Runs javadoc and runs regression tests on the resulting HTML.
    1.44 + * It reads each file, complete with newlines, into a string to easily
    1.45 + * find strings that contain newlines.
    1.46 + */
    1.47 +public class JavascriptWinTitle {
    1.48 +
    1.49 +    private static final String BUGID = "4645058";
    1.50 +    private static final String BUGNAME = "JavascriptWinTitle";
    1.51 +    private static final String FS = System.getProperty("file.separator");
    1.52 +    private static final String PS = System.getProperty("path.separator");
    1.53 +    private static final String LS = System.getProperty("line.separator");
    1.54 +    private static final String TMPDEST_DIR1 = "." + FS + "docs1" + FS;
    1.55 +    private static final String TMPDEST_DIR2 = "." + FS + "docs2" + FS;
    1.56 +
    1.57 +    // Subtest number.  Needed because runResultsOnHTML is run twice,
    1.58 +    // and subtestNum should increment across subtest runs.
    1.59 +    public static int subtestNum = 0;
    1.60 +    public static int numSubtestsPassed = 0;
    1.61 +
    1.62 +    // Entry point
    1.63 +    public static void main(String[] args) {
    1.64 +
    1.65 +        // Directory that contains source files that javadoc runs on
    1.66 +        String srcdir = System.getProperty("test.src", ".");
    1.67 +
    1.68 +        // Test for all cases except the split index page
    1.69 +        runJavadoc(new String[] {"-d", TMPDEST_DIR1,
    1.70 +                                 "-doctitle", "Document Title",
    1.71 +                                 "-windowtitle", "Window Title",
    1.72 +                                 "-overview", (srcdir + FS + "overview.html"),
    1.73 +                                 "-linkoffline",
    1.74 +                                    "http://java.sun.com/j2se/1.4/docs/api", srcdir,
    1.75 +                                 "-sourcepath", srcdir,
    1.76 +                                 "p1", "p2"});
    1.77 +        runTestsOnHTML(testArray);
    1.78 +
    1.79 +        printSummary();
    1.80 +    }
    1.81 +
    1.82 +    /** Run javadoc */
    1.83 +    public static void runJavadoc(String[] javadocArgs) {
    1.84 +        if (com.sun.tools.javadoc.Main.execute(javadocArgs) != 0) {
    1.85 +            throw new Error("Javadoc failed to execute");
    1.86 +        }
    1.87 +    }
    1.88 +
    1.89 +    /**
    1.90 +     * Assign value for [ stringToFind, filename ]
    1.91 +     * NOTE: The standard doclet uses the same separator "\n" for all OS's
    1.92 +     */
    1.93 +    private static final String[][] testArray = {
    1.94 +
    1.95 +            // Test the javascript "type" attribute is present:
    1.96 +            {  "<script type=\"text/javascript\">",
    1.97 +                     TMPDEST_DIR1 + "overview-summary.html"  },
    1.98 +
    1.99 +            // Test onload is absent:
   1.100 +            {  "<body>",
   1.101 +                     TMPDEST_DIR1 + "overview-summary.html"  },
   1.102 +
   1.103 +            // Test onload is present:
   1.104 +            {  "<body>",
   1.105 +                     TMPDEST_DIR1 + FS + "p1" + FS + "package-summary.html"  },
   1.106 +
   1.107 +            // Test that "onload" is not present in BODY tag:
   1.108 +            {   "<body>",
   1.109 +                     TMPDEST_DIR1 + "overview-frame.html"  },
   1.110 +
   1.111 +            // Test that "onload" is not present in BODY tag:
   1.112 +            {   "<body>",
   1.113 +                     TMPDEST_DIR1 + "allclasses-frame.html"  },
   1.114 +
   1.115 +            // Test that "onload" is not present in BODY tag:
   1.116 +            {   "<body>",
   1.117 +                     TMPDEST_DIR1 + FS + "p1" + FS + "package-frame.html"  },
   1.118 +
   1.119 +            // Test that win title javascript is followed by NOSCRIPT code.
   1.120 +            {"<script type=\"text/javascript\"><!--" + LS +
   1.121 +            "    try {" + LS +
   1.122 +            "        if (location.href.indexOf('is-external=true') == -1) {" + LS +
   1.123 +            "            parent.document.title=\"C (Window Title)\";" + LS +
   1.124 +            "        }" + LS +
   1.125 +            "    }" + LS +
   1.126 +            "    catch(err) {" + LS +
   1.127 +            "    }" + LS + "//-->" + LS + "</script>",
   1.128 +             TMPDEST_DIR1 + FS + "p1" + FS + "C.html"
   1.129 +            }
   1.130 +
   1.131 +        };
   1.132 +
   1.133 +    public static void runTestsOnHTML(String[][] testArray) {
   1.134 +
   1.135 +        for (int i = 0; i < testArray.length; i++) {
   1.136 +
   1.137 +            subtestNum += 1;
   1.138 +
   1.139 +            // Read contents of file into a string
   1.140 +            String fileString = readFileToString(testArray[i][1]);
   1.141 +
   1.142 +            // Get string to find
   1.143 +            String stringToFind = testArray[i][0];
   1.144 +
   1.145 +            // Find string in file's contents
   1.146 +            if (findString(fileString, stringToFind) == -1) {
   1.147 +                System.out.println("\nSub-test " + (subtestNum)
   1.148 +                    + " for bug " + BUGID + " (" + BUGNAME + ") FAILED\n"
   1.149 +                    + "when searching for:\n"
   1.150 +                    + stringToFind);
   1.151 +            } else {
   1.152 +                numSubtestsPassed += 1;
   1.153 +                System.out.println("\nSub-test " + (subtestNum) + " passed:\n" + stringToFind);
   1.154 +            }
   1.155 +        }
   1.156 +    }
   1.157 +
   1.158 +    public static void printSummary() {
   1.159 +        if ( numSubtestsPassed == subtestNum ) {
   1.160 +            System.out.println("\nAll " + numSubtestsPassed + " subtests passed");
   1.161 +        } else {
   1.162 +            throw new Error("\n" + (subtestNum - numSubtestsPassed) + " of " + (subtestNum)
   1.163 +                             + " subtests failed for bug " + BUGID + " (" + BUGNAME + ")\n");
   1.164 +        }
   1.165 +    }
   1.166 +
   1.167 +    // Read the file into a String
   1.168 +    public static String readFileToString(String filename) {
   1.169 +        try {
   1.170 +            File file = new File(filename);
   1.171 +            if ( !file.exists() ) {
   1.172 +                System.out.println("\nFILE DOES NOT EXIST: " + filename);
   1.173 +            }
   1.174 +            BufferedReader in = new BufferedReader(new FileReader(file));
   1.175 +
   1.176 +            // Create an array of characters the size of the file
   1.177 +            char[] allChars = new char[(int)file.length()];
   1.178 +
   1.179 +            // Read the characters into the allChars array
   1.180 +            in.read(allChars, 0, (int)file.length());
   1.181 +            in.close();
   1.182 +
   1.183 +            // Convert to a string
   1.184 +            String allCharsString = new String(allChars);
   1.185 +
   1.186 +            return allCharsString;
   1.187 +
   1.188 +        } catch (FileNotFoundException e) {
   1.189 +            System.err.println(e);
   1.190 +            return "";
   1.191 +        } catch (IOException e) {
   1.192 +            System.err.println(e);
   1.193 +            return "";
   1.194 +        }
   1.195 +    }
   1.196 +
   1.197 +    public static int findString(String fileString, String stringToFind) {
   1.198 +        return fileString.indexOf(stringToFind);
   1.199 +    }
   1.200 +}

mercurial