test/langtools/jdk/javadoc/doclet/testClassDocCatalog/TestClassDocCatalog.java
changeset 54409 94986cf5e969
parent 54408 8fe16bf92ebd
parent 54373 13935056b05e
child 54410 7feb5e303c83
equal deleted inserted replaced
54408:8fe16bf92ebd 54409:94986cf5e969
     1 /*
       
     2  * Copyright (c) 2016, 2018, 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 8071982 8196202
       
    27  * @summary Test for package-frame.html.
       
    28  * @library ../../lib
       
    29  * @modules jdk.javadoc/jdk.javadoc.internal.tool
       
    30  * @build javadoc.tester.*
       
    31  * @run main TestClassDocCatalog
       
    32  */
       
    33 
       
    34 import javadoc.tester.JavadocTester;
       
    35 
       
    36 public class TestClassDocCatalog extends JavadocTester {
       
    37 
       
    38     public static void main(String... args) throws Exception {
       
    39         TestClassDocCatalog tester = new TestClassDocCatalog();
       
    40         tester.runTests();
       
    41     }
       
    42 
       
    43     @Test
       
    44     public void test() {
       
    45         javadoc("-d", "out",
       
    46                 "--frames",
       
    47                 testSrc("pkg1/EmptyAnnotation.java"),
       
    48                 testSrc("pkg1/EmptyClass.java"),
       
    49                 testSrc("pkg1/EmptyEnum.java"),
       
    50                 testSrc("pkg1/EmptyError.java"),
       
    51                 testSrc("pkg1/EmptyException.java"),
       
    52                 testSrc("pkg1/EmptyInterface.java"),
       
    53                 testSrc("pkg2/EmptyAnnotation.java"),
       
    54                 testSrc("pkg2/EmptyClass.java"),
       
    55                 testSrc("pkg2/EmptyEnum.java"),
       
    56                 testSrc("pkg2/EmptyError.java"),
       
    57                 testSrc("pkg2/EmptyException.java"),
       
    58                 testSrc("pkg2/EmptyInterface.java"));
       
    59         checkExit(Exit.OK);
       
    60 
       
    61         checkOutput("overview-frame.html", true,
       
    62                 "<li><a href=\"pkg1/package-frame.html\" target=\"packageFrame\">pkg1</a>"
       
    63                 + "</li>\n<li><a href=\"pkg2/package-frame.html\" target=\"packageFrame\">pkg2</a></li>");
       
    64 
       
    65         checkOutput("pkg1/package-frame.html", true,
       
    66                 "<li><a href=\"EmptyInterface.html\" title=\"interface in pkg1\" "
       
    67                 + "target=\"classFrame\"><span class=\"interfaceName\">EmptyInterface"
       
    68                 + "</span></a></li>",
       
    69                 "<li><a href=\"EmptyClass.html\" title=\"class in pkg1\" "
       
    70                 + "target=\"classFrame\">EmptyClass</a></li>",
       
    71                 "<li><a href=\"EmptyEnum.html\" title=\"enum in pkg1\" "
       
    72                 + "target=\"classFrame\">EmptyEnum</a></li>",
       
    73                 "<li><a href=\"EmptyError.html\" title=\"class in pkg1\" "
       
    74                 + "target=\"classFrame\">EmptyError</a></li>",
       
    75                 "<li><a href=\"EmptyAnnotation.html\" title=\"annotation in pkg1\""
       
    76                 + " target=\"classFrame\">EmptyAnnotation</a></li>");
       
    77     }
       
    78 }