author | coleenp |
Fri, 31 Aug 2018 07:03:46 -0400 | |
changeset 51608 | 625a5bdde0c5 |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
10635 | 1 |
/* |
45742 | 2 |
* Copyright (c) 2009, 2017, Oracle and/or its affiliates. All rights reserved. |
10635 | 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 |
|
23973
4b5f3a297142
8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
23116
diff
changeset
|
26 |
* @bug 7091528 8029145 8037484 |
23116
4c134ccd6b8d
8029145: javadoc fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
10635
diff
changeset
|
27 |
* @summary ensures javadoc parses unique source files and ignores all class files |
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
23973
diff
changeset
|
28 |
* @modules jdk.javadoc/com.sun.tools.doclets.standard |
45742 | 29 |
* @library /tools/javadoc/lib |
30 |
* @build ToyDoclet |
|
10635 | 31 |
* @compile p/C1.java p/q/C2.java |
32 |
* @run main T7091528 |
|
33 |
*/ |
|
34 |
||
35 |
import java.io.File; |
|
36 |
import java.io.PrintWriter; |
|
37 |
import java.io.StringWriter; |
|
38 |
||
39 |
public class T7091528 { |
|
40 |
public static void main(String... args) { |
|
41 |
new T7091528().run(); |
|
42 |
} |
|
43 |
void run() { |
|
44 |
File testSrc = new File(System.getProperty("test.src")); |
|
45 |
File testClasses = new File(System.getProperty("test.classes")); |
|
23116
4c134ccd6b8d
8029145: javadoc fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
10635
diff
changeset
|
46 |
// 7091528, tests if class files are being ignored |
45742 | 47 |
runTest( |
10635 | 48 |
"-sourcepath", testClasses + File.pathSeparator + testSrc, |
49 |
"-subpackages", |
|
23116
4c134ccd6b8d
8029145: javadoc fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
10635
diff
changeset
|
50 |
"p"); |
4c134ccd6b8d
8029145: javadoc fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
10635
diff
changeset
|
51 |
// 8029145, tests if unique source files are parsed |
45742 | 52 |
runTest( |
23116
4c134ccd6b8d
8029145: javadoc fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
10635
diff
changeset
|
53 |
"-sourcepath", testSrc.getAbsolutePath(), |
4c134ccd6b8d
8029145: javadoc fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
10635
diff
changeset
|
54 |
"-subpackages", |
4c134ccd6b8d
8029145: javadoc fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
10635
diff
changeset
|
55 |
"p:p.q"); |
23973
4b5f3a297142
8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
23116
diff
changeset
|
56 |
File testPkgDir = new File(testSrc, "p"); |
4b5f3a297142
8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
23116
diff
changeset
|
57 |
File testFile = new File(testPkgDir, "C3.java"); |
45742 | 58 |
runTest( |
23973
4b5f3a297142
8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
23116
diff
changeset
|
59 |
"-sourcepath", testSrc.getAbsolutePath(), |
4b5f3a297142
8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
23116
diff
changeset
|
60 |
testFile.getAbsolutePath(), |
4b5f3a297142
8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
23116
diff
changeset
|
61 |
"p"); |
45742 | 62 |
runTest( |
23973
4b5f3a297142
8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
23116
diff
changeset
|
63 |
"-classpath", testSrc.getAbsolutePath(), |
4b5f3a297142
8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
23116
diff
changeset
|
64 |
testFile.getAbsolutePath(), |
4b5f3a297142
8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
23116
diff
changeset
|
65 |
"p"); |
10635 | 66 |
|
23116
4c134ccd6b8d
8029145: javadoc fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
10635
diff
changeset
|
67 |
} |
4c134ccd6b8d
8029145: javadoc fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
10635
diff
changeset
|
68 |
void runTest(String... args) { |
10635 | 69 |
StringWriter sw = new StringWriter(); |
70 |
PrintWriter pw = new PrintWriter(sw); |
|
45742 | 71 |
int rc = com.sun.tools.javadoc.Main.execute("example", pw, pw, pw, |
72 |
"ToyDoclet", getClass().getClassLoader(), args); |
|
10635 | 73 |
pw.close(); |
74 |
||
75 |
String out = sw.toString(); |
|
76 |
if (!out.isEmpty()) { |
|
77 |
System.err.println(out); |
|
78 |
} |
|
79 |
||
80 |
if (rc != 0) |
|
23973
4b5f3a297142
8037484: [javadoc] fails with java.lang.IllegalStateException: endPosTable already set
ksrini
parents:
23116
diff
changeset
|
81 |
throw new Error("javadoc failed: exit code = " + rc); |
10635 | 82 |
|
83 |
if (out.matches("(?s).*p/[^ ]+\\.class.*")) |
|
84 |
throw new Error("reading .class files"); |
|
85 |
} |
|
86 |
} |