test/langtools/jdk/javadoc/doclet/testUserTaglet/TestUserTaglet.java
author jjg
Fri, 21 Dec 2018 10:38:33 -0800
changeset 53097 2e82ca64b25d
parent 49952 a6224ea48b66
permissions -rw-r--r--
8215516: Move JavadocTester to a named package Reviewed-by: hannesw
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
44388
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
     1
/*
49952
a6224ea48b66 8201817: Taglet.init should be called with the "primary" doclet
jjg
parents: 47216
diff changeset
     2
 * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
44388
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
     4
 *
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
     7
 * published by the Free Software Foundation.
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
     8
 *
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    13
 * accompanied this code).
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    14
 *
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    18
 *
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    21
 * questions.
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    22
 */
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    23
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    24
/*
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    25
 * @test
49952
a6224ea48b66 8201817: Taglet.init should be called with the "primary" doclet
jjg
parents: 47216
diff changeset
    26
 * @bug      8176836 8201817
44388
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    27
 * @summary  Provide Taglet with context
53097
2e82ca64b25d 8215516: Move JavadocTester to a named package
jjg
parents: 49952
diff changeset
    28
 * @library  ../../lib
44388
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    29
 * @modules jdk.javadoc/jdk.javadoc.internal.tool
53097
2e82ca64b25d 8215516: Move JavadocTester to a named package
jjg
parents: 49952
diff changeset
    30
 * @build    javadoc.tester.* InfoTaglet
44388
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    31
 * @run main TestUserTaglet
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    32
 */
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    33
53097
2e82ca64b25d 8215516: Move JavadocTester to a named package
jjg
parents: 49952
diff changeset
    34
import javadoc.tester.JavadocTester;
2e82ca64b25d 8215516: Move JavadocTester to a named package
jjg
parents: 49952
diff changeset
    35
44388
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    36
public class TestUserTaglet extends JavadocTester {
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    37
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    38
    public static void main(String... args) throws Exception {
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    39
        TestUserTaglet tester = new TestUserTaglet();
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    40
        tester.runTests();
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    41
    }
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    42
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    43
    @Test
53097
2e82ca64b25d 8215516: Move JavadocTester to a named package
jjg
parents: 49952
diff changeset
    44
    public void test() {
44388
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    45
        javadoc("-d", "out",
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    46
                "-sourcepath", testSrc,
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    47
                "-tagletpath", System.getProperty("test.class.path"),
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    48
                "-taglet", "InfoTaglet",
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    49
                "pkg");
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    50
        checkExit(Exit.OK);
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    51
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    52
        // The following checks verify that information was successfully
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    53
        // derived from the context information available to the taglet.
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    54
        checkOutput("pkg/C.html", true,
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    55
            "<li>Element: CLASS C",
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    56
            "<li>Element supertypes: [java.lang.Object]",
49952
a6224ea48b66 8201817: Taglet.init should be called with the "primary" doclet
jjg
parents: 47216
diff changeset
    57
            "<li>Doclet: class jdk.javadoc.doclet.StandardDoclet"
44388
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    58
        );
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    59
    }
4d0903f1f311 8176836: Provide Taglet with context
jjg
parents:
diff changeset
    60
}