1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 package ifc.i18n; 24 25 import com.sun.star.i18n.CollatorOptions; 26 import com.sun.star.i18n.XExtendedIndexEntrySupplier; 27 import com.sun.star.lang.Locale; 28 29 import java.util.HashMap; 30 31 import lib.MultiMethodTest; 32 33 34 public class _XExtendedIndexEntrySupplier extends MultiMethodTest { 35 public XExtendedIndexEntrySupplier oObj; 36 protected Locale[] locales = null; 37 protected HashMap algorithms = new HashMap(); 38 39 public void _compareIndexEntry() { 40 requiredMethod("getIndexKey()"); 41 Locale locale = new Locale("zh", "CN", ""); 42 String val1 = new String(new char[]{UnicodeStringPair.getUnicodeValue(0), UnicodeStringPair.getUnicodeValue(1)}); 43 String val2 = new String(new char[]{UnicodeStringPair.getUnicodeValue(1), UnicodeStringPair.getUnicodeValue(0)}); 44 short result1 = oObj.compareIndexEntry(val1, "", locale, val1, "", locale); 45 short result2 = oObj.compareIndexEntry(val1, "", locale, val2, "", locale); 46 short result3 = oObj.compareIndexEntry(val2, "", locale, val1, "", locale); 47 <<<<<<< HEAD:main/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java 48 49 tRes.tested("compareIndexEntry()", result1 == 0 && result2 + result3 == 0); 50 ======= 51 52 Assert.assertTrue("compareIndexEntry()", result1 == 0 && result2 + result3 == 0); 53 >>>>>>> 3309286857 (pre-commit auto remove trailing whitespace from java files (#382)):test/testuno/source/api/i18n/XExtendedIndexEntrySupplierTest.java 54 } 55 56 /* 57 * gets the list of all algorithms for each listed language 58 * is OK if everyone of the returned lists are filled 59 */ 60 public void _getAlgorithmList() { 61 requiredMethod("getLocaleList()"); 62 63 boolean result = true; 64 boolean locResult = false; 65 66 for (int i = 0; i < locales.length; i++) { 67 String[] algNames = oObj.getAlgorithmList(locales[i]); 68 algorithms.put(new Integer(i), algNames); 69 70 locResult = algNames != null && algNames.length > 0; 71 System.out.println("Locale " + i + ": " + locales[i].Country+","+locales[i].Language); 72 73 for (int j=0; j<algNames.length; j++) { 74 System.out.println("\tAlgorithm " + j + ": " + algNames[j]); 75 } 76 77 if (!locResult) { 78 <<<<<<< HEAD:main/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java 79 log.println("No Algorithm found for " + locales[i].Country + 80 ======= 81 System.out.println("No Algorithm found for " + locales[i].Country + 82 >>>>>>> 3309286857 (pre-commit auto remove trailing whitespace from java files (#382)):test/testuno/source/api/i18n/XExtendedIndexEntrySupplierTest.java 83 "," + locales[i].Language); 84 } 85 86 result &= locResult; 87 } 88 89 tRes.tested("getAlgorithmList()", result); 90 } 91 92 public void _getIndexKey() { 93 requiredMethod("loadAlgorithm()"); 94 char[] characters = new char[] { 19968 }; 95 String getIndexFor = new String(characters); 96 for (int i = 0; i < locales.length; i++) { 97 log.println("Language: " + locales[i].Language); 98 99 for (int j = 0; j < algorithms.size(); j++) { 100 String[] algs = (String[])algorithms.get(new Integer(j)); 101 for (int k=0;k<algs.length;k++) { 102 <<<<<<< HEAD:main/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java 103 log.println("\t Algorithm :" + 104 algs[k]); 105 oObj.loadAlgorithm(locales[i], algs[k], CollatorOptions.CollatorOptions_IGNORE_CASE); 106 log.println("\t\t Get: " + 107 ======= 108 System.out.println("\t Algorithm :" + 109 algs[k]); 110 oObj.loadAlgorithm(locales[i], algs[k], CollatorOptions.CollatorOptions_IGNORE_CASE); 111 System.out.println("\t\t Get: " + 112 >>>>>>> 3309286857 (pre-commit auto remove trailing whitespace from java files (#382)):test/testuno/source/api/i18n/XExtendedIndexEntrySupplierTest.java 113 oObj.getIndexKey(getIndexFor, "", locales[i])); 114 } 115 } 116 } 117 tRes.tested("getIndexKey()", true); 118 } 119 120 /* 121 * gets a list of all locales, is OK if this list isn't empty 122 */ 123 public void _getLocaleList() { 124 locales = oObj.getLocaleList(); 125 tRes.tested("getLocaleList()", locales.length > 0); 126 } 127 128 /* 129 * gets one phonetic candidate for the chinese local 130 * is ok if 'yi' is returned as expected. 131 */ 132 public void _getPhoneticCandidate() { 133 requiredMethod("getLocaleList()"); 134 135 boolean res = true; 136 137 Locale loc = new Locale("zh", "CN", ""); 138 139 for (int i = 0;i<UnicodeStringPair.getValCount();i++) { 140 141 char[] c = new char[]{UnicodeStringPair.getUnicodeValue(i)}; 142 143 String getting = oObj.getPhoneticCandidate(new String(c), loc); 144 145 boolean locResult = getting.equals(UnicodeStringPair.getExpectedPhoneticString(i)); 146 147 if (!locResult) { 148 log.println("Char: "+ c[0] + " (" + (int)c[0] + ")"); 149 log.println("Expected " + UnicodeStringPair.getExpectedPhoneticString(i)); 150 log.println("Getting " + getting); 151 } 152 153 res &= locResult; 154 } 155 tRes.tested("getPhoneticCandidate()", res); 156 } 157 158 /* 159 * loads all algorithms available in all language. 160 * Is OK if no exception occurs and the method returns 161 * true for each valid algorithm and false otherwise 162 */ 163 public void _loadAlgorithm() { 164 requiredMethod("getAlgorithmList()"); 165 166 boolean res = true; 167 168 for (int i = 0; i < algorithms.size(); i++) { 169 String[] names = (String[]) algorithms.get(new Integer(i)); 170 <<<<<<< HEAD:main/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java 171 log.println("loading algorithms for " + locales[i].Country + 172 ======= 173 System.out.println("loading algorithms for " + locales[i].Country + 174 >>>>>>> 3309286857 (pre-commit auto remove trailing whitespace from java files (#382)):test/testuno/source/api/i18n/XExtendedIndexEntrySupplierTest.java 175 "," + locales[i].Language); 176 177 for (int j = 0; j < names.length; j++) { 178 log.println("\t Loading " + names[j]); 179 180 boolean localres = oObj.loadAlgorithm(locales[i], names[j], 181 CollatorOptions.CollatorOptions_IGNORE_CASE); 182 183 if (!localres) { 184 log.println("\t ... didn't work - FAILED"); 185 } else { 186 log.println("\t ... worked - OK"); 187 } 188 189 res &= localres; 190 } 191 192 /* log.println("\tTrying to load 'dummy' algorithm"); 193 194 boolean localres = !oObj.loadAlgorithm(locales[i], "dummy", 195 CollatorOptions.CollatorOptions_IGNORE_WIDTH); 196 197 if (!localres) { 198 log.println("\t ... didn't work as expected - FAILED"); 199 } else { 200 log.println("\t ... worked - OK"); 201 } 202 203 res &= localres;*/ 204 } 205 206 tRes.tested("loadAlgorithm()", res); 207 } 208 209 /* 210 * checks the method usePhoneticEntry(). Only the languages ja, ko and zh 211 * should return true. Has OK state if exactly this is the case. 212 */ 213 public void _usePhoneticEntry() { 214 requiredMethod("getLocaleList()"); 215 216 boolean res = true; 217 218 for (int i = 0; i < locales.length; i++) { 219 boolean expected = false; 220 221 if (locales[i].Language.equals("ja") || 222 locales[i].Language.equals("ko") || 223 locales[i].Language.equals("zh")) { 224 expected = true; 225 } 226 227 boolean locResult = oObj.usePhoneticEntry(locales[i]) == expected; 228 229 if (!locResult) { 230 log.println("Failure for language " + locales[i].Language); 231 log.println("Expected " + expected); 232 log.println("Getting " + oObj.usePhoneticEntry(locales[i])); 233 } 234 235 res &= locResult; 236 } 237 238 tRes.tested("usePhoneticEntry()", res); 239 } 240 241 /** 242 * Helper class to handle the phonetic equivalence of unicode characters 243 * This class delivers an amount of unicode characters and the equivalent phonetics 244 * for the "getPhoneticCandidate" test. Equivalents are only usable for zh,CN locale. 245 */ 246 public static class UnicodeStringPair { 247 final static int valCount = 78; 248 static String[] sStringEquivalence = null; 249 static char[] iUnicodeEquivalence = null; 250 251 static { 252 sStringEquivalence = new String[valCount]; 253 iUnicodeEquivalence = new char[valCount]; 254 fillValues(); 255 } 256 257 public static int getValCount() { 258 return valCount; 259 } 260 261 public static String getExpectedPhoneticString(int index) { 262 if (index >= valCount) return null; 263 return sStringEquivalence[index]; 264 } 265 266 public static char getUnicodeValue(int index) { 267 if (index > valCount) return 0; 268 return iUnicodeEquivalence[index]; 269 } 270 271 private static void fillValues() { 272 iUnicodeEquivalence[0] = 20049; sStringEquivalence[0] = "zhong"; 273 iUnicodeEquivalence[1] = 19968; sStringEquivalence[1] = "yi"; 274 iUnicodeEquivalence[2] = 19969; sStringEquivalence[2] = "ding"; 275 iUnicodeEquivalence[3] = 19970; sStringEquivalence[3] = "kao"; 276 iUnicodeEquivalence[4] = 19971; sStringEquivalence[4] = "qi"; 277 iUnicodeEquivalence[5] = 19972; sStringEquivalence[5] = "shang"; 278 iUnicodeEquivalence[6] = 19973; sStringEquivalence[6] = "xia"; 279 iUnicodeEquivalence[7] = 19975; sStringEquivalence[7] = "wan"; 280 iUnicodeEquivalence[8] = 19976; sStringEquivalence[8] = "zhang"; 281 iUnicodeEquivalence[9] = 19977; sStringEquivalence[9] = "san"; 282 iUnicodeEquivalence[10] = 19978; sStringEquivalence[10] = "shang"; 283 iUnicodeEquivalence[11] = 19979; sStringEquivalence[11] = "xia"; 284 iUnicodeEquivalence[12] = 19980; sStringEquivalence[12] = "ji"; 285 iUnicodeEquivalence[13] = 19981; sStringEquivalence[13] = "bu"; 286 iUnicodeEquivalence[14] = 19982; sStringEquivalence[14] = "yu"; 287 iUnicodeEquivalence[15] = 19983; sStringEquivalence[15] = "mian"; 288 iUnicodeEquivalence[16] = 19984; sStringEquivalence[16] = "gai"; 289 iUnicodeEquivalence[17] = 19985; sStringEquivalence[17] = "chou"; 290 iUnicodeEquivalence[18] = 19986; sStringEquivalence[18] = "chou"; 291 iUnicodeEquivalence[19] = 19987; sStringEquivalence[19] = "zhuan"; 292 iUnicodeEquivalence[20] = 19988; sStringEquivalence[20] = "qie"; 293 iUnicodeEquivalence[21] = 19989; sStringEquivalence[21] = "pi"; 294 iUnicodeEquivalence[22] = 19990; sStringEquivalence[22] = "shi"; 295 iUnicodeEquivalence[23] = 19991; sStringEquivalence[23] = "shi"; 296 iUnicodeEquivalence[24] = 19992; sStringEquivalence[24] = "qiu"; 297 iUnicodeEquivalence[25] = 19993; sStringEquivalence[25] = "bing"; 298 iUnicodeEquivalence[26] = 19994; sStringEquivalence[26] = "ye"; 299 iUnicodeEquivalence[27] = 19995; sStringEquivalence[27] = "cong"; 300 iUnicodeEquivalence[28] = 19996; sStringEquivalence[28] = "dong"; 301 iUnicodeEquivalence[29] = 19997; sStringEquivalence[29] = "si"; 302 iUnicodeEquivalence[30] = 19998; sStringEquivalence[30] = "cheng"; 303 iUnicodeEquivalence[31] = 19999; sStringEquivalence[31] = "diu"; 304 iUnicodeEquivalence[32] = 20000; sStringEquivalence[32] = "qiu"; 305 iUnicodeEquivalence[33] = 20001; sStringEquivalence[33] = "liang"; 306 iUnicodeEquivalence[34] = 20002; sStringEquivalence[34] = "diu"; 307 iUnicodeEquivalence[35] = 20003; sStringEquivalence[35] = "you"; 308 iUnicodeEquivalence[36] = 20004; sStringEquivalence[36] = "liang"; 309 iUnicodeEquivalence[37] = 20005; sStringEquivalence[37] = "yan"; 310 iUnicodeEquivalence[38] = 20006; sStringEquivalence[38] = "bing"; 311 iUnicodeEquivalence[39] = 20007; sStringEquivalence[39] = "sang"; 312 iUnicodeEquivalence[40] = 20008; sStringEquivalence[40] = "shu"; 313 iUnicodeEquivalence[41] = 20009; sStringEquivalence[41] = "jiu"; 314 iUnicodeEquivalence[42] = 20010; sStringEquivalence[42] = "ge"; 315 iUnicodeEquivalence[43] = 20011; sStringEquivalence[43] = "ya"; 316 iUnicodeEquivalence[44] = 20012; sStringEquivalence[44] = "qiang"; 317 iUnicodeEquivalence[45] = 20013; sStringEquivalence[45] = "zhong"; 318 iUnicodeEquivalence[46] = 20014; sStringEquivalence[46] = "ji"; 319 iUnicodeEquivalence[47] = 20015; sStringEquivalence[47] = "jie"; 320 iUnicodeEquivalence[48] = 20016; sStringEquivalence[48] = "feng"; 321 iUnicodeEquivalence[49] = 20017; sStringEquivalence[49] = "guan"; 322 iUnicodeEquivalence[50] = 20018; sStringEquivalence[50] = "chuan"; 323 iUnicodeEquivalence[51] = 20019; sStringEquivalence[51] = "chan"; 324 iUnicodeEquivalence[52] = 20020; sStringEquivalence[52] = "lin"; 325 iUnicodeEquivalence[53] = 20021; sStringEquivalence[53] = "zhuo"; 326 iUnicodeEquivalence[54] = 20022; sStringEquivalence[54] = "zhu"; 327 iUnicodeEquivalence[55] = 20024; sStringEquivalence[55] = "wan"; 328 iUnicodeEquivalence[56] = 20025; sStringEquivalence[56] = "dan"; 329 iUnicodeEquivalence[57] = 20026; sStringEquivalence[57] = "wei"; 330 iUnicodeEquivalence[58] = 20027; sStringEquivalence[58] = "zhu"; 331 iUnicodeEquivalence[59] = 20028; sStringEquivalence[59] = "jing"; 332 iUnicodeEquivalence[60] = 20029; sStringEquivalence[60] = "li"; 333 iUnicodeEquivalence[61] = 20030; sStringEquivalence[61] = "ju"; 334 iUnicodeEquivalence[62] = 20031; sStringEquivalence[62] = "pie"; 335 iUnicodeEquivalence[63] = 20032; sStringEquivalence[63] = "fu"; 336 iUnicodeEquivalence[64] = 20033; sStringEquivalence[64] = "yi"; 337 iUnicodeEquivalence[65] = 20034; sStringEquivalence[65] = "yi"; 338 iUnicodeEquivalence[66] = 20035; sStringEquivalence[66] = "nai"; 339 iUnicodeEquivalence[67] = 20037; sStringEquivalence[67] = "jiu"; 340 iUnicodeEquivalence[68] = 20038; sStringEquivalence[68] = "jiu"; 341 iUnicodeEquivalence[69] = 20039; sStringEquivalence[69] = "tuo"; 342 iUnicodeEquivalence[70] = 20040; sStringEquivalence[70] = "me"; 343 iUnicodeEquivalence[71] = 20041; sStringEquivalence[71] = "yi"; 344 iUnicodeEquivalence[72] = 20043; sStringEquivalence[72] = "zhi"; 345 iUnicodeEquivalence[73] = 20044; sStringEquivalence[73] = "wu"; 346 iUnicodeEquivalence[74] = 20045; sStringEquivalence[74] = "zha"; 347 iUnicodeEquivalence[75] = 20046; sStringEquivalence[75] = "hu"; 348 iUnicodeEquivalence[76] = 20047; sStringEquivalence[76] = "fa"; 349 iUnicodeEquivalence[77] = 20048; sStringEquivalence[77] = "le"; 350 } 351 } 352 } 353