TestSimpleTag.java revision 797:4868a36f6fd8
1/*
2 * Copyright (c) 2002, 2010, 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
27 * @summary Test the declarartion 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 * @build JavadocTester
34 * @build TestSimpleTag
35 * @run main TestSimpleTag
36 */
37
38public class TestSimpleTag extends JavadocTester {
39
40    private static final String BUG_ID = "4695326-4750173-4920381";
41
42    private static final String[][] TEST =
43        new String[][] {
44            {"./" + BUG_ID + "/C.html",
45                "<span class=\"strong\">Todo:</span>"},
46            {"./" + BUG_ID + "/C.html",
47                "<span class=\"strong\">EJB Beans:</span>"},
48            {"./" + BUG_ID + "/C.html",
49                "<span class=\"strong\">Regular Tag:</span>"},
50            {"./" + BUG_ID + "/C.html",
51                "<span class=\"strong\">Back-Slash-Tag:</span>"},
52        };
53
54    private static final String[] ARGS = new String[] {
55        "-d", BUG_ID, "-sourcepath", SRC_DIR,
56        "-tag", "todo",
57        "-tag", "ejb\\:bean:a:EJB Beans:",
58        "-tag", "regular:a:Regular Tag:",
59        "-tag", "back-slash\\:tag\\\\:a:Back-Slash-Tag:",
60        SRC_DIR + FS + "C.java"
61    };
62
63    /**
64     * The entry point of the test.
65     * @param args the array of command line arguments.
66     */
67    public static void main(String[] args) {
68        TestSimpleTag tester = new TestSimpleTag();
69        run(tester, ARGS, TEST, NO_TEST);
70        tester.printSummary();
71    }
72
73    /**
74     * {@inheritDoc}
75     */
76    public String getBugId() {
77        return BUG_ID;
78    }
79
80    /**
81     * {@inheritDoc}
82     */
83    public String getBugName() {
84        return getClass().getName();
85    }
86}
87