test/com/sun/javadoc/testLinkOption/TestLinkOption.java

Wed, 28 Nov 2012 14:07:26 -0800

author
katleman
date
Wed, 28 Nov 2012 14:07:26 -0800
changeset 1425
20230f8b0eef
parent 958
734144b6b22f
child 2147
130b8c0e570e
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 2002, 2011, 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  */
    24 /*
    25  * @test
    26  * @bug 4720957 5020118
    27  * @summary Test to make sure that -link and -linkoffline link to
    28  * right files.
    29  * @author jamieh
    30  * @library ../lib/
    31  * @build JavadocTester TestLinkOption
    32  * @run main TestLinkOption
    33  */
    35 public class TestLinkOption extends JavadocTester {
    37     private static final String BUG_ID = "4720957-5020118";
    39     //Generate the documentation using -linkoffline and a URL as the first parameter.
    40     private static final String[] ARGS1 = new String[] {
    41         "-d", BUG_ID + "-1", "-sourcepath", SRC_DIR,
    42         "-linkoffline", "http://java.sun.com/j2se/1.4/docs/api/",
    43         SRC_DIR, "-package", "pkg", "java.lang"
    44     };
    46     private static final String[][] TEST1 = {
    47         {BUG_ID + "-1" + FS + "pkg" + FS + "C.html",
    48             "<a href=\"http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html?is-external=true\" " +
    49             "title=\"class or interface in java.lang\"><code>Link to String Class</code></a>"
    50         },
    51         //Make sure the parameters are indented properly when the -link option is used.
    52         {BUG_ID + "-1" + FS + "pkg" + FS + "C.html",
    53                                 "(int&nbsp;p1," + NL +
    54                                 "      int&nbsp;p2," + NL +
    55                                 "      int&nbsp;p3)"
    56         },
    57         {BUG_ID + "-1" + FS + "pkg" + FS + "C.html",
    58                                 "(int&nbsp;p1," + NL +
    59                                 "      int&nbsp;p2," + NL +
    60                                 "      <a href=\"http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html?is-external=true\" title=\"class or interface in java.lang\">" +
    61                                 "Object</a>&nbsp;p3)"
    62         },
    63         {BUG_ID + "-1" + FS + "java" + FS + "lang" + FS + "StringBuilderChild.html",
    64                 "<pre>public abstract class <span class=\"strong\">StringBuilderChild</span>" + NL +
    65                 "extends <a href=\"http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html?is-external=true\" " +
    66                 "title=\"class or interface in java.lang\">Object</a></pre>"
    67         },
    69     };
    70     private static final String[][] NEGATED_TEST1 = NO_TEST;
    72     //Generate the documentation using -linkoffline and a relative path as the first parameter.
    73     //We will try linking to the docs generated in test 1 with a relative path.
    74     private static final String[] ARGS2 = new String[] {
    75         "-d", BUG_ID + "-2", "-sourcepath", SRC_DIR,
    76         "-linkoffline", "../" + BUG_ID + "-1", BUG_ID + "-1", "-package", "pkg2"
    77     };
    79     private static final String[][] TEST2 = {
    80         {BUG_ID + "-2" + FS + "pkg2" + FS + "C2.html",
    81             "This is a link to <a href=\"../../" + BUG_ID + "-1/pkg/C.html?is-external=true\" " +
    82             "title=\"class or interface in pkg\"><code>Class C</code></a>."
    83         }
    84     };
    85     private static final String[][] NEGATED_TEST2 = NO_TEST;
    87     /**
    88      * The entry point of the test.
    89      * @param args the array of command line arguments.
    90      */
    91     public static void main(String[] args) {
    92         TestLinkOption tester = new TestLinkOption();
    93         run(tester, ARGS1, TEST1, NEGATED_TEST1);
    94         run(tester, ARGS2, TEST2, NEGATED_TEST2);
    95         tester.printSummary();
    96     }
    98     /**
    99      * {@inheritDoc}
   100      */
   101     public String getBugId() {
   102         return BUG_ID;
   103     }
   105     /**
   106      * {@inheritDoc}
   107      */
   108     public String getBugName() {
   109         return getClass().getName();
   110     }
   111 }

mercurial