10
|
1 |
/*
|
5520
|
2 |
* Copyright (c) 2002, 2004, 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 |
import java.io.File;
|
|
25 |
|
|
26 |
/*
|
|
27 |
* @test
|
|
28 |
* @bug 4258405 4973606
|
|
29 |
* @summary This test verifies that the doc-file directory does not
|
|
30 |
* get overwritten when the sourcepath is equal to the destination
|
|
31 |
* directory.
|
|
32 |
* Also test that -docfilessubdirs and -excludedocfilessubdir both work.
|
|
33 |
* @author jamieh
|
|
34 |
* @library ../lib/
|
|
35 |
* @build JavadocTester
|
|
36 |
* @build TestDocFileDir
|
|
37 |
* @run main TestDocFileDir
|
|
38 |
*/
|
|
39 |
|
|
40 |
public class TestDocFileDir extends JavadocTester {
|
|
41 |
|
|
42 |
private static final String BUG_ID = "4258405-4973606";
|
|
43 |
|
|
44 |
private static final String[][] TEST1 = {
|
|
45 |
{BUG_ID + "-1" + FS + "pkg" + FS + "doc-files" + FS + "testfile.txt",
|
|
46 |
"This doc file did not get trashed."}
|
|
47 |
};
|
|
48 |
private static final String[][] NEGATED_TEST1 = NO_TEST;
|
|
49 |
|
|
50 |
private static final String[][] TEST2 = {
|
|
51 |
{BUG_ID + "-2" + FS + "pkg" + FS + "doc-files" + FS + "subdir-used1" +
|
|
52 |
FS + "testfile.txt",
|
|
53 |
"passed"
|
|
54 |
},
|
|
55 |
{BUG_ID + "-2" + FS + "pkg" + FS + "doc-files" + FS + "subdir-used2" +
|
|
56 |
FS + "testfile.txt",
|
|
57 |
"passed"
|
|
58 |
},
|
|
59 |
};
|
|
60 |
private static final String[][] NEGATED_TEST2 = {
|
|
61 |
{BUG_ID + "-2" + FS + "pkg" + FS + "doc-files" + FS + "subdir-excluded1" +
|
|
62 |
FS + "testfile.txt",
|
|
63 |
"passed"
|
|
64 |
},
|
|
65 |
{BUG_ID + "-2" + FS + "pkg" + FS + "doc-files" + FS + "subdir-excluded2" +
|
|
66 |
FS + "testfile.txt",
|
|
67 |
"passed"
|
|
68 |
},
|
|
69 |
};
|
|
70 |
|
|
71 |
private static final String[][] TEST0 = {
|
|
72 |
{"pkg" + FS + "doc-files" + FS + "testfile.txt",
|
|
73 |
"This doc file did not get trashed."}
|
|
74 |
};
|
|
75 |
private static final String[][] NEGATED_TEST0 = {};
|
|
76 |
|
|
77 |
//Output dir = Input Dir
|
|
78 |
private static final String[] ARGS1 =
|
|
79 |
new String[] {
|
|
80 |
"-d", BUG_ID + "-1", "-sourcepath",
|
|
81 |
"blah" + String.valueOf(File.pathSeparatorChar) +
|
|
82 |
BUG_ID + "-1" + String.valueOf(File.pathSeparatorChar) +
|
|
83 |
"blah", "pkg"};
|
|
84 |
|
|
85 |
//Exercising -docfilessubdirs and -excludedocfilessubdir
|
|
86 |
private static final String[] ARGS2 =
|
|
87 |
new String[] {
|
|
88 |
"-d", BUG_ID + "-2", "-sourcepath", SRC_DIR,
|
|
89 |
"-docfilessubdirs", "-excludedocfilessubdir",
|
|
90 |
"subdir-excluded1:subdir-excluded2", "pkg"};
|
|
91 |
|
|
92 |
//Output dir = "", Input dir = ""
|
|
93 |
private static final String[] ARGS0 =
|
|
94 |
new String[] {"pkg" + FS + "C.java"};
|
|
95 |
|
|
96 |
|
|
97 |
/**
|
|
98 |
* The entry point of the test.
|
|
99 |
* @param args the array of command line arguments.
|
|
100 |
*/
|
|
101 |
public static void main(String[] args) {
|
|
102 |
TestDocFileDir tester = new TestDocFileDir();
|
|
103 |
copyDir(SRC_DIR + FS + "pkg", ".");
|
|
104 |
run(tester, ARGS0, TEST0, NEGATED_TEST0);
|
|
105 |
copyDir(SRC_DIR + FS + "pkg", BUG_ID + "-1");
|
|
106 |
run(tester, ARGS1, TEST1, NEGATED_TEST1);
|
|
107 |
run(tester, ARGS2, TEST2, NEGATED_TEST2);
|
|
108 |
tester.printSummary();
|
|
109 |
}
|
|
110 |
|
|
111 |
/**
|
|
112 |
* {@inheritDoc}
|
|
113 |
*/
|
|
114 |
public String getBugId() {
|
|
115 |
return BUG_ID;
|
|
116 |
}
|
|
117 |
|
|
118 |
/**
|
|
119 |
* {@inheritDoc}
|
|
120 |
*/
|
|
121 |
public String getBugName() {
|
|
122 |
return getClass().getName();
|
|
123 |
}
|
|
124 |
}
|