10
|
1 |
/*
|
|
2 |
* Copyright 2005-2006 Sun Microsystems, Inc. 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
|
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or
|
|
21 |
* have any questions.
|
|
22 |
*/
|
|
23 |
|
|
24 |
/*
|
|
25 |
* @test
|
|
26 |
* @bug 6306137
|
|
27 |
* @summary JSR 199: encoding option doesn't affect standard file manager
|
|
28 |
* @author Peter von der Ahé
|
|
29 |
* @ignore
|
|
30 |
* Need to make the contentCache in JavacFileManager be aware of changes to the encoding.
|
|
31 |
* Need to propogate -source (and -encoding?) down to the JavacFileManager
|
|
32 |
*/
|
|
33 |
|
|
34 |
import java.io.File;
|
|
35 |
import java.util.Arrays;
|
|
36 |
import javax.tools.*;
|
|
37 |
|
|
38 |
public class T6306137 {
|
|
39 |
boolean error;
|
|
40 |
final StandardJavaFileManager fm;
|
|
41 |
final JavaCompiler compiler;
|
|
42 |
Iterable<? extends JavaFileObject> files;
|
|
43 |
DiagnosticListener<JavaFileObject> dl;
|
|
44 |
|
|
45 |
T6306137() {
|
|
46 |
dl = new DiagnosticListener<JavaFileObject>() {
|
|
47 |
public void report(Diagnostic<? extends JavaFileObject> message) {
|
|
48 |
if (message.getKind() == Diagnostic.Kind.ERROR)
|
|
49 |
error = true;
|
|
50 |
System.out.println(message.getSource()
|
|
51 |
+":"+message.getStartPosition()+":"
|
|
52 |
+message.getStartPosition()+":"+message.getPosition());
|
|
53 |
System.out.println(message.toString());
|
|
54 |
System.out.format("Found problem: %s%n", message.getCode());
|
|
55 |
System.out.flush();
|
|
56 |
}
|
|
57 |
};
|
|
58 |
compiler = ToolProvider.getSystemJavaCompiler();
|
|
59 |
fm = compiler.getStandardFileManager(dl, null, null);
|
|
60 |
String srcdir = System.getProperty("test.src");
|
|
61 |
files =
|
|
62 |
fm.getJavaFileObjectsFromFiles(Arrays.asList(new File(srcdir, "T6306137.java")));
|
|
63 |
}
|
|
64 |
|
|
65 |
void test(String encoding, boolean good) {
|
|
66 |
error = false;
|
|
67 |
Iterable<String> args = Arrays.asList("-source", "6", "-encoding", encoding, "-d", ".");
|
|
68 |
compiler.getTask(null, fm, dl, args, null, files).call();
|
|
69 |
if (error == good) {
|
|
70 |
if (error) {
|
|
71 |
throw new AssertionError("Error reported");
|
|
72 |
} else {
|
|
73 |
throw new AssertionError("No error reported");
|
|
74 |
}
|
|
75 |
}
|
|
76 |
}
|
|
77 |
|
|
78 |
public static void main(String[] args) {
|
|
79 |
T6306137 self = new T6306137();
|
|
80 |
self.test("utf-8", true);
|
|
81 |
self.test("ascii", false);
|
|
82 |
self.test("utf-8", true);
|
|
83 |
}
|
|
84 |
}
|