1/*
2 * Copyright (c) 2006, 2015, 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     6457284
27 * @summary Internationalize "unnamed package" when the term is used in diagnostics
28 * @author  Peter von der Ah\u00e9
29 * @modules jdk.compiler/com.sun.tools.javac.api
30 *          jdk.compiler/com.sun.tools.javac.util
31 */
32
33import java.io.IOException;
34import java.net.URI;
35import javax.lang.model.element.Element;
36
37import com.sun.source.util.JavacTask;
38import com.sun.tools.javac.api.JavacTool;
39import com.sun.tools.javac.util.Context;
40import com.sun.tools.javac.util.List;
41import com.sun.tools.javac.util.JavacMessages;
42
43import javax.tools.*;
44
45public class T6457284 {
46    static class MyFileObject extends SimpleJavaFileObject {
47        public MyFileObject() {
48            super(URI.create("myfo:/Test.java"), JavaFileObject.Kind.SOURCE);
49        }
50        public CharSequence getCharContent(boolean ignoreEncodingErrors) {
51            return "class Test {}";
52        }
53    }
54    public static void main(String[] args) throws IOException {
55        Context context = new Context();
56        MyMessages.preRegister(context);
57        JavacTool tool = JavacTool.create();
58        JavacTask task = tool.getTask(null, null, null, null, null,
59                                      List.of(new MyFileObject()),
60                                      context);
61        task.parse();
62        for (Element e : task.analyze()) {
63            if (!e.getEnclosingElement().toString().equals("compiler.misc.unnamed.package"))
64                throw new AssertionError(e.getEnclosingElement());
65            System.out.println("OK: " + e.getEnclosingElement());
66            return;
67        }
68        throw new AssertionError("No top-level classes!");
69    }
70
71    static class MyMessages extends JavacMessages {
72        static void preRegister(Context context) {
73            context.put(messagesKey, new MyMessages());
74        }
75        MyMessages() {
76            super("com.sun.tools.javac.resources.compiler");
77        }
78        public String getLocalizedString(String key, Object... args) {
79            if (key.equals("compiler.misc.unnamed.package"))
80                return key;
81            else
82                return super.getLocalizedString(key, args);
83        }
84    }
85}
86