T6437999.java revision 1732:e39669aea0bd
1/*
2 * Copyright (c) 2006, 2013, 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     6437999
27 * @summary Unit test for encoding argument to standard file manager
28 * @author  Peter von der Ah\u00e9
29 * @library ../lib
30 * @build ToolTester
31 * @compile T6437999.java
32 * @run main T6437999
33 */
34
35import java.io.File;
36import java.nio.charset.Charset;
37import java.util.Collections;
38import javax.tools.*;
39
40public class T6437999 extends ToolTester {
41    static class MyDiagnosticListener implements DiagnosticListener<JavaFileObject> {
42        boolean error = false;
43        public void report(Diagnostic<? extends JavaFileObject> diagnostic) {
44            error |= diagnostic.getKind() == Diagnostic.Kind.ERROR;
45            System.out.println(diagnostic);
46        }
47    }
48
49    void test(String... args) {
50        Iterable<String> sourceLevel = Collections.singleton("6");
51        MyDiagnosticListener dl = new MyDiagnosticListener();
52        StandardJavaFileManager fm;
53        Iterable<? extends JavaFileObject> files;
54
55        dl.error = false;
56        fm = getFileManager(tool, dl, Charset.forName("ASCII"));
57        fm.handleOption("-source", sourceLevel.iterator());
58        files = fm.getJavaFileObjects(new File(test_src, "Utf8.java"));
59        tool.getTask(null, fm, null, null, null, files).call();
60        if (!dl.error)
61            throw new AssertionError("No error in ASCII mode");
62
63        dl.error = false;
64        fm = getFileManager(tool, dl, Charset.forName("UTF-8"));
65        fm.handleOption("-source", sourceLevel.iterator());
66        files = fm.getJavaFileObjects(new File(test_src, "Utf8.java"));
67        task = tool.getTask(null, fm, null, null, null, files);
68        if (dl.error)
69            throw new AssertionError("Error in UTF-8 mode");
70    }
71    public static void main(String... args) {
72        new T6437999().test(args);
73    }
74}
75