/* * * Copyright (C) 2007-2015 Licensed to the Comunes Association (CA) under * one or more contributor license agreements (see COPYRIGHT for details). * The CA licenses this file to you under the GNU Affero General Public * License version 3, (the "License"); you may not use this file except in * compliance with the License. This file is part of kune. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ package cc.kune.core.server.manager; import static org.junit.Assert.*; import java.util.HashMap; import org.apache.commons.lang.StringEscapeUtils; import org.junit.After; import org.junit.Before; import org.junit.Test; import cc.kune.common.shared.i18n.I18nTranslationService; import cc.kune.core.server.PersistenceTest; import cc.kune.domain.I18nCountry; import cc.kune.domain.I18nLanguage; import cc.kune.domain.I18nTranslation; import com.google.inject.Inject; // TODO: Auto-generated Javadoc /** * The Class I18nManagerDefaultTest. * * @author vjrj@ourproject.org (Vicente J. Ruiz Jurado) */ public class I18nManagerDefaultTest extends PersistenceTest { /** The country manager. */ @Inject I18nCountryManager countryManager; /** The language manager. */ @Inject I18nLanguageManager languageManager; /** The translation manager. */ @Inject I18nTranslationManager translationManager; /** The translation service. */ @Inject I18nTranslationService translationService; /** * By default use english. */ @Test public void byDefaultUseEnglish() { final HashMap<String, String> map = translationManager.getLexicon("en"); final HashMap<String, String> map2 = translationManager.getLexicon("af"); assertEquals(map.size(), map2.size()); } /** * Close. */ @After public void close() { if (getTransaction().isActive()) { getTransaction().rollback(); } } /** * Gets the lexicon list. * * @return the lexicon list */ @Test public void getLexiconList() { assertTrue(translationManager.getTranslatedLexicon("en", null).size() > 0); assertTrue(translationManager.getUntranslatedLexicon("en", null).size() == 0); assertTrue(translationManager.getTranslatedLexicon("es", null).size() > 0); assertTrue(translationManager.getTranslatedLexicon("af", null).size() > 0); assertTrue(translationManager.getUntranslatedLexicon("af", null).size() > 0); // TODO: // assertTrue(translationManager.getUntranslatedLexicon("es", "af").size() > // 0); // assertTrue(translationManager.getTranslatedLexicon("es", "af").size() == // 0); } /** * Gets the non existent translation in any lang returns key. * * @return the non existent translation in any lang returns key */ @Test public void getNonExistentTranslationInAnyLangReturnsKey() { HashMap<String, String> map = translationManager.getLexicon("en"); HashMap<String, String> map2 = translationManager.getLexicon("af"); final int initialSize = map.size(); final int initialSize2 = map2.size(); final String translation = translationManager.getTranslation("es", "Foo foo foo", "note for translators"); final String translation2 = translationManager.getTranslation("af", "Foo foo foo", "note for translators"); assertEquals(I18nTranslation.UNTRANSLATED_VALUE, translation); assertEquals(I18nTranslation.UNTRANSLATED_VALUE, translation2); map = translationManager.getLexicon("en"); map2 = translationManager.getLexicon("af"); final int newSize = map.size(); final int newSize2 = map2.size(); assertEquals(initialSize + 1, newSize); assertEquals(initialSize2 + 1, newSize2); } /** * Gets the non existent translation returns default language. * * @return the non existent translation returns default language */ @Test public void getNonExistentTranslationReturnsDefaultLanguage() { final String translation = translationManager.getTranslation("af", "January [month]", "note for translators"); assertEquals("January", translation); } /** * Gets the translation. * * @return the translation */ @Test public void getTranslation() { final String translation = translationManager.getTranslation("af", "Sunday [weekday]", "note for translators"); assertEquals("Sondag", translation); } /** * Gets the translation ut f8. * * @return the translation ut f8 */ @Test public void getTranslationUTF8() { final String translation = translationManager.getTranslation("el", "January [month]", "note for translators"); assertEquals("Ιανουάριος", translation); } /** * Gets the translation with int arg from service. * * @return the translation with int arg from service */ @Test public void getTranslationWithIntArgFromService() { final String translation = translationService.t("[%d] users", 20); assertEquals("20 users", translation); } /** * Gets the translation with string arg from service. * * @return the translation with string arg from service */ @Test public void getTranslationWithStringArgFromService() { final String translation = translationService.t("[%s] users", "Twenty"); assertEquals("Twenty users", translation); } /** * Gets the translation with string arg with nt from service. * * @return the translation with string arg with nt from service */ @Test public void getTranslationWithStringArgWithNtFromService() { final String translation = translationService.tWithNT("[%s] users", "foo foo", "Twenty"); assertEquals("Twenty users", translation); } /** * Insert data. */ @Before public void insertData() { openTransaction(); final I18nLanguage english = new I18nLanguage(Long.valueOf(1819), "English", "English", "en"); final I18nLanguage spanish = new I18nLanguage(Long.valueOf(5889), "Spanish", "Español", "es"); final I18nLanguage afrikaans = new I18nLanguage(Long.valueOf(114), "Afrikaans", "Afrikaans", "af"); final I18nLanguage greek = new I18nLanguage(Long.valueOf(1793), "Greek", "Ελληνικά", "el"); languageManager.persist(english); languageManager.persist(spanish); languageManager.persist(afrikaans); languageManager.persist(greek); translationManager.persist(new I18nTranslation("Sunday [weekday]", english, "Sunday", "note for translators")); translationManager.persist(new I18nTranslation("January [month]", english, "January", "note for translators")); translationManager.persist(new I18nTranslation("January [month]", spanish, "Enero", "note for translators")); translationManager.persist(new I18nTranslation("Sunday [weekday]", afrikaans, "Sondag", "note for translators")); translationManager.persist(new I18nTranslation("January [month]", greek, "Ιανουάριος", "note for translators")); translationManager.persist(new I18nTranslation(StringEscapeUtils.escapeHtml("[%s] users"), english, StringEscapeUtils.escapeHtml("[%s] users"), "note for translators")); translationManager.persist(new I18nTranslation(StringEscapeUtils.escapeHtml("[%d] users"), english, StringEscapeUtils.escapeHtml("[%d] users"), "note for translators")); final I18nCountry gb = new I18nCountry(Long.valueOf(75), "GB", "GBP", ".", "£%n", "", ".", "United Kingdom", "western", ","); countryManager.persist(gb); } /** * Test get lexicon. */ @Test public void testGetLexicon() { final HashMap<String, String> map = translationManager.getLexicon("af"); assertTrue(map.size() > 0); } }