/* * 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 ."; 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 .)\";" ); checkOutput("p2/C2.html", false, "parent.document.title=\"C2 (Testing script tag in title .)\";" ); } @Test void testHtmlTags() { // Window title with other HTML tags. String title = "Testing another
HTML
tag. Another