TestNotifications.java revision 3233:b5d08bc0d224
1/*
2 * Copyright (c) 2003, 2015, 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      4657239 4775743
27 * @summary  Make sure a notification is printed when an output directory must
28 *           be created.
29 *           Make sure classname is not include in javadoc usage message.
30 * @author   jamieh
31 * @library ../lib
32 * @modules jdk.javadoc
33 * @build    JavadocTester
34 * @run main TestNotifications
35 */
36
37public class TestNotifications extends JavadocTester {
38
39    public static void main(String... args) throws Exception {
40        TestNotifications tester = new TestNotifications();
41        tester.runTests();
42    }
43
44    @Test
45    void test1() {
46        String outDir = "out";
47
48        // Notify that the destination directory must be created.
49        javadoc("-d", outDir, "-sourcepath", testSrc, "pkg");
50        checkExit(Exit.OK);
51        checkOutput(Output.OUT, true,
52                "Creating destination directory: \"" + outDir);
53
54        // No need to notify that the destination must be created because
55        // it already exists.
56        setOutputDirectoryCheck(DirectoryCheck.NONE);
57        javadoc("-d", outDir, "-sourcepath", testSrc, "pkg");
58        checkExit(Exit.OK);
59        checkOutput(Output.OUT, false,
60                "Creating destination directory: \"" + outDir);
61    }
62
63    @Test
64    void test() {
65        //Make sure classname is not include in javadoc usage message.
66        setOutputDirectoryCheck(DirectoryCheck.NO_HTML_FILES);
67        javadoc("-help");
68        checkOutput(Output.OUT, false,
69                "[classnames]");
70    }
71}
72