1/*
2 * Copyright (c) 2009, 2017, 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     7091528 8029145 8037484
27 * @summary ensures javadoc parses unique source files and ignores all class files
28 * @modules jdk.javadoc/com.sun.tools.doclets.standard
29 * @library /tools/javadoc/lib
30 * @build ToyDoclet
31 * @compile p/C1.java p/q/C2.java
32 * @run main T7091528
33 */
34
35import java.io.File;
36import java.io.PrintWriter;
37import java.io.StringWriter;
38
39public 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"));
46        // 7091528, tests if class files are being ignored
47        runTest(
48            "-sourcepath", testClasses + File.pathSeparator + testSrc,
49            "-subpackages",
50            "p");
51        // 8029145, tests if unique source files are parsed
52        runTest(
53            "-sourcepath", testSrc.getAbsolutePath(),
54            "-subpackages",
55            "p:p.q");
56        File testPkgDir = new File(testSrc, "p");
57        File testFile = new File(testPkgDir, "C3.java");
58        runTest(
59            "-sourcepath", testSrc.getAbsolutePath(),
60            testFile.getAbsolutePath(),
61            "p");
62        runTest(
63            "-classpath", testSrc.getAbsolutePath(),
64            testFile.getAbsolutePath(),
65            "p");
66
67    }
68    void runTest(String... args) {
69        StringWriter sw = new StringWriter();
70        PrintWriter pw = new PrintWriter(sw);
71        int rc = com.sun.tools.javadoc.Main.execute("example", pw, pw, pw,
72                "ToyDoclet", getClass().getClassLoader(), args);
73        pw.close();
74
75        String out = sw.toString();
76        if (!out.isEmpty()) {
77            System.err.println(out);
78        }
79
80        if (rc != 0)
81            throw new Error("javadoc failed: exit code = " + rc);
82
83        if (out.matches("(?s).*p/[^ ]+\\.class.*"))
84            throw new Error("reading .class files");
85    }
86}
87