test/java/util/PluggableLocale/BreakIteratorProviderTest.java

Print this page
rev 5615 : 6336885: RFE: Locale Data Deployment Enhancements
4609153: Provide locale data for Indic locales
5104387: Support for gl_ES locale (galician language)
6337471: desktop/system locale preferences support
7056139: (cal) SPI support for locale-dependent Calendar parameters
7058206: Provide CalendarData SPI for week params and display field value names
7073852: Support multiple scripts for digits and decimal symbols per locale
7079560: [Fmt-Da] Context dependent month names support in SimpleDateFormat
7171324: getAvailableLocales() of locale sensitive services should return the actual availability of locales
7151414: (cal) Support calendar type identification
7168528: LocaleServiceProvider needs to be aware of Locale extensions
7171372: (cal) locale's default Calendar should be created if unknown calendar is specified
Summary: JEP 127: Improve Locale Data Packaging and Adopt Unicode CLDR Data (part 1 w/o Jigsaw. by Naoto Sato and Masayoshi Okutsu)
   1 /*
   2  * Copyright (c) 2007, 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  */
  26 
  27 import java.text.*;
  28 import java.util.*;
  29 import sun.text.resources.*;
  30 import sun.util.*;
  31 import sun.util.resources.*;
  32 
  33 public class BreakIteratorProviderTest extends ProviderTest {
  34 
  35     com.foo.BreakIteratorProviderImpl bip = new com.foo.BreakIteratorProviderImpl();
  36     List<Locale> availloc = Arrays.asList(BreakIterator.getAvailableLocales());
  37     List<Locale> providerloc = Arrays.asList(bip.getAvailableLocales());
  38     List<Locale> jreloc = Arrays.asList(LocaleData.getAvailableLocales());

  39 
  40     private static final int CHARACTER_INDEX = 0;
  41     private static final int WORD_INDEX = 1;
  42     private static final int LINE_INDEX = 2;
  43     private static final int SENTENCE_INDEX = 3;
  44 
  45     public static void main(String[] s) {
  46         new BreakIteratorProviderTest();
  47     }
  48 
  49     BreakIteratorProviderTest() {
  50         availableLocalesTest();
  51         objectValidityTest();
  52     }
  53 
  54     void availableLocalesTest() {
  55         Set<Locale> localesFromAPI = new HashSet<Locale>(availloc);
  56         Set<Locale> localesExpected = new HashSet<Locale>(jreloc);

  57         localesExpected.addAll(providerloc);
  58         if (localesFromAPI.equals(localesExpected)) {
  59             System.out.println("availableLocalesTest passed.");
  60         } else {
  61             throw new RuntimeException("availableLocalesTest failed");
  62         }
  63     }
  64 
  65     void objectValidityTest() {
  66 
  67         for (Locale target: availloc) {
  68             // pure JRE implementation
  69             ResourceBundle rb = ResourceBundle.getBundle(
  70                         "sun.text.resources.BreakIteratorInfo", target);
  71             String[] classNames = rb.getStringArray("BreakIteratorClasses");
  72             boolean jreSupportsLocale = jreloc.contains(target);
  73 
  74             // result object
  75             String[] result = new String[4];
  76             result[0] = BreakIterator.getCharacterInstance(target).getClass().getName();
  77             result[1] = BreakIterator.getWordInstance(target).getClass().getName();
  78             result[2] = BreakIterator.getLineInstance(target).getClass().getName();
  79             result[3] = BreakIterator.getSentenceInstance(target).getClass().getName();
  80 
  81             // provider's object (if any)
  82             String[] providersResult = new String[4];
  83             if (providerloc.contains(target)) {
  84                 providersResult[0] = bip.getCharacterInstance(target).getClass().getName();
  85                 providersResult[1] = bip.getWordInstance(target).getClass().getName();
  86                 providersResult[2] = bip.getLineInstance(target).getClass().getName();
  87                 providersResult[3] = bip.getSentenceInstance(target).getClass().getName();
  88             }
  89 
  90             // JRE
  91             String[] jresResult = new String[4];
  92             if (jreSupportsLocale) {
  93                 for (int i = 0; i < 4; i++) {
  94                     jresResult[i] = "java.text."+classNames[i];
  95                 }
  96             }
  97 
  98             for (int i = 0; i < 4; i++) {
  99                 checkValidity(target, jresResult[i], providersResult[i], result[i], jreSupportsLocale);
 100             }
 101         }
 102     }
 103 }
   1 /*
   2  * Copyright (c) 2007, 2012, 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  */
  26 
  27 import java.text.*;
  28 import java.util.*;
  29 import sun.text.resources.*;
  30 import sun.util.locale.provider.*;
  31 import sun.util.resources.*;
  32 
  33 public class BreakIteratorProviderTest extends ProviderTest {
  34 
  35     com.foo.BreakIteratorProviderImpl bip = new com.foo.BreakIteratorProviderImpl();
  36     List<Locale> availloc = Arrays.asList(BreakIterator.getAvailableLocales());
  37     List<Locale> providerloc = Arrays.asList(bip.getAvailableLocales());
  38     List<Locale> jreloc = Arrays.asList(LocaleProviderAdapter.forJRE().getAvailableLocales());
  39     List<Locale> jreimplloc = Arrays.asList(LocaleProviderAdapter.forJRE().getBreakIteratorProvider().getAvailableLocales());
  40 
  41     private static final int CHARACTER_INDEX = 0;
  42     private static final int WORD_INDEX = 1;
  43     private static final int LINE_INDEX = 2;
  44     private static final int SENTENCE_INDEX = 3;
  45 
  46     public static void main(String[] s) {
  47         new BreakIteratorProviderTest();
  48     }
  49 
  50     BreakIteratorProviderTest() {
  51         availableLocalesTest();
  52         objectValidityTest();
  53     }
  54 
  55     void availableLocalesTest() {
  56         Set<Locale> localesFromAPI = new HashSet<Locale>(availloc);
  57         Set<Locale> localesExpected = new HashSet<Locale>(jreimplloc);
  58         localesExpected.remove(Locale.ROOT);
  59         localesExpected.addAll(providerloc);
  60         if (localesFromAPI.equals(localesExpected)) {
  61             System.out.println("availableLocalesTest passed.");
  62         } else {
  63             throw new RuntimeException("availableLocalesTest failed");
  64         }
  65     }
  66 
  67     void objectValidityTest() {
  68 
  69         for (Locale target: availloc) {
  70             // pure JRE implementation
  71             ResourceBundle rb = LocaleProviderAdapter.forJRE().getLocaleData().getBundle(
  72                         "sun.text.resources.BreakIteratorInfo", target);
  73             String[] classNames = rb.getStringArray("BreakIteratorClasses");
  74             boolean jreSupportsLocale = jreimplloc.contains(target);
  75 
  76             // result object
  77             String[] result = new String[4];
  78             result[0] = BreakIterator.getCharacterInstance(target).getClass().getName();
  79             result[1] = BreakIterator.getWordInstance(target).getClass().getName();
  80             result[2] = BreakIterator.getLineInstance(target).getClass().getName();
  81             result[3] = BreakIterator.getSentenceInstance(target).getClass().getName();
  82 
  83             // provider's object (if any)
  84             String[] providersResult = new String[4];
  85             if (providerloc.contains(target)) {
  86                 providersResult[0] = bip.getCharacterInstance(target).getClass().getName();
  87                 providersResult[1] = bip.getWordInstance(target).getClass().getName();
  88                 providersResult[2] = bip.getLineInstance(target).getClass().getName();
  89                 providersResult[3] = bip.getSentenceInstance(target).getClass().getName();
  90             }
  91 
  92             // JRE
  93             String[] jresResult = new String[4];
  94             if (jreSupportsLocale) {
  95                 for (int i = 0; i < 4; i++) {
  96                     jresResult[i] = "sun.util.locale.provider."+classNames[i];
  97                 }
  98             }
  99 
 100             for (int i = 0; i < 4; i++) {
 101                 checkValidity(target, jresResult[i], providersResult[i], result[i], jreSupportsLocale);
 102             }
 103         }
 104     }
 105 }