author | jjg |
Fri, 18 Apr 2014 17:25:43 -0700 | |
changeset 24065 | fc4022e50129 |
parent 23971 | f5ff1f5a8dee |
child 24072 | e7549dcbc4af |
permissions | -rw-r--r-- |
10 | 1 |
/* |
23971 | 2 |
* Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved. |
10 | 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 |
* |
|
5520 | 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. |
|
10 | 22 |
*/ |
23 |
||
24 |
/* |
|
25 |
* @test |
|
26 |
* @bug 4691095 6306394 |
|
27 |
* @summary Test to make sure that Javadoc emits a useful warning |
|
28 |
* when a bad package.html file is in the JAR. |
|
29 |
* @author jamieh |
|
30 |
* @library ../lib/ |
|
31 |
* @build JavadocTester |
|
32 |
* @build TestBadPackageFileInJar |
|
33 |
* @run main TestBadPackageFileInJar |
|
34 |
*/ |
|
35 |
||
36 |
public class TestBadPackageFileInJar extends JavadocTester { |
|
37 |
||
23971 | 38 |
protected static final String FS = System.getProperty("file.separator"); |
39 |
||
10 | 40 |
private static final String BUG_ID = "4691095"; |
41 |
||
42 |
private static final String[][] TEST = |
|
43 |
new String[][] { |
|
44 |
{ERROR_OUTPUT, |
|
23971 | 45 |
"badPackageFileInJar.jar" + FS + "pkg/package.html: error - Body tag missing from HTML"} |
10 | 46 |
}; |
47 |
||
48 |
private static final String[] ARGS = |
|
49 |
new String[] { |
|
50 |
"-d", BUG_ID, "-sourcepath", SRC_DIR, "-classpath", |
|
23971 | 51 |
SRC_DIR + "/badPackageFileInJar.jar", "pkg"}; |
10 | 52 |
|
53 |
||
54 |
/** |
|
55 |
* The entry point of the test. |
|
56 |
* @param args the array of command line arguments. |
|
57 |
*/ |
|
58 |
public static void main(String[] args) { |
|
59 |
TestBadPackageFileInJar tester = new TestBadPackageFileInJar(); |
|
24065
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
23971
diff
changeset
|
60 |
tester.run(ARGS, TEST, NO_TEST); |
10 | 61 |
tester.printSummary(); |
62 |
} |
|
63 |
||
64 |
/** |
|
65 |
* {@inheritDoc} |
|
66 |
*/ |
|
67 |
public String getBugId() { |
|
68 |
return BUG_ID; |
|
69 |
} |
|
70 |
||
71 |
/** |
|
72 |
* {@inheritDoc} |
|
73 |
*/ |
|
74 |
public String getBugName() { |
|
75 |
return getClass().getName(); |
|
76 |
} |
|
77 |
} |