1 /*
   2  * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug      4663254 8016328 8025633 8026567 8081854 8182765 8205593
  27  * @summary  Verify that spaces do not appear in hrefs and anchors.
  28  * @library  ../../lib
  29  * @modules jdk.javadoc/jdk.javadoc.internal.tool
  30  * @build    javadoc.tester.*
  31  * @run main TestHref
  32  */
  33 
  34 import javadoc.tester.JavadocTester;
  35 
  36 public class TestHref extends JavadocTester {
  37 
  38     public static void main(String... args) throws Exception {
  39         TestHref tester = new TestHref();
  40         tester.runTests();
  41     }
  42 
  43     @Test
  44     public void test() {
  45         javadoc("-Xdoclint:none",
  46                 "-d", "out",
  47                 "-source", "8",
  48                 "-sourcepath", testSrc,
  49                 "-linkoffline", "http://java.sun.com/j2se/1.4/docs/api/", testSrc,
  50                 "pkg");
  51         checkExit(Exit.OK);
  52 
  53         checkOutput("pkg/C1.html", true,
  54                 //External link.
  55                 "href=\"http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html?is-external=true#wait(long,int)\"",
  56                 //Member summary table link.
  57                 "href=\"#method(int,int,java.util.ArrayList)\"",
  58                 //Anchor test.
  59                 "<section class=\"detail\" id=\"method(int,int,java.util.ArrayList)\">");
  60 
  61         checkOutput("pkg/C2.html", true,
  62                 //{@link} test.
  63                 "Link: <a href=\"C1.html#method(int,int,java.util.ArrayList)\">",
  64                 //@see test.
  65                 "See Also:</span></dt>\n"
  66                 + "<dd><a href=\"C1.html#method(int,int,java.util.ArrayList)\">"
  67         );
  68 
  69         checkOutput("pkg/C4.html", true,
  70                 //Header does not link to the page itself.
  71                 "Class C4&lt;E extends C4&lt;E&gt;&gt;</h1>",
  72                 //Signature does not link to the page itself.
  73                 "public abstract class <span class=\"typeNameLabel\">C4&lt;E extends C4&lt;E&gt;&gt;</span>"
  74         );
  75 
  76         checkOutput(Output.OUT, false,
  77                 "<a> tag is malformed");
  78     }
  79 
  80 }