10
|
1 |
/*
|
5520
|
2 |
* Copyright (c) 2006, 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 6431435 6439406
|
|
27 |
* @summary Tree API: source files loaded implicitly from source path
|
|
28 |
* @run main T6431435
|
|
29 |
*/
|
|
30 |
|
|
31 |
import java.io.*;
|
|
32 |
import java.util.*;
|
|
33 |
import javax.tools.*;
|
|
34 |
import com.sun.source.util.*;
|
|
35 |
import com.sun.tools.javac.api.*;
|
|
36 |
|
|
37 |
public class T6431435 {
|
|
38 |
public static void main(String... args) throws IOException {
|
|
39 |
String testSrc = System.getProperty("test.src", ".");
|
|
40 |
String testClasses = System.getProperty("test.classes", ".");
|
|
41 |
JavacTool tool = JavacTool.create();
|
|
42 |
StandardJavaFileManager fm = tool.getStandardFileManager(null, null, null);
|
|
43 |
fm.setLocation(StandardLocation.CLASS_OUTPUT, Arrays.asList(new File(".")));
|
|
44 |
fm.setLocation(StandardLocation.SOURCE_PATH, Arrays.asList(new File(testSrc)));
|
|
45 |
Iterable<? extends JavaFileObject> files = fm.getJavaFileObjectsFromFiles(Arrays.asList(
|
|
46 |
new File(testSrc, "A.java")));
|
|
47 |
JavacTask task = tool.getTask(null, fm, null, null, null, files);
|
|
48 |
boolean ok = true;
|
|
49 |
ok &= check("parse", task.parse(), 1); // A.java
|
|
50 |
ok &= check("analyze", task.analyze(), 3); // A, Foo, p.B
|
|
51 |
ok &= check("generate", task.generate(), 5); // A, Foo, Foo$Baz, Foo$1, p.B
|
|
52 |
if (!ok)
|
|
53 |
throw new AssertionError("Test failed");
|
|
54 |
}
|
|
55 |
|
|
56 |
private static boolean check(String name, Iterable<?> iter, int expect) {
|
|
57 |
int found = 0;
|
|
58 |
for (Object o: iter) {
|
|
59 |
found++;
|
|
60 |
//System.err.println(name + " " + found + " " + o);
|
|
61 |
}
|
|
62 |
if (found == expect)
|
|
63 |
return true;
|
|
64 |
System.err.println(name + ": found " + found + " -- expected " + expect);
|
|
65 |
return false;
|
|
66 |
}
|
|
67 |
}
|