test/com/sun/javadoc/testLegacyTaglet/TestLegacyTaglet.java

Fri, 30 Aug 2013 16:16:28 -0700

author
bpatel
date
Fri, 30 Aug 2013 16:16:28 -0700
changeset 1996
7a2fe98cb0e6
parent 554
9d9f26857129
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8015882: Javadoc prints NPE when using Taglet
Reviewed-by: jjg

     1 /*
     2  * Copyright (c) 2003, 2013, 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 4638723 8015882
    27  * @summary Test to ensure that the refactored version of the standard
    28  * doclet still works with Taglets that implement the 1.4.0 interface.
    29  * @author jamieh
    30  * @library ../lib/
    31  * @compile ../lib/JavadocTester.java TestLegacyTaglet.java ToDoTaglet.java UnderlineTaglet.java Check.java
    32  * @run main TestLegacyTaglet
    33  */
    35 public class TestLegacyTaglet extends JavadocTester {
    37     private static final String BUG_ID = "4638723-8015882";
    39     private static final String[] ARGS =
    40         new String[] {"-d", BUG_ID, "-sourcepath", SRC_DIR,
    41             "-tagletpath", SRC_DIR, "-taglet", "ToDoTaglet", "-taglet", "Check",
    42             "-taglet", "UnderlineTaglet", SRC_DIR + FS + "C.java"};
    44     private static final String[][] TEST = new String[][] {
    45             {BUG_ID + FS + "C.html", "This is an <u>underline</u>"},
    46             {BUG_ID + FS + "C.html",
    47             "<DT><B>To Do:</B><DD><table cellpadding=2 cellspacing=0><tr>" +
    48                 "<td bgcolor=\"yellow\">Finish this class.</td></tr></table></DD>"},
    49             {BUG_ID + FS + "C.html",
    50             "<DT><B>To Do:</B><DD><table cellpadding=2 cellspacing=0><tr>" +
    51                 "<td bgcolor=\"yellow\">Tag in Method.</td></tr></table></DD>"}
    52     };
    54     private static final String[][] NEGATED_TEST = NO_TEST;
    56     /**
    57      * The entry point of the test.
    58      * @param args the array of command line arguments.
    59      */
    60     public static void main(String[] args) {
    61         TestLegacyTaglet tester = new TestLegacyTaglet();
    62         run(tester, ARGS, TEST, NEGATED_TEST);
    63         if (tester.getErrorOutput().contains("NullPointerException")) {
    64             throw new AssertionError("javadoc threw NullPointerException");
    65         }
    66         tester.printSummary();
    67     }
    69     /**
    70      * {@inheritDoc}
    71      */
    72     public String getBugId() {
    73         return BUG_ID;
    74     }
    76     /**
    77      * {@inheritDoc}
    78      */
    79     public String getBugName() {
    80         return getClass().getName();
    81     }
    82 }

mercurial