1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
|
/*
* 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 lib.MultiMethodTest;
import com.sun.star.i18n.Calendar;
import com.sun.star.i18n.Currency;
import com.sun.star.i18n.ForbiddenCharacters;
import com.sun.star.i18n.FormatElement;
import com.sun.star.i18n.Implementation;
import com.sun.star.i18n.LanguageCountryInfo;
import com.sun.star.i18n.LocaleDataItem;
import com.sun.star.i18n.XLocaleData;
import com.sun.star.lang.Locale;
/**
* Testing <code>com.sun.star.i18n.XLocaleData</code>
* interface methods:
* <ul>
* <li><code> getLanguageCountryInfo() </code></li>
* <li><code> getLocaleItem() </code></li>
* <li><code> getAllCalendars() </code></li>
* <li><code> getAllCurrencies() </code></li>
* <li><code> getAllFormats() </code></li>
* <li><code> getCollatorImplementations() </code></li>
* <li><code> getSearchOptions() </code></li>
* <li><code> getCollationOptions() </code></li>
* <li><code> getTransliterations() </code></li>
* <li><code> getForbiddenCharacters() </code></li>
* <li><code> getReservedWord() </code></li>
* <li><code> getAllInstalledLocaleNames() </code></li>
* </ul><p>
* Test is <b> NOT </b> multithread compliant. <p>
* @see com.sun.star.i18n.XLocaleData
*/
public class _XLocaleData extends MultiMethodTest {
public XLocaleData oObj = null;
public String[] languages = new String[]{"de","en","es","fr","ja","ko","ko"};
public String[] countries = new String[]{"DE","US","ES","FR","JP","KR","KR"};
/**
* Test calls the method, then result is checked. <p>
* Has <b> OK </b> status if structure, returned by the method includes
* correct values of fields 'Language' and 'Country' for all given locales.
*/
public void _getLanguageCountryInfo() {
boolean res = true;
LanguageCountryInfo lci = null;
for (int i=0;i<7;i++) {
lci = oObj.getLanguageCountryInfo(getLocale(i));
/* For debug purposes
log.println("Using: language="+languages[i]+" ; country="+countries[i]);
log.println("Getting: ");
log.println("\t Language="+lci.Language);
log.println("\t LanguageDefaultName="+lci.LanguageDefaultName);
log.println("\t Country="+lci.Country);
log.println("\t CountryDefaultName="+lci.CountryDefaultName);
boolean lang = ( lci.Language.equals(languages[i]) );
if (!lang) log.println("getting false for language: "+lci.LanguageDefaultName);
lang = ( lci.Country.equals(countries[i]) );
if (!lang) log.println("getting false for country: "+lci.CountryDefaultName);
*/
res &= ( ( lci.Language.equals(languages[i]) ) && ( lci.Country.equals(countries[i]) ) );
}
tRes.tested("getLanguageCountryInfo()",res);
}
/**
* Test calls the method, then result is checked. <p>
* Has <b> OK </b> status if structure, returned by the method consists of
* non empty strings for all given locales.
*/
public void _getLocaleItem() {
boolean res = true;
LocaleDataItem ldi = null;
for (int i=0;i<7;i++) {
ldi = oObj.getLocaleItem(getLocale(i));
boolean locRes = true ;
locRes &= (! ldi.dateSeparator.equals(""));
locRes &= (! ldi.decimalSeparator.equals(""));
locRes &= (! ldi.doubleQuotationEnd.equals(""));
locRes &= (! ldi.doubleQuotationStart.equals(""));
locRes &= (! ldi.listSeparator.equals(""));
locRes &= (! ldi.LongDateDayOfWeekSeparator.equals(""));
locRes &= (! ldi.LongDateDaySeparator.equals(""));
locRes &= (! ldi.LongDateMonthSeparator.equals(""));
locRes &= (! ldi.LongDateYearSeparator.equals(""));
locRes &= (! ldi.measurementSystem.equals(""));
locRes &= (! ldi.quotationEnd.equals(""));
locRes &= (! ldi.quotationStart.equals(""));
locRes &= (! ldi.thousandSeparator.equals(""));
locRes &= (! ldi.time100SecSeparator.equals(""));
locRes &= (! ldi.timeAM.equals(""));
locRes &= (! ldi.timePM.equals(""));
locRes &= (! ldi.timeSeparator.equals(""));
locRes &= (! ldi.unoID.equals(""));
if (!locRes) {
/* for debugging purposes
log.println("FAILED for: language="+languages[i]+" ; country="+countries[i]);
log.println("Getting: ");
log.println("\t DateSeparator="+ldi.dateSeparator);
log.println("\t decimalSeparator="+ldi.decimalSeparator);
log.println("\t doubleQuotationEnd="+ldi.doubleQuotationEnd);
log.println("\t doubleQuotationStart="+ldi.doubleQuotationStart);
log.println("\t listSeparator="+ldi.listSeparator);
log.println("\t LongDateDayOfWeekSeparator="+ldi.LongDateDayOfWeekSeparator+"end");
log.println("\t LongDateDaySeparator="+ldi.LongDateDaySeparator+"end");
log.println("\t LongDateMonthSeparator="+ldi.LongDateMonthSeparator+"end");
log.println("\t LongDateYearSeparator="+ldi.LongDateYearSeparator+"end");
log.println("\t measurementSystem="+ldi.measurementSystem);
log.println("\t quotationEnd="+ldi.quotationEnd);
log.println("\t quotationStart="+ldi.quotationStart);
log.println("\t thousandSeparator="+ldi.thousandSeparator);
log.println("\t time100SecSeparator="+ldi.time100SecSeparator);
log.println("\t timeAM="+ldi.timeAM);
log.println("\t timePM="+ldi.timePM);
log.println("\t timeSeparator="+ldi.timeSeparator);
log.println("\t unoID="+ldi.unoID);
*/
}
}
tRes.tested("getLocaleItem()",res);
}
/**
* Test calls the method for several locales; result is checked
* after each call. <p>
* Has <b> OK </b> status if all elements of the returned sequence are
* correct for all given locales. (boolean method goodCalendar() with a
* calendar as an argument returns true)
*/
public void _getAllCalendars() {
boolean res = true;
boolean printit = false;
for (int i=0;i<7;i++) {
Calendar[] calendar = oObj.getAllCalendars(getLocale(i));
for (int j=0;j<calendar.length;j++) {
if (! goodCalendar(calendar[j]) ) {
printit = true;
}
res &= goodCalendar(calendar[j]);
}
if (printit) log.println("FAILED for: language="+languages[i]+" ; country="+countries[i]);
printit = false;
}
tRes.tested("getAllCalendars()", res);
}
/**
* Test calls the method for several locales; result is checked
* after each call. <p>
* Has <b> OK </b> status if all elements of the returned sequence are
* correct for all given locales. (boolean method goodCurrency() with a
* currency as an argument returns true)
*/
public void _getAllCurrencies() {
boolean res = true;
boolean printit = false;
for (int i=0;i<7;i++) {
Currency[] currency = oObj.getAllCurrencies(getLocale(i));
for (int j=0;j<currency.length;j++) {
if (! goodCurrency(currency[j]) ) {
printit=true;
}
res &= goodCurrency(currency[j]);
}
if (printit) log.println("FAILED for: language="+languages[i]+" ; country="+countries[i]);
printit =false;
}
tRes.tested("getAllCurrencies()",res);
}
/**
* Test calls the method for several locales; result is checked
* after each call. <p>
* Has <b> OK </b> status if all elements of the returned sequence are
* correct for all given locales. (boolean method goodFormat() with a
* format as an argument returns true)
*/
public void _getAllFormats() {
boolean res = true;
boolean printit = false;
for (int i=0;i<7;i++) {
FormatElement[] format = oObj.getAllFormats(getLocale(i));
for (int j=0;j<format.length;j++) {
if (! goodFormat(format[j]) ) {
printit = true;
}
res &= goodFormat(format[j]);
}
if (printit) log.println("FAILED for: language="+languages[i]+" ; country="+countries[i]);
printit =false;
}
tRes.tested("getAllFormats()",res);
}
/**
* Test calls the method for several locales; result is checked
* after each call. <p>
* Has <b> OK </b> status if all structs, returned by the method have non
* empty field 'UnoID' for all given locales.
*/
public void _getCollatorImplementations() {
boolean res = true;
boolean printit = false;
for (int i=0;i<7;i++) {
Implementation[] impl = oObj.getCollatorImplementations(getLocale(i));
for (int j=0;j<impl.length;j++) {
if (impl[j].unoID.equals("")) {
printit = true;
}
res &= (!impl[j].unoID.equals(""));
}
if (printit) log.println("FAILED for: language=" + languages[i]
+ " ; country=" + countries[i]);
printit = false;
}
tRes.tested("getCollatorImplementations()", res);
}
/**
* Test calls the method for several locales; result is checked
* after each call. <p>
* Has <b> OK </b> status if all strings, returned by the method are not
* empty for all given locales.
*/
public void _getSearchOptions() {
boolean res = true;
boolean printit = false;
for (int i=0;i<7;i++) {
String[] str = oObj.getSearchOptions(getLocale(i));
for (int j=0;j<str.length;j++) {
if (str[j].equals("")) {
printit = true;
}
res &= (!str[j].equals(""));
}
if (printit) log.println("FAILED for: language=" + languages[i]
+ " ; country=" + countries[i]);
printit = false;
}
tRes.tested("getSearchOptions()",res);
}
/**
* Test calls the method for several locales; result is checked
* after each call. <p>
* Has <b> OK </b> status if all strings, returned by the method are not
* empty for all given locales.
*/
public void _getCollationOptions() {
boolean res = true;
boolean printit = false;
for (int i=0;i<7;i++) {
String[] str = oObj.getCollationOptions(getLocale(i));
for (int j=0;j<str.length;j++) {
if (str[j].equals("")) {
printit = true;
}
res &= (!str[j].equals(""));
}
if (printit) log.println("FAILED for: language=" + languages[i]
+ " ; country=" + countries[i]);
printit = false;
}
tRes.tested("getCollationOptions()", res);
}
/**
* Test calls the method for several locales; result is checked
* after each call. <p>
* Has <b> OK </b> status if all strings, returned by the method are not
* empty for all given locales.
*/
public void _getTransliterations() {
boolean res = true;
boolean printit = false;
for (int i=0;i<7;i++) {
String[] str = oObj.getTransliterations(getLocale(i));
for (int j=0;j<str.length;j++) {
if (str[j].equals("")) {
printit = true;
}
res &= (!str[j].equals(""));
}
if (printit) log.println("FAILED for: language=" + languages[i]
+ " ; country=" + countries[i]);
printit = false;
}
tRes.tested("getTransliterations()", res);
}
/**
* Test calls the method for several locales; result is checked
* after each call. <p>
* Has <b> OK </b> status if the method returns structure with non-empty
* fields for all given locales.
*/
public void _getForbiddenCharacters() {
boolean res = true;
ForbiddenCharacters fc = null;
//the forbidden characters are only available for the asian languages
for (int i=4;i<7;i++) {
fc = oObj.getForbiddenCharacters(getLocale(i));
res &= !( fc.beginLine.equals("") || fc.endLine.equals("") );
if ( !res ) {
log.println("FAILED for: language="+languages[i]+" ; country="+countries[i]);
}
}
tRes.tested("getForbiddenCharacters()", res);
}
/**
* Test calls the method for several locales; result is checked
* after each call. <p>
* Has <b> OK </b> status if all strings, returned by the method are not
* empty for all given locales.
*/
public void _getReservedWord() {
boolean res = true;
boolean printit = false;
for (int i=0;i<7;i++) {
String[] str = oObj.getReservedWord(getLocale(i));
for (int j=0;j<str.length;j++) {
if (str[j].equals("")) {
printit = true;
}
res &= (!str[j].equals(""));
}
if (printit) log.println("FAILED for: language=" + languages[i]
+ " ; country=" + countries[i]);
printit = false;
}
tRes.tested("getReservedWord()", res);
}
/**
* Test calls the method. Then result is checked for all given locales.<p>
* Has <b> OK </b> status if locale sequence, returned by the method contains
* given locales.
*/
public void _getAllInstalledLocaleNames() {
boolean res = true;
Locale[] locs = oObj.getAllInstalledLocaleNames();
//check if the languages used here are part of this array
for (int i=0;i<7;i++) {
res &= contains(locs, getLocale(i));
}
tRes.tested("getAllInstalledLocaleNames()",res);
}
/**
* Method returns locale for a given language and country.
* @param k index of needed locale.
* @return Locale by the index from arrays defined above
*/
public Locale getLocale(int k) {
return new Locale(languages[k],countries[k],"");
}
/**
* Method checks given calendar for non empty fields.
* @param calendar Calendar to be checked
*/
public boolean goodCalendar(Calendar calendar) {
boolean good = true;
for (int i=0;i<calendar.Days.length;i++) {
good &= (! calendar.Days[i].AbbrevName.equals("") );
good &= (! calendar.Days[i].FullName.equals("") );
good &= (! calendar.Days[i].ID.equals("") );
}
for (int i=0;i<calendar.Months.length;i++) {
good &= (! calendar.Months[i].AbbrevName.equals("") );
good &= (! calendar.Months[i].FullName.equals("") );
good &= (! calendar.Months[i].ID.equals("") );
}
for (int i=0;i<calendar.Eras.length;i++) {
good &= (! calendar.Eras[i].AbbrevName.equals("") );
good &= (! calendar.Eras[i].FullName.equals("") );
good &= (! calendar.Eras[i].ID.equals("") );
}
good &= (! calendar.StartOfWeek.equals("") );
good &= (! calendar.Name.equals("") );
return good;
}
/**
* Method checks given currency for non empty fields.
* @param currency Currency to be checked
*/
public boolean goodCurrency(Currency currency) {
boolean good = true;
good &= (!currency.BankSymbol.equals(""));
good &= (!currency.Name.equals(""));
good &= (!currency.Symbol.equals(""));
return good;
}
/**
* Method checks given format for non empty fields.
* @param format Format to be checked
*/
public boolean goodFormat(FormatElement format) {
boolean good = true;
good &= (!format.formatCode.equals(""));
good &= (!format.formatKey.equals(""));
good &= (!format.formatType.equals(""));
good &= (!format.formatUsage.equals(""));
return good;
}
/**
* Method checks that locale sequence contains given locale.
* @param locs Locale sequence
* @param oneLoc given locale
*/
public boolean contains(Locale[] locs, Locale oneLoc) {
boolean cont = false;
for (int j=0;j<locs.length;j++) {
if ( (locs[j].Country.equals(oneLoc.Country)) &&
(locs[j].Language.equals(oneLoc.Language)) ) {
cont=true;
break;
}
}
if (!cont) log.println("Not contained: " + oneLoc.Language);
return cont;
}
} // end XLocaleData
|