/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
package ifc.i18n;
import java.text.Collator;
import lib.MultiMethodTest;
import com.sun.star.i18n.CollatorOptions;
import com.sun.star.i18n.XCollator;
import com.sun.star.lang.Locale;
/**
* Testing com.sun.star.i18n.XCollator
* interface methods :
*
compareSubstring()
compareString()
loadDefaultCollator()
loadCollatorAlgorithm()
listCollatorAlgorithms()
loadCollatorAlgorithmWithEndUserOption()
listCollatorOptions()
* Test is NOT multithread compliant.
* @see com.sun.star.i18n.XCollator */ public class _XCollator extends MultiMethodTest { public XCollator oObj = null; private String[] alg = null ; Locale loc = new Locale("en", "EN", ""); /** * Just retrieves a list of algorithms.
* Has OK status if non-zero length array returned. */ public void _listCollatorAlgorithms() { alg = oObj.listCollatorAlgorithms(loc) ; log.println("Collator algorithms :"); if (alg != null) { for (int i = 0; i < alg.length; i++) { log.println(" '" + alg[i] + "'") ; } tRes.tested("listCollatorAlgorithms()", alg.length > 0) ; } else { tRes.tested("listCollatorAlgorithms()", false) ; } } /** * Just gets a list of options for some collator.
* Has OK status if not null value returned.
* The following method tests are to be completed successfully before : *
listCollatorAlgorithms
: to have some
* algorithm name. * Has OK status if compareString() returned correct values. */ public void _loadDefaultCollator() { oObj.loadDefaultCollator(loc, 0); boolean res = oObj.compareString("A", "a") != 0; oObj.loadDefaultCollator(loc, CollatorOptions.CollatorOptions_IGNORE_CASE); res &= oObj.compareString("a", "A") == 0; tRes.tested("loadDefaultCollator()", res) ; } /** * Calls the method with no options and with options(IGNORE_CASE), * compares strings.
* Has OK status if compareString() returned correct values. * The following method tests are to be completed successfully before : *
listCollatorAlgorithms
: to have some
* algorithm name. * Has OK status if compareString() returned correct values. * The following method tests are to be completed successfully before : *
listCollatorAlgorithms
: to have some
* algorithm name. * Has OK status if comparing of different strings * returns not 0 value, then comparing in the opposite * order returns value with opposite sign, and comparing * of two equal strings returns 0. The such comparing is performed * for one character strings. */ public void _compareSubstring() { boolean result = true ; char[] chars = new char[2] ; Collator col = null ; log.println(" #### Testing English locale ####") ; oObj.loadDefaultCollator(loc, 0) ; col = Collator.getInstance(new java.util.Locale("en", "EN")) ; for (char ch = 0x0020; ch < 0x007F; ch ++) { chars[0] = ch ; chars[1] = (char) (ch + 1) ; result &= testCompareSubstring(chars, col) ; } log.println(" #### Testing Russian locale ####") ; oObj.loadDefaultCollator( new com.sun.star.lang.Locale("ru", "RU", ""), 0) ; col = Collator.getInstance(new java.util.Locale("ru", "RU")) ; for (char ch = 0x0410; ch < 0x0450; ch ++) { chars[0] = ch ; chars[1] = (char) (ch + 1) ; result &= testCompareSubstring(chars, col) ; } log.println(" #### Testing Japan locale ####") ; oObj.loadDefaultCollator( new com.sun.star.lang.Locale("ja", "JP", ""), 0) ; col = Collator.getInstance(new java.util.Locale("ja", "JP")) ; for (char ch = 0x4E00; ch < 0x4EFD; ch ++) { chars[0] = ch ; chars[1] = (char) (ch + 1) ; result &= testCompareSubstring(chars, col) ; } log.println(" #### Testing China locale ####") ; oObj.loadDefaultCollator(new Locale("zh", "CN", ""), 0) ; col = Collator.getInstance(new java.util.Locale("zh", "CN")) ; for (char ch = 0x4E00; ch < 0x4EFD; ch ++) { chars[0] = ch ; chars[1] = (char) (ch + 1) ; result &= testCompareSubstring(chars, col) ; } log.println(" #### Testing Korean locale ####") ; oObj.loadDefaultCollator(new Locale("ko", "KR", ""), 0) ; col = Collator.getInstance(new java.util.Locale("ko", "KR")) ; for (char ch = 0x4E00; ch < 0x4EFD; ch ++) { chars[0] = ch ; chars[1] = (char) (ch + 1) ; result &= testCompareSubstring(chars, col) ; } tRes.tested("compareSubstring()", result) ; } /** * Test is performed for locales : en, ru, ja, zh, ko. * Default collator is loaded for each locale. Then collation * is performed for different combination of symbols from range of * this locale.
* Has OK status if comparing of different strings * returns not 0 value, then comparing in the opposite * order returns value with opposite sign, and comparing * of two equal strings returns 0. The such comparing is performed * for one character strings. */ public void _compareString() { boolean result = true ; char[] chars = new char[2] ; Collator col = null ; log.println(" #### Testing English locale ####") ; oObj.loadDefaultCollator( new com.sun.star.lang.Locale("en", "EN", ""), 0) ; col = Collator.getInstance(new java.util.Locale("en", "EN")) ; for (char ch = 0x0020; ch < 0x007F; ch ++) { chars[0] = ch ; chars[1] = (char) (ch + 1) ; result &= testCompareString(chars, col) ; } log.println(" #### Testing Russian locale ####") ; oObj.loadDefaultCollator( new com.sun.star.lang.Locale("ru", "RU", ""), 0) ; col = Collator.getInstance(new java.util.Locale("ru", "RU")) ; for (char ch = 0x0410; ch < 0x0450; ch ++) { chars[0] = ch ; chars[1] = (char) (ch + 1) ; result &= testCompareString(chars, col) ; } log.println(" #### Testing Japan locale ####") ; oObj.loadDefaultCollator( new com.sun.star.lang.Locale("ja", "JP", ""), 0) ; col = Collator.getInstance(new java.util.Locale("ja", "JP")) ; for (char ch = 0x4E00; ch < 0x4EFD; ch ++) { chars[0] = ch ; chars[1] = (char) (ch + 1) ; result &= testCompareString(chars, col) ; } log.println(" #### Testing China locale ####") ; oObj.loadDefaultCollator(new Locale("zh", "CN", ""), 0) ; col = Collator.getInstance(new java.util.Locale("zh", "CN")) ; for (char ch = 0x4E00; ch < 0x4EFD; ch ++) { chars[0] = ch ; chars[1] = (char) (ch + 1) ; result &= testCompareString(chars, col) ; } log.println(" #### Testing Korean locale ####") ; oObj.loadDefaultCollator(new Locale("ko", "KR", ""), 0) ; col = Collator.getInstance(new java.util.Locale("ko", "KR")) ; for (char ch = 0x4E00; ch < 0x4EFD; ch ++) { chars[0] = ch ; chars[1] = (char) (ch + 1) ; result &= testCompareString(chars, col) ; } tRes.tested("compareString()", result) ; } /** * Testing compareString() method. At first method is testing single chars * comparing, then strings comparing. * @param locChar sequence of at list two characters of a given locale * to be used in comparing. * @param col Collator for a given locale * @return true if: *