< prev index next >

test/jdk/java/util/PluggableLocale/NumberFormatProviderTest.java

Print this page


   1 /*
   2  * Copyright (c) 2007, 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  */
  26 
  27 import java.text.*;
  28 import java.util.*;
  29 import sun.util.locale.provider.*;
  30 import sun.util.resources.*;






  31 
  32 import com.foo.FooNumberFormat;



  33 
  34 public class NumberFormatProviderTest extends ProviderTest {
  35 
  36     com.foo.NumberFormatProviderImpl nfp = new com.foo.NumberFormatProviderImpl();
  37     List<Locale> availloc = Arrays.asList(NumberFormat.getAvailableLocales());
  38     List<Locale> providerloc = Arrays.asList(nfp.getAvailableLocales());
  39     List<Locale> jreloc = Arrays.asList(LocaleProviderAdapter.forJRE().getAvailableLocales());
  40     List<Locale> jreimplloc = Arrays.asList(LocaleProviderAdapter.forJRE().getNumberFormatProvider().getAvailableLocales());
  41 
  42     public static void main(String[] s) {
  43         new NumberFormatProviderTest();
  44     }
  45 
  46     NumberFormatProviderTest() {
  47         availableLocalesTest();
  48         objectValidityTest();
  49         messageFormatTest();
  50     }
  51 
  52     void availableLocalesTest() {
  53         Set<Locale> localesFromAPI = new HashSet<>(availloc);
  54         Set<Locale> localesExpected = new HashSet<>(jreloc);
  55         localesExpected.addAll(providerloc);
  56         if (localesFromAPI.equals(localesExpected)) {


   1 /*
   2  * Copyright (c) 2007, 2018, 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 4052440 7003643 8062588 8210406
  27  * @summary NumberFormatProvider tests
  28  * @library providersrc/foobarutils
  29  *          providersrc/fooprovider
  30  * @modules java.base/sun.util.locale.provider
  31  * @build com.foobar.Utils
  32  *        com.foo.*
  33  * @run main/othervm -Djava.locale.providers=JRE,SPI NumberFormatProviderTest
  34  */
  35 
  36 import java.text.DecimalFormat;
  37 import java.text.DecimalFormatSymbols;
  38 import java.text.MessageFormat;
  39 import java.text.NumberFormat;
  40 import java.util.Arrays;
  41 import java.util.Currency;
  42 import java.util.HashSet;
  43 import java.util.List;
  44 import java.util.Locale;
  45 import java.util.Set;
  46 
  47 import com.foo.FooNumberFormat;
  48 import com.foo.NumberFormatProviderImpl;
  49 
  50 import sun.util.locale.provider.LocaleProviderAdapter;
  51 
  52 public class NumberFormatProviderTest extends ProviderTest {
  53 
  54     NumberFormatProviderImpl nfp = new NumberFormatProviderImpl();
  55     List<Locale> availloc = Arrays.asList(NumberFormat.getAvailableLocales());
  56     List<Locale> providerloc = Arrays.asList(nfp.getAvailableLocales());
  57     List<Locale> jreloc = Arrays.asList(LocaleProviderAdapter.forJRE().getAvailableLocales());
  58     List<Locale> jreimplloc = Arrays.asList(LocaleProviderAdapter.forJRE().getNumberFormatProvider().getAvailableLocales());
  59 
  60     public static void main(String[] s) {
  61         new NumberFormatProviderTest();
  62     }
  63 
  64     NumberFormatProviderTest() {
  65         availableLocalesTest();
  66         objectValidityTest();
  67         messageFormatTest();
  68     }
  69 
  70     void availableLocalesTest() {
  71         Set<Locale> localesFromAPI = new HashSet<>(availloc);
  72         Set<Locale> localesExpected = new HashSet<>(jreloc);
  73         localesExpected.addAll(providerloc);
  74         if (localesFromAPI.equals(localesExpected)) {


< prev index next >