< prev index next >

test/jdk/java/util/PluggableLocale/BreakIteratorProviderTest.java

Print this page


   1 /*
   2  * Copyright (c) 2007, 2016, 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 
  31 public class BreakIteratorProviderTest extends ProviderTest {
  32 
  33     com.foo.BreakIteratorProviderImpl bip = new com.foo.BreakIteratorProviderImpl();
  34     List<Locale> availloc = Arrays.asList(BreakIterator.getAvailableLocales());
  35     List<Locale> providerloc = Arrays.asList(bip.getAvailableLocales());
  36     List<Locale> jreloc = Arrays.asList(LocaleProviderAdapter.forJRE().getAvailableLocales());
  37     List<Locale> jreimplloc = Arrays.asList(LocaleProviderAdapter.forJRE().getBreakIteratorProvider().getAvailableLocales());
  38 
  39     private static final int CHARACTER_INDEX = 0;
  40     private static final int WORD_INDEX = 1;
  41     private static final int LINE_INDEX = 2;
  42     private static final int SENTENCE_INDEX = 3;
  43 
  44     public static void main(String[] s) {
  45         new BreakIteratorProviderTest();
  46     }
  47 
  48     BreakIteratorProviderTest() {
  49         availableLocalesTest();
  50         objectValidityTest();
  51     }
  52 
  53     void availableLocalesTest() {
  54         Set<Locale> localesFromAPI = new HashSet<>(availloc);
  55         Set<Locale> localesExpected = new HashSet<>(jreloc);
  56         localesExpected.addAll(providerloc);
  57         if (localesFromAPI.equals(localesExpected)) {
  58             System.out.println("availableLocalesTest passed.");
  59         } else {
  60             throw new RuntimeException("availableLocalesTest failed");
  61         }
  62     }
  63 


   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 8062588 8165804 8210406
  27  * @summary BreakIteratorProvider tests
  28  * @library providersrc/foobarutils
  29  *          providersrc/fooprovider
  30  * @modules java.base/sun.util.locale.provider
  31  *          java.base/sun.util.resources
  32  * @build com.foobar.Utils
  33  *        com.foo.*
  34  * @run main/othervm -Djava.locale.providers=JRE,SPI BreakIteratorProviderTest
  35  */
  36 
  37 import java.text.BreakIterator;
  38 import java.util.Arrays;
  39 import java.util.HashSet;
  40 import java.util.List;
  41 import java.util.Locale;
  42 import java.util.ResourceBundle;
  43 import java.util.Set;
  44 
  45 import com.foo.BreakIteratorProviderImpl;
  46 
  47 import sun.util.locale.provider.LocaleProviderAdapter;
  48 import sun.util.locale.provider.ResourceBundleBasedAdapter;
  49 
  50 public class BreakIteratorProviderTest extends ProviderTest {
  51 
  52     BreakIteratorProviderImpl bip = new BreakIteratorProviderImpl();
  53     List<Locale> availloc = Arrays.asList(BreakIterator.getAvailableLocales());
  54     List<Locale> providerloc = Arrays.asList(bip.getAvailableLocales());
  55     List<Locale> jreloc = Arrays.asList(LocaleProviderAdapter.forJRE().getAvailableLocales());
  56     List<Locale> jreimplloc = Arrays.asList(LocaleProviderAdapter.forJRE().getBreakIteratorProvider().getAvailableLocales());
  57 





  58     public static void main(String[] s) {
  59         new BreakIteratorProviderTest();
  60     }
  61 
  62     BreakIteratorProviderTest() {
  63         availableLocalesTest();
  64         objectValidityTest();
  65     }
  66 
  67     void availableLocalesTest() {
  68         Set<Locale> localesFromAPI = new HashSet<>(availloc);
  69         Set<Locale> localesExpected = new HashSet<>(jreloc);
  70         localesExpected.addAll(providerloc);
  71         if (localesFromAPI.equals(localesExpected)) {
  72             System.out.println("availableLocalesTest passed.");
  73         } else {
  74             throw new RuntimeException("availableLocalesTest failed");
  75         }
  76     }
  77 


< prev index next >