JDK-8027650 : missing locales in sun.util.logging.resources
  • Type: Bug
  • Component: core-libs
  • Sub-Component: java.util.logging
  • Affected Version: 7u40
  • Priority: P3
  • Status: Closed
  • Resolution: Not an Issue
  • OS: windows_xp
  • Submitted: 2013-10-27
  • Updated: 2013-11-06
  • Resolved: 2013-11-06
Related Reports
Relates :  
Relates :  
Description
FULL PRODUCT VERSION :
$ java -version
java version "1.7.0_40"
Java(TM) SE Runtime Environment (build 1.7.0_40-b43)
Java HotSpot(TM) Client VM (build 24.0-b56, mixed mode)

ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows XP [version 5.1.2600]

C:\Documents and Settings\FrancisANDRE>java -version
java version "1.7.0_40"
Java(TM) SE Runtime Environment (build 1.7.0_40-b43)
Java HotSpot(TM) Client VM (build 24.0-b56, mixed mode, sharing)

$ uname -a
CYGWIN_NT-5.1 idefix 1.7.25(0.270/5/3) 2013-08-31 20:39 i686 Cygwin

EXTRA RELEVANT SYSTEM CONFIGURATION :
WXP SP3, 4Gb

A DESCRIPTION OF THE PROBLEM :
Hi

The jdk 7u jtreg test LocalizedLevelName.java fails because Locale.en is missing. It fails also because Locale.ROOT has all its level name in UPPER case while it should provide Capitalized names.



STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
run main/othervm LocalizedLevelName on a French PC

ACTUAL -
en: SEVERE=Severe, (Level.SEVERE)
     => localized(en, SEVERE)=SEVERE
     => localized(en, SEVERE)=SEVERE
Exception in thread "main" java.lang.RuntimeException: Expected "Severe" for 'en' but got "SEVERE"
at LocalizedLevelName.main(LocalizedLevelName.java:84)


REPRODUCIBILITY :
This bug can be reproduced always.

---------- BEGIN SOURCE ----------
/*
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

import java.util.*;
import java.util.logging.*;

/*
 * @test
 * @bug 8016127 8024131
 * @summary test logging.properties localized
 * @run main/othervm LocalizedLevelName
 */

public class LocalizedLevelName {
    private static Object[] namesMap = {
        "SEVERE",  Locale.ENGLISH, "Severe",        Level.SEVERE,
        "WARNING", Locale.FRENCH,  "Avertissement", Level.WARNING,
        "INFO",    Locale.ITALIAN, "Informazioni",  Level.INFO,
        "SEVERE",  Locale.FRENCH,  "Grave",         Level.SEVERE,
        "CONFIG",  Locale.GERMAN,  "Konfiguration", Level.CONFIG,
        "ALL",     Locale.ROOT,    "All",           Level.ALL,
        "SEVERE",  Locale.ROOT,    "Severe",        Level.SEVERE,
        "WARNING", Locale.ROOT,    "Warning",       Level.WARNING,
        "CONFIG",  Locale.ROOT,    "Config",        Level.CONFIG,
        "INFO",    Locale.ROOT,    "Info",          Level.INFO,
        "FINE",    Locale.ROOT,    "Fine",          Level.FINE,
        "FINER",   Locale.ROOT,    "Finer",         Level.FINER,
        "FINEST",  Locale.ROOT,    "Finest",        Level.FINEST
    };

    public static void main(String args[]) throws Exception {
    Locale.setDefault(Locale.US);
        Locale defaultLocale = Locale.getDefault();
        for (int i=0; i<namesMap.length; i += 4) {
            final String key = (String) namesMap[i];
            final Locale locale = (Locale) namesMap[i+1];
            final String expectedTranslation = (String) namesMap[i+2];
            final Level level = (Level) namesMap[i+3];

            final String en = getLocalizedMessage(Locale.ENGLISH, key);
            final String other = getLocalizedMessage(locale, key);

            System.out.println(locale + ": " + key + "=" + expectedTranslation
                    + ", (Level." + level.getName() + ")");
            System.out.println("     => localized(" + Locale.ENGLISH + ", "
                    + key + ")=" + en);
            System.out.println("     => localized(" + locale + ", " + key
                    + ")=" + other);
            if (!key.equals(en.toUpperCase(Locale.ROOT))) {
                throw new RuntimeException("Expect " + key
                        + " equals upperCase(" + en + ")");
            }
            if (!Locale.ENGLISH.equals(locale) && !Locale.ROOT.equals(locale)
                    && key.equals(other.toUpperCase(Locale.ROOT))) {
                throw new RuntimeException("Expect " + key
                        + " not equals upperCase(" + other +")");
            }
            if ((Locale.ENGLISH.equals(locale) || Locale.ROOT.equals(locale))
                    && !key.equals(other.toUpperCase(Locale.ROOT))) {
                throw new RuntimeException("Expect " + key
                        + " equals upperCase(" + other +")");
            }
            if (!other.equals(expectedTranslation)) {
                throw new RuntimeException("Expected \"" + expectedTranslation
                        + "\" for '" + locale + "' but got \"" + other + "\"");
            }
            Locale.setDefault(locale);
            final String levelName = level.getLocalizedName();
            System.out.println("Level.getLocalizedName() is: " + levelName);
            if (!levelName.equals(other.toUpperCase(locale))) {
                throw new RuntimeException("Expected \""
                        + other.toUpperCase(locale) + "\" for '"
                        + locale + "' but got \"" + levelName + "\"");
            }
            Locale.setDefault(defaultLocale);
       }
    }

    private static final String RBNAME = "sun.util.logging.resources.logging";
    private static String getLocalizedMessage(Locale locale, String key) {
        ResourceBundle rb = ResourceBundle.getBundle(RBNAME, locale);
        return rb.getString(key);
    }
}

---------- END SOURCE ----------
Comments
test/java/util/logging/LocalizedLevelName.java a new regression test added for JDK-8016127 and JDK-8024131 that are target for 7u60 and not in 7u40. The changeset is: http://hg.openjdk.java.net/jdk7u/jdk7u-dev/jdk/rev/ffd0a74b30d6 This regression test passes with the 7u-dev build.
06-11-2013