TestSimpleTag.java revision 3294:9adfb22ff08f
1/*
2 * Copyright (c) 2002, 2016, 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 4695326 4750173 4920381 8078320
27 * @summary Test the declaration of simple tags using -tag. Verify that
28 * "-tag name" is a shortcut for "-tag name:a:Name:".  Also verity that
29 * you can escape the ":" character with a back slash so that it is not
30 * considered a separator when parsing the simple tag argument.
31 * @author jamieh
32 * @library ../lib
33 * @modules jdk.javadoc/jdk.javadoc.internal.tool
34 * @build JavadocTester
35 * @run main TestSimpleTag
36 */
37
38public class TestSimpleTag extends JavadocTester {
39
40    public static void main(String... args) throws Exception {
41        TestSimpleTag tester = new TestSimpleTag();
42        tester.runTests();
43    }
44
45    @Test
46    void test() {
47        javadoc("-d", "out",
48                "-sourcepath", testSrc,
49                "-tag", "todo",
50                "-tag", "ejb\\:bean:a:EJB Beans:",
51                "-tag", "regular:a:Regular Tag:",
52                "-tag", "tag-with-hyphens:a:Tag-With-Hyphens:",
53                testSrc("C.java"));
54        checkExit(Exit.OK);
55
56        checkOutput("C.html", true,
57                "<span class=\"simpleTagLabel\">Todo:</span>",
58                "<span class=\"simpleTagLabel\">EJB Beans:</span>",
59                "<span class=\"simpleTagLabel\">Regular Tag:</span>",
60                "<span class=\"simpleTagLabel\">Tag-With-Hyphens:</span>");
61    }
62}
63