/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ 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 com.sun.star.i18n.XLocaleData * interface methods: *

* Test is NOT multithread compilant.

* @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.

* Has OK 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.

* Has OK 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 puposes 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.

* Has OK 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; Calendar[] calendar = new Calendar[1]; for (int i=0;i<7;i++) { calendar = oObj.getAllCalendars(getLocale(i)); for (int j=0;j * Has OK 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; Currency[] currency = new Currency[1]; for (int i=0;i<7;i++) { currency = oObj.getAllCurrencies(getLocale(i)); for (int j=0;j * Has OK 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; FormatElement[] format = new FormatElement[1]; for (int i=0;i<7;i++) { format = oObj.getAllFormats(getLocale(i)); for (int j=0;j * Has OK 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; Implementation[] impl = new Implementation[1]; for (int i=0;i<7;i++) { impl = oObj.getCollatorImplementations(getLocale(i)); for (int j=0;j * Has OK status if all strings, returned by the method are not * empty for all given locales. */ public void _getSearchOptions() { boolean res = true; boolean printit = false; String[] str = new String[1]; for (int i=0;i<7;i++) { str = oObj.getSearchOptions(getLocale(i)); for (int j=0;j * Has OK status if all strings, returned by the method are not * empty for all given locales. */ public void _getCollationOptions() { boolean res = true; boolean printit = false; String[] str = new String[1]; for (int i=0;i<7;i++) { str = oObj.getCollationOptions(getLocale(i)); for (int j=0;j * Has OK status if all strings, returned by the method are not * empty for all given locales. */ public void _getTransliterations() { boolean res = true; boolean printit = false; String[] str = new String[1]; for (int i=0;i<7;i++) { str = oObj.getTransliterations(getLocale(i)); for (int j=0;j * Has OK 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.

* Has OK status if all strings, returned by the method are not * empty for all given locales. */ public void _getReservedWord() { boolean res = true; boolean printit = false; String[] str = new String[1]; for (int i=0;i<7;i++) { str = oObj.getReservedWord(getLocale(i)); for (int j=0;j * Has OK 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 localeIndex 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