TestXOption.java revision 2416:94aca852a4d0
1/*
2 * Copyright (c) 2003, 2014, 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      8007687
27 * @summary  Make sure that the -X option works properly.
28 * @library ../lib
29 * @build    JavadocTester
30 * @run main TestXOption
31 */
32
33public class TestXOption extends JavadocTester {
34
35    public static void main(String... args) throws Exception {
36        TestXOption tester = new TestXOption();
37        tester.runTests();
38    }
39
40    @Test
41    void testWithOption() {
42        javadoc("-d", "out1",
43                "-sourcepath", testSrc,
44                "-X",
45                testSrc("TestXOption.java"));
46        checkExit(Exit.OK);
47        checkOutput(true);
48    }
49
50    @Test
51    void testWithoutOption() {
52        javadoc("-d", "out2",
53                "-sourcepath", testSrc,
54                testSrc("TestXOption.java"));
55        checkExit(Exit.OK);
56        checkOutput(false);
57    }
58
59    private void checkOutput(boolean expectFound) {
60        // TODO: It's an ugly hidden side-effect of the current doclet API
61        // that the -X output from the tool and the -X output from the doclet
62        // come out on different streams!
63        // When we clean up the doclet API, this should be rationalized.
64        checkOutput(Output.NOTICE, expectFound,
65                "-Xmaxerrs ",
66                "-Xmaxwarns ");
67        checkOutput(Output.STDOUT, expectFound,
68                "-Xdocrootparent ",
69                "-Xdoclint ",
70                "-Xdoclint:");
71    }
72}
73