2015-11-29 02:52:17 +00:00
|
|
|
/*
|
2019-01-30 11:09:26 +00:00
|
|
|
* Copyright (c) 2004, 2019, Oracle and/or its affiliates. All rights reserved.
|
2015-11-29 02:52:17 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @test
|
2018-03-06 18:45:47 +00:00
|
|
|
* @bug 4515705 4804296 4702454 4697036 8025633 8182765
|
2015-11-29 02:52:17 +00:00
|
|
|
* @summary Make sure that first sentence warning only appears once.
|
|
|
|
* Make sure that only warnings/errors are printed when quiet is used.
|
|
|
|
* Make sure that links to private/unincluded methods do not cause
|
|
|
|
* a "link unresolved" warning.
|
|
|
|
* Make sure error message starts with "error -".
|
2018-12-21 18:38:33 +00:00
|
|
|
* @library ../../lib
|
2016-02-18 20:48:11 +00:00
|
|
|
* @modules jdk.javadoc/jdk.javadoc.internal.tool
|
2018-12-21 18:38:33 +00:00
|
|
|
* @build javadoc.tester.*
|
2015-11-29 02:52:17 +00:00
|
|
|
* @run main TestWarnings
|
|
|
|
*/
|
|
|
|
|
2018-12-21 18:38:33 +00:00
|
|
|
import javadoc.tester.JavadocTester;
|
|
|
|
|
2015-11-29 02:52:17 +00:00
|
|
|
public class TestWarnings extends JavadocTester {
|
|
|
|
public static void main(String... args) throws Exception {
|
|
|
|
TestWarnings tester = new TestWarnings();
|
|
|
|
tester.runTests();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
2018-12-21 18:38:33 +00:00
|
|
|
public void testDefault() {
|
2015-11-29 02:52:17 +00:00
|
|
|
javadoc("-d", "out-default",
|
|
|
|
"-sourcepath", testSrc,
|
|
|
|
"pkg");
|
2016-10-10 13:47:47 +00:00
|
|
|
checkExit(Exit.ERROR);
|
2015-11-29 02:52:17 +00:00
|
|
|
|
|
|
|
checkOutput(Output.OUT, true,
|
|
|
|
"X.java:23: error: self-closing element not allowed");
|
|
|
|
|
|
|
|
checkOutput(Output.OUT, true,
|
|
|
|
"X.java:24: error: self-closing element not allowed");
|
|
|
|
|
|
|
|
checkOutput(Output.OUT, true,
|
|
|
|
"X.java:25: error: self-closing element not allowed");
|
|
|
|
|
|
|
|
checkOutput(Output.OUT, true,
|
|
|
|
"X.java:26: error: self-closing element not allowed");
|
|
|
|
|
|
|
|
checkOutput("pkg/X.html", false,
|
|
|
|
"can't find m()");
|
|
|
|
checkOutput("pkg/X.html", false,
|
|
|
|
"can't find X()");
|
|
|
|
checkOutput("pkg/X.html", false,
|
|
|
|
"can't find f");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
2018-12-21 18:38:33 +00:00
|
|
|
public void testPrivate() {
|
2015-11-29 02:52:17 +00:00
|
|
|
javadoc("-d", "out-private",
|
|
|
|
"-private",
|
|
|
|
"-sourcepath", testSrc,
|
|
|
|
"pkg");
|
2016-10-10 13:47:47 +00:00
|
|
|
checkExit(Exit.ERROR);
|
2015-11-29 02:52:17 +00:00
|
|
|
|
|
|
|
checkOutput("pkg/X.html", true,
|
2018-03-06 18:45:47 +00:00
|
|
|
"<a href=\"#m()\"><code>m()</code></a><br/>",
|
|
|
|
"<a href=\"#%3Cinit%3E()\"><code>X()</code></a><br/>",
|
2018-01-22 19:15:51 +00:00
|
|
|
"<a href=\"#f\"><code>f</code></a><br/>");
|
2015-11-29 02:52:17 +00:00
|
|
|
}
|
|
|
|
}
|