1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
/*
* Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8016675 8026736
* @summary Test for window title.
* @author Bhavesh Patel
* @library ../lib
* @modules jdk.javadoc/jdk.javadoc.internal.tool
* @build JavadocTester
* @run main TestWindowTitle
*/
public class TestWindowTitle extends JavadocTester {
public static void main(String... args) throws Exception {
TestWindowTitle tester = new TestWindowTitle();
tester.runTests();
tester.printSummary();
}
@Test
void testJavaScriptChars() {
// Window title with JavaScript special characters.
String title = "Testing \"Window 'Title'\" with a \\ backslash and a / "
+ "forward slash and a \u00e8 unicode char also a tab and also a "
+ "\t special character another \u0002 unicode)";
javadoc("-d", "out-js-chars",
"-windowtitle", title,
"-sourcepath", testSrc,
"p1", "p2");
checkExit(Exit.OK);
checkOutput("overview-summary.html", true,
"parent.document.title=\"Overview (Testing \\\"Window \\\'Title\\\'\\\" "
+ "with a \\\\ backslash and a / forward slash and a \\u00E8 unicode char "
+ "also a tab and also a \\t special character another \\u0002 unicode))\";"
);
checkOutput("overview-summary.html", false,
"parent.document.title=\"Overview (Testing \"Window \'Title\'\" "
+ "with a \\ backslash and a / forward slash and a \u00E8 unicode char "
+ "also a tab and also a \t special character another \u0002 unicode))\";"
);
}
@Test
void testScriptTag() {
// Window title with a script tag.
String title = "Testing script tag in title </title><script>alert(\"Should not pop up\")</script>.";
javadoc("-d", "out-script",
"-windowtitle", title,
"-sourcepath", testSrc,
"p1", "p2");
checkExit(Exit.OK);
checkOutput("overview-summary.html", true,
"parent.document.title=\"Overview (Testing script tag in title alert"
+ "(\\\"Should not pop up\\\").)\";"
);
checkOutput("p2/C2.html", true,
"parent.document.title=\"C2 (Testing script tag in title alert"
+ "(\\\"Should not pop up\\\").)\";"
);
checkOutput("overview-summary.html", false,
"parent.document.title=\"Overview (Testing script tag in title </title><script>"
+ "alert(\\\"Should not pop up\\\")</script>.)\";"
);
checkOutput("p2/C2.html", false,
"parent.document.title=\"C2 (Testing script tag in title </title><script>"
+ "alert(\\\"Should not pop up\\\")</script>.)\";"
);
}
@Test
void testHtmlTags() {
// Window title with other HTML tags.
String title = "Testing another <p>HTML</p> tag. Another <h1>tag</h1>. A "
+ "<span id=\"testTag\">tag with attributes</span>. <script and </p are not tags.";
javadoc("-d", "out-html-tags",
"-windowtitle", title,
"-sourcepath", testSrc,
"p1", "p2");
checkExit(Exit.OK);
checkOutput("overview-summary.html", true,
"parent.document.title=\"Overview (Testing another HTML tag. Another tag. A "
+ "tag with attributes. <script and </p are not tags.)\";"
);
checkOutput("overview-summary.html", false,
"parent.document.title=\"Overview (Testing another <p>HTML</p> tag. Another "
+ "<h1>tag</h1>. A <span id=\"testTag\">tag with attributes</span>. <script and "
+ "</p are not tags.)\";"
);
}
@Test
void testHtmlEntities() {
// Window title using entities.
String title = "Testing entities <script>alert(\"Should not pop up\")</script>.";
javadoc("-d", "out-html-entities",
"-windowtitle", title,
"-sourcepath", testSrc,
"p1", "p2");
checkOutput("overview-summary.html", true,
"parent.document.title=\"Overview (Testing entities <script>alert(\\\"Should "
+ "not pop up\\\")</script>.)\";"
);
checkOutput("overview-summary.html", false,
"parent.document.title=\"Overview (Testing entities alert(\\\"Should not pop up\\\").)\";"
);
}
@Test
void testEmptyTags() {
// Window title with just empty HTML tags.
String title = "</title><script></script>";
javadoc("-d", "out-empty-tags",
"-windowtitle", title,
"-sourcepath", testSrc,
"p1", "p2");
checkOutput("overview-summary.html", true,
"parent.document.title=\"Overview\";"
);
checkOutput("overview-summary.html", false,
"parent.document.title=\"Overview (</title><script></script>)\";"
);
}
@Test
void testUnicode() {
//Window title with unicode characters.
String title = "Testing unicode \u003cscript\u003ealert(\"Should not pop up\")\u003c/script\u003e.";
javadoc("-d", "out-unicode",
"-windowtitle", title,
"-sourcepath", testSrc,
"p1", "p2");
checkExit(Exit.OK);
checkOutput("overview-summary.html", true,
"parent.document.title=\"Overview (Testing unicode alert(\\\"Should "
+ "not pop up\\\").)\";"
);
checkOutput("overview-summary.html", false,
"parent.document.title=\"Overview (Testing unicode <script>alert(\\\"Should not pop up\\\")"
+ "</script>.)\";"
);
}
@Test
void testEmpty() {
// An empty window title.
String title = "";
javadoc("-d", "out-empty",
"-windowtitle", title,
"-sourcepath", testSrc, "p1", "p2");
checkExit(Exit.OK);
checkOutput("overview-summary.html", true,
"parent.document.title=\"Overview\";"
);
}
@Test
void testDocTitle() {
// Window title with JavaScript special characters, specified with -doctitle
String title = "Testing \"Window 'Title'\" with a \\ backslash and a / "
+ "forward slash and a \u00e8 unicode char also a tab and also a "
+ "\t special character another \u0002 unicode)";
javadoc("-d", "out-doctitle",
"-doctitle", title,
"-sourcepath", testSrc,
"p1", "p2");
checkExit(Exit.OK);
checkOutput("overview-summary.html", false,
"parent.document.title=\"Overview (Testing \\\"Window \\\'Title\\\'\\\" "
+ "with a \\\\ backslash and a / forward slash and a \\u00E8 unicode char "
+ "also a tab and also a \\t special character another \\u0002 unicode)\";"
);
}
}
|